/* ==========================================================================
   RuniQ Base & Global Styles
   ========================================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  width: 100%; max-width: 100%; overflow-x: clip; scroll-behavior: smooth;
  font-family: 'Inter', sans-serif; background-color: #1A1A1A;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1.2px, transparent 1.2px);
  background-size: 30px 30px; scrollbar-width: thin; scrollbar-color: #E53935 #1A1A1A;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #1A1A1A; }
::-webkit-scrollbar-thumb { background: #E53935; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: #B71C1C; }

.heading-font { font-family: 'Montserrat', sans-serif; color: #FFFFFF; }

@font-face {
  font-family: 'CustomRuniqFont';
  /* Updated path to point outside the css directory */
  src: url('../font/Sakana.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.runiq-font {
  font-family: 'CustomRuniqFont', 'Montserrat', 'Inter', sans-serif !important;
}

.gradient-bg { background: linear-gradient(135deg, #E53935 0%, #B71C1C 100%); }
.gradient-nav { background: rgba(26, 26, 26, 0.85); backdrop-filter: blur(12px); transition: all 0.4s ease; border-bottom: 1px solid transparent; }
.gradient-nav.scrolled { background: rgba(26, 26, 26, 0.98); box-shadow: 0 10px 30px -10px rgba(229, 57, 53, 0.4); border-bottom: 1px solid rgba(229, 57, 53, 0.3); }
.gradient-footer { background: #111111; border-top: 2px solid rgba(229, 57, 53, 0.5); }
.gradient-btn { background: linear-gradient(45deg, #E53935, #B71C1C); transition: all 0.3s; }
.gradient-btn:hover { background: linear-gradient(45deg, #B71C1C, #E53935); transform: scale(1.02); box-shadow: 0 10px 25px -5px rgba(229, 57, 53, 0.4); }
.nav-active { background: rgba(255, 255, 255, 0.15) !important; color: #E53935 !important; backdrop-filter: blur(10px); }

/* ==========================================================================
   Mobile Menu
   ========================================================================== */
.mobile-menu-btn { display: none; }
.desktop-nav { display: flex; }

@media (max-width: 768px) {
  .desktop-nav { display: none !important; }
  .mobile-menu-btn { display: flex !important; align-items: center; }
  .mobile-menu {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5); backdrop-filter: blur(5px);
    z-index: 1001; display: none;
  }
  .mobile-menu.active { display: block; }
  .mobile-menu-content {
    position: fixed; top: 0; right: -100%; width: 80%; max-width: 400px;
    height: 100%; background: linear-gradient(145deg, #1A1A1A, #111111);
    z-index: 1002; transition: right 0.3s ease; padding: 2rem;
    box-shadow: -5px 0 30px rgba(0,0,0,0.3);
  }
  .mobile-menu.active .mobile-menu-content { right: 0; }
  .mobile-menu-content a { display: block; color: white; padding: 1rem; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 1.1rem; text-decoration: none; }
  .close-mobile-menu { position: absolute; top: 1rem; right: 1rem; color: white; font-size: 1.5rem; cursor: pointer; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,0.1); }
}

/* ==========================================================================
   Global UI Components
   ========================================================================== */
/* Quick Enquiry Slide Panel */
.slide-panel { position: fixed; top: 0; right: -100%; width: 100%; max-width: 480px; height: 100vh; background: #1F1F1F; z-index: 1000; box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2); transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1); overflow-y: auto; }
.slide-panel.open { right: 0; }
.panel-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); backdrop-filter: blur(3px); z-index: 999; opacity: 0; visibility: hidden; transition: all 0.3s; }
.panel-overlay.active { opacity: 1; visibility: visible; }
.auto-fill-field { background-color: #333; border-left: 4px solid #E53935; }

/* Back to Top Button */
.back-to-top { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background: linear-gradient(135deg, #E53935, #B71C1C); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; box-shadow: 0 10px 25px -5px rgba(229, 57, 53, 0.5); cursor: pointer; z-index: 99; opacity: 0; visibility: hidden; transform: translateY(20px); transition: all 0.3s ease; }
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-5px) scale(1.05); box-shadow: 0 15px 30px -5px rgba(229, 57, 53, 0.6); }
@media (max-width: 768px) { .back-to-top { bottom: 20px; right: 20px; width: 45px; height: 45px; font-size: 1rem; } }

/* Product Popup & Carousel */
.popup-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(5px); z-index: 1100; opacity: 0; visibility: hidden; transition: all 0.3s; display: flex; align-items: center; justify-content: center; padding: 1rem; pointer-events: none; }
.popup-overlay.active { opacity: 1; visibility: visible; pointer-events: auto; }
.popup-card { background: #1F1F1F; border-radius: 32px; max-width: 1100px; width: 100%; max-height: 90vh; overflow-y: auto; transform: scale(0.9); transition: transform 0.3s; scrollbar-width: thin; scrollbar-color: #E53935 #1F1F1F; }
.popup-card::-webkit-scrollbar { width: 8px; }
.popup-card::-webkit-scrollbar-track { background: #1F1F1F; border-radius: 0 32px 32px 0; }
.popup-card::-webkit-scrollbar-thumb { background: #E53935; border-radius: 4px; }
.popup-card::-webkit-scrollbar-thumb:hover { background: #B71C1C; }
.popup-overlay.active .popup-card { transform: scale(1); }
.carousel-container { position: relative; width: 100%; border-radius: 24px; overflow: hidden; }
.carousel-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 0.4s ease-in-out; pointer-events: none; }
.carousel-slide.active { opacity: 1; pointer-events: auto; z-index: 10; }
.zoom-container { overflow: hidden; cursor: zoom-in; }
.zoom-container img { transition: transform 0.3s ease; transform-origin: center center; }
@media (hover: hover) { .zoom-container:hover img { transform: scale(2.2); } }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(4px); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 20; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); transition: all 0.3s ease; }
.carousel-btn:hover { background: white; transform: translateY(-50%) scale(1.1); color: #E53935; box-shadow: 0 6px 16px rgba(229, 57, 53, 0.2); }
.call-dropdown { display: none; position: absolute; bottom: 100%; left: 0; background: rgb(36, 35, 35); border-radius: 16px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); padding: 0.5rem; min-width: 200px; z-index: 50; }
.call-btn:hover .call-dropdown { display: block; }

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse-glow { 0%, 100% { box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.4); } 50% { box-shadow: 0 0 20px 5px rgba(229, 57, 53, 0.2); } }
@keyframes float { 0%, 100% { transform: translateY(0px) rotate(0deg); } 50% { transform: translateY(-15px) rotate(1deg); } }
@keyframes float-slow { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-8px); } }
@keyframes rotate-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes shimmer { 0% { background-position: -100% 0; } 100% { background-position: 200% 0; } }
@keyframes popIn { 0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0; } 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

/* Custom Loading Spinner */
.custom-spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s linear infinite;
  display: inline-block;
  vertical-align: middle;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Product Fade Animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up {
  animation: fadeUp 0.6s ease forwards;
  opacity: 0;
}

.pulse-glow { animation: pulse-glow 2s ease-in-out infinite; }
.float { animation: float 6s ease-in-out infinite; }
.float-slow { animation: float-slow 8s ease-in-out infinite; }
.rotate-slow { animation: rotate-slow 20s linear infinite; }
.shimmer { background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); background-size: 200% 100%; animation: shimmer 3s infinite; }
.skeleton { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }

/* ==========================================================================
   Home Page Specific
   ========================================================================== */
.hero-carousel { position: relative; min-height: 85vh; display: flex; align-items: center; overflow: hidden; border-radius: 3rem; margin: 1.5rem; }
.hero-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1); background-size: cover; background-position: center; display: flex; align-items: center; }
.hero-slide.active { opacity: 1; z-index: 10; }
.hero-content { max-width: 700px; margin-left: 8%; padding: 2rem; color: white; animation: fadeInUp 0.8s ease-out; }
.hero-badge { display: inline-block; padding: 0.6rem 1.8rem; background: rgba(255,255,255,0.12); backdrop-filter: blur(10px); border-radius: 3rem; font-size: 0.9rem; font-weight: 600; margin-bottom: 2rem; border: 1px solid rgba(229, 57, 53, 0.4); }
.hero-title { font-size: 3.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; font-family: 'Montserrat', sans-serif; }
.hero-title span { background: linear-gradient(135deg, #E53935, #B71C1C); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-description { font-size: 1.2rem; line-height: 1.6; margin-bottom: 2rem; opacity: 0.9; max-width: 550px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.primary-btn { background: linear-gradient(45deg, #E53935, #B71C1C); padding: 1rem 2rem; border-radius: 3rem; font-weight: 700; transition: all 0.3s; display: inline-flex; align-items: center; gap: 0.5rem; box-shadow: 0 10px 20px -5px rgba(229, 57, 53, 0.4); }
.primary-btn:hover { transform: scale(1.05); box-shadow: 0 15px 30px -5px rgba(229, 57, 53, 0.6); }
.secondary-btn { background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); padding: 1rem 2rem; border-radius: 3rem; font-weight: 700; transition: all 0.3s; border: 1px solid rgba(255,255,255,0.3); display: inline-flex; align-items: center; gap: 0.5rem; }
.secondary-btn:hover { background: rgba(255,255,255,0.25); transform: scale(1.02); }
.hero-stats { display: flex; flex-wrap: wrap; gap: 2rem; margin-top: 1rem; }
.stat-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; background: rgba(255,255,255,0.1); backdrop-filter: blur(5px); padding: 0.5rem 1rem; border-radius: 2rem; }
.hero-carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; background: rgba(255,255,255,0.2); backdrop-filter: blur(8px); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.3rem; cursor: pointer; z-index: 30; transition: all 0.3s; border: 1px solid rgba(255,255,255,0.2); }
.hero-carousel-btn:hover { background: rgba(255,255,255,0.4); transform: translateY(-50%) scale(1.1); }
.hero-prev { left: 30px; z-index: 10; }
.hero-next { right: 30px; z-index: 10; }
.hero-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 12px; z-index: 10; }
.hero-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; transition: all 0.3s; }
.hero-dot.active { background: linear-gradient(45deg, #E53935, #B71C1C); width: 28px; border-radius: 10px; }

/* Collection Scroll */
.collection-scroll { overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; -webkit-overflow-scrolling: touch; padding-top: 1rem; padding-bottom: 2.5rem; cursor: grab; will-change: transform; transform: translateZ(0); }
.collection-scroll.active { cursor: pointer; }
.collection-scroll::-webkit-scrollbar { display: none; }
.collection-tile { flex: 0 0 auto; width: 150px; text-align: center; transition: all 0.3s; cursor: pointer; background: #1F1F1F; border-radius: 1.5rem; padding: 1rem 0.75rem; border: 1px solid rgba(229, 57, 53, 0.2); }
.collection-tile:hover { transform: translateY(-8px); box-shadow: 0 25px 30px -8px rgba(229, 57, 53, 0.2); border-color: #E53935; }
.collection-tile:hover .collection-image { transform: scale(1.08) translateY(-4px); box-shadow: 0 20px 30px -10px rgba(229, 57, 53, 0.3); background: linear-gradient(135deg, #B71C1C 0%, #E53935 100%); }
.collection-image { width: 120px; height: 120px; border-radius: 1rem; object-fit: contain; padding: 0.25rem; margin: 0 auto 1rem; background: linear-gradient(135deg, #E53935 0%, #B71C1C 100%); box-shadow: 0 15px 25px -8px rgba(0,0,0,0.3); transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1); border: 3px solid transparent; }
.collection-tile.active { border-color: #E53935; background: rgba(229, 57, 53, 0.05); }
.collection-tile.active .collection-image { border-color: #E53935; box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.3); background: linear-gradient(135deg, #B71C1C 0%, #E53935 100%); }
.collection-tile.active h3 { color: #E53935; }

/* Product Grid (Common base) */
.product-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.product-card { background: #1F1F1F; border-radius: 1.5rem; overflow: hidden; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1); border: 1px solid rgba(229, 57, 53, 0.2); cursor: pointer; transform-style: preserve-3d; }
.product-card:hover { transform: translateY(-8px) perspective(1000px) rotateX(4deg) rotateY(-4deg) scale(1.02); box-shadow: -10px 25px 30px -8px rgba(229, 57, 53, 0.25); border-color: #E53935; }
.product-image { width: 100%; aspect-ratio: 1/1; object-fit: cover; background: #2C2C2C; }
.product-info { padding: 1rem; }
.product-category { font-size: 0.7rem; text-transform: uppercase; color: #E53935; font-weight: 600; letter-spacing: 1px; }
.product-name { color: white; font-weight: 700; font-size: 1rem; margin: 0.25rem 0; }
.product-price { font-weight: 800; color: white; margin: 0.5rem 0; }
.product-actions { display: flex; gap: 0.5rem; margin-top: 0.75rem; }
.btn-enquiry { flex: 1; background: linear-gradient(45deg, #E53935, #B71C1C); color: white; padding: 0.5rem; border-radius: 0.75rem; font-size: 0.7rem; font-weight: 600; text-align: center; transition: all 0.3s; cursor: pointer; border: none; }
.btn-enquiry:hover { transform: scale(1.02); box-shadow: 0 5px 10px -3px rgba(229, 57, 53, 0.4); }
.btn-view { flex: 1; background: #1a1a2e; color: white; padding: 0.5rem; border-radius: 0.75rem; font-size: 0.7rem; font-weight: 600; text-align: center; transition: all 0.3s; cursor: pointer; border: none; }
.btn-view:hover { background: #2d2d44; transform: scale(1.02); }

@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
  .hero-title { font-size: 3rem; }
}
@media (max-width: 640px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .hero-carousel { height: 65vh; min-height: 450px; margin: 0; border-radius: 0 0 2rem 2rem; }
  .hero-slide { background-size: cover !important; background-position: center !important; align-items: center; padding-top: 0; }
  .hero-content { margin-left: 0; text-align: center; padding: 1rem 1.5rem; width: 100%; }
  .hero-badge { font-size: 0.75rem; padding: 0.4rem 1.2rem; margin-bottom: 1rem; }
  .hero-title { font-size: 2rem; margin-bottom: 0.5rem; }
  .hero-description { font-size: 0.9rem; margin-left: auto; margin-right: auto; margin-bottom: 1.5rem; line-height: 1.5; }
  .hero-cta { flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }
  .primary-btn, .secondary-btn { width: 100%; justify-content: center; padding: 0.8rem 1.5rem; font-size: 0.95rem; }
  .hero-carousel-btn { width: 36px; height: 36px; font-size: 1rem; }
  .hero-prev { left: 15px; } .hero-next { right: 15px; }
  .collection-tile { width: 130px; padding: 0.75rem; }
  .collection-image { width: 90px; height: 90px; padding: 0.25rem; border-radius: 0.75rem; }
}

/* ==========================================================================
   Product Page Specific
   ========================================================================== */
.product-hero { position: relative; min-height: 85vh; display: flex; align-items: center; overflow: hidden; border-radius: 3rem; margin: 1.5rem; }
.product-hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.product-hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(18, 18, 18, 0.137), rgba(0, 0, 0, 0.3)); z-index: 1; }
.product-hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto 0 8%; width: 100%; padding: 2rem; color: white; }

.category-sidebar { background: #1F1F1F; backdrop-filter: blur(10px); border-radius: 2rem; padding: 1.5rem; box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); border: 1px solid rgba(229, 57, 53, 0.2); height: fit-content; transition: all 0.4s ease; }
.category-sidebar.is-sticky { box-shadow: 0 0 30px -5px rgba(229, 57, 53, 0.3); border-color: rgba(229, 57, 53, 0.6); }
.category-item { padding: 1rem 1.5rem; margin: 0.25rem 0; border-radius: 1rem; cursor: pointer; transition: all 0.3s; font-weight: 500; display: flex; align-items: center; gap: 0.75rem; color: white; }
.category-item:hover { background: rgba(229, 57, 53, 0.1); transform: translateX(5px); }
.category-item.active { background: linear-gradient(45deg, #E53935, #B71C1C); color: white; box-shadow: 0 10px 15px -3px rgba(229, 57, 53, 0.3); }
.category-count { margin-left: auto; background: rgba(0, 0, 0, 0.1); padding: 0.25rem 0.75rem; border-radius: 2rem; font-size: 0.875rem; }
.category-item.active .category-count { background: rgba(255, 255, 255, 0.2); color: white; }

.mobile-category-dropdown { display: none; width: 100%; margin-bottom: 1.5rem; }
@media (max-width: 1023px) { .mobile-category-dropdown { display: block; } .category-sidebar { display: none; } }
.dropdown-btn { width: 100%; padding: 1rem 1.5rem; background: #1F1F1F; border-radius: 1.5rem; display: flex; align-items: center; justify-content: space-between; font-weight: 600; box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); border: 1px solid rgba(229, 57, 53, 0.3); cursor: pointer; color: white; }
.dropdown-menu { background: #1F1F1F; border-radius: 1.5rem; margin-top: 0.5rem; padding: 0.5rem; box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); border: 1px solid rgba(229, 57, 53, 0.2); display: none; }
.dropdown-menu.show { display: block; }
.dropdown-item { padding: 0.875rem 1.5rem; border-radius: 1rem; cursor: pointer; display: flex; align-items: center; gap: 0.75rem; transition: all 0.2s; color: white; }
.dropdown-item:hover { background: rgba(229, 57, 53, 0.1); }
.dropdown-item.active { background: linear-gradient(45deg, #E53935, #B71C1C); color: white; }

.floating-card { position: absolute; bottom: 10%; right: 5%; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); border-radius: 2rem; padding: 1.5rem; max-width: 300px; z-index: 3; animation: float 4s ease-in-out infinite; box-shadow: 0 25px 30px -10px rgba(0, 0, 0, 0.5); }

@media (max-width: 768px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .product-name { font-size: 0.85rem; }
  .product-price { font-size: 0.85rem; margin: 0.3rem 0; }
  .btn-enquiry, .btn-view { font-size: 0.6rem; padding: 0.4rem; }
  .product-info { padding: 0.75rem; }
  .product-hero { min-height: 50vh; margin: 0; border-radius: 0 0 2rem 2rem; align-items: center; padding-top: 0; }
  .product-hero-bg { object-fit: cover; object-position: center; }
  .product-hero-content { margin-left: 0; text-align: center; width: 100%; padding: 1rem 1.5rem; }
  .hero-title { font-size: 2rem; margin-bottom: 0; }
}
@media (max-width: 480px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   About Us Specific
   ========================================================================== */
.about-hero { position: relative; min-height: 85vh; display: flex; align-items: center; overflow: hidden; border-radius: 3rem; margin: 1.5rem; }
.about-hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.about-hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(45deg, rgba(29, 29, 29, 0.7), rgba(0, 0, 0, 0.4)); z-index: 1; }
.about-hero-content { position: relative; z-index: 2; max-width: 1000px; margin: 0 auto; padding: 2rem; color: white; text-align: center; }

.floating-elements { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 2; }
.floating-element { position: absolute; width: 80px; height: 80px; background: rgba(249,212,35,0.1); backdrop-filter: blur(5px); border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; border: 2px solid rgba(249,212,35,0.3); }
.element-1 { top: 20%; left: 10%; width: 120px; height: 120px; animation: float 12s ease-in-out infinite; }
.element-2 { bottom: 20%; right: 10%; width: 150px; height: 150px; background: rgba(255,78,80,0.1); border-color: rgba(255,78,80,0.3); animation: float 15s ease-in-out infinite reverse; }
.element-3 { top: 60%; left: 20%; width: 60px; height: 60px; background: rgba(255,255,255,0.1); animation: float 8s ease-in-out infinite; }

.content-card { background: #1F1F1F; backdrop-filter: blur(10px); border-radius: 3rem; padding: 3rem; box-shadow: 0 30px 40px -15px rgba(0,0,0,0.2); border: 1px solid rgba(229, 57, 53, 0.3); height: 100%; transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1); position: relative; overflow: hidden; }
.content-card::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(229, 57, 53, 0.1) 0%, transparent 70%); opacity: 0; transition: opacity 0.6s; pointer-events: none; }
.content-card:hover::before { opacity: 1; }
.content-card:hover { transform: translateY(-12px) scale(1.02); box-shadow: 0 35px 45px -15px rgba(229, 57, 53, 0.3); border-color: #E53935; }
.section-tag { display: inline-block; font-size: 0.85rem; font-weight: 700; letter-spacing: 3px; color: #E53935; text-transform: uppercase; margin-bottom: 1.5rem; position: relative; }
.section-tag::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 40px; height: 3px; background: linear-gradient(90deg, #E53935, #B71C1C); border-radius: 3px; }
.quote-icon { font-size: 4rem; color: #E53935; opacity: 0.2; margin-bottom: 1rem; transition: all 0.3s; }
.content-card:hover .quote-icon { transform: scale(1.1) rotate(5deg); opacity: 0.3; }
.stat-highlight { font-size: 1.2rem; font-weight: 700; color: #1a1a2e; margin-top: 2rem; padding-top: 1.5rem; border-top: 2px dashed rgba(229, 57, 53, 0.4); position: relative; }

.mv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.mv-item { background: #1F1F1F; border-radius: 2.5rem; padding: 2.5rem; box-shadow: 0 25px 30px -12px rgba(0,0,0,0.15); border-left: 6px solid #E53935; transition: all 0.4s; position: relative; overflow: hidden; }
.mv-item::after { content: ''; position: absolute; top: 0; right: 0; width: 100px; height: 100px; background: linear-gradient(135deg, transparent 50%, rgba(229, 57, 53, 0.1) 50%); transition: all 0.4s; }
.mv-item:hover { transform: translateY(-10px) scale(1.01); box-shadow: 0 35px 40px -15px rgba(229, 57, 53, 0.25); }
.mv-item:hover::after { width: 150px; height: 150px; }
.mv-icon { width: 60px; height: 60px; background: linear-gradient(135deg, #E53935, #B71C1C); border-radius: 1.5rem; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.8rem; margin-bottom: 1.5rem; transition: all 0.4s; }
.mv-item:hover .mv-icon { transform: scale(1.1) rotate(5deg); box-shadow: 0 10px 20px -5px rgba(229, 57, 53, 0.4); }

.values-list { list-style: none; padding: 0; color: white; }
.values-list li { padding: 1rem 0; display: flex; align-items: center; gap: 1rem; border-bottom: 1px solid rgba(229, 57, 53, 0.2); transition: all 0.3s; cursor: default; }
.values-list li:hover { transform: translateX(8px); background: rgba(229, 57, 53, 0.05); padding-left: 1rem; border-radius: 1rem; }
.values-list i { color: #E53935; font-size: 1.3rem; width: 2rem; transition: all 0.3s; }
.values-list li:hover i { transform: scale(1.2) rotate(5deg); color: #E53935; }

.tagline-box { background: #1F1F1F; border-radius: 4rem; padding: 2.5rem 3.5rem; text-align: center; border: 3px dashed #E53935; margin: 3rem 0; position: relative; overflow: hidden; transition: all 0.4s; box-shadow: 0 20px 30px -10px rgba(229, 57, 53, 0.2); }
.tagline-box::before { content: ''; position: absolute; top: -30%; left: -30%; width: 160%; height: 160%; background: radial-gradient(circle, rgba(229, 57, 53, 0.1) 0%, transparent 70%); animation: rotate-slow 25s linear infinite; }
.tagline-box:hover { transform: scale(1.02); border-color: #E53935; }
.tagline-box h3 { font-size: 2.2rem; font-weight: 800; color: #FFFFFF; position: relative; }
.tagline-box h3 span { background: linear-gradient(135deg, #E53935, #B71C1C); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: inline-block; animation: float 4s ease-in-out infinite; }

.image-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin: 2rem 0; }
.gallery-item { border-radius: 2rem; overflow: hidden; box-shadow: 0 20px 25px -8px rgba(0,0,0,0.2); transition: all 0.5s; position: relative; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: all 0.6s; }
.gallery-item:hover { transform: scale(1.03) rotate(1deg); box-shadow: 0 30px 35px -10px rgba(229, 57, 53, 0.3); }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); opacity: 0; transition: opacity 0.4s; display: flex; align-items: flex-end; padding: 1.5rem; color: white; font-weight: 600; }
.gallery-item:hover .gallery-overlay { opacity: 1; }

.floating-cta { position: fixed; bottom: 2rem; right: 2rem; z-index: 50; background: linear-gradient(135deg, #E53935, #B71C1C); width: 70px; height: 70px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.8rem; box-shadow: 0 10px 25px -5px rgba(229, 57, 53, 0.5); cursor: pointer; transition: all 0.3s; animation: pulse-glow 2s infinite; }
.floating-cta:hover { transform: scale(1.1) rotate(10deg); }

@media (max-width: 768px) {
  .about-hero { min-height: 60vh; margin: 0; border-radius: 0 0 2rem 2rem; align-items: center; padding-top: 0; }
  .about-hero-bg { object-fit: cover; object-position: center; }
  .about-hero-content { width: 100%; padding: 1rem 1.5rem; }
  .floating-element { display: none; }
  .mv-grid { grid-template-columns: 1fr; }
  .tagline-box { padding: 1.8rem; }
  .tagline-box h3 { font-size: 1.6rem; }
  .image-gallery { grid-template-columns: 1fr; }
  .floating-cta { width: 60px; height: 60px; font-size: 1.5rem; bottom: 1rem; right: 1rem; }
}

/* ==========================================================================
   Contact Specific
   ========================================================================== */
.contact-hero { position: relative; min-height: 85vh; display: flex; align-items: center; justify-content: center; text-align: center; border-radius: 3rem; overflow: hidden; margin: 1.5rem; }
.contact-hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.contact-hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(26,26,46,0.85), rgba(22, 33, 62, 0.187)); z-index: 1; }
.contact-hero-content { position: relative; z-index: 2; color: white; max-width: 800px; padding: 2rem; }

.contact-card { background: #1F1F1F; backdrop-filter: blur(10px); border-radius: 2rem; padding: 2rem; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); border: 1px solid rgba(229, 57, 53, 0.2); transition: all 0.3s; height: 100%; }
.contact-card:hover { transform: translateY(-8px); box-shadow: 0 25px 30px -8px rgba(229, 57, 53, 0.2); border-color: #E53935; }
.contact-icon { width: 4rem; height: 4rem; background: linear-gradient(135deg, #E53935, #B71C1C); border-radius: 1.5rem; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.8rem; margin-bottom: 1.5rem; }

.form-input { width: 100%; padding: 1rem 1.5rem; border-radius: 1rem; border: 1px solid #444; background: #2C2C2C; color: white; transition: all 0.3s; font-size: 1rem; }
.form-input:focus { outline: none; border-color: #E53935; box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.2); }
.form-label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: #BDBDBD; }
.submit-btn { background: linear-gradient(45deg, #E53935, #B71C1C); color: white; font-weight: bold; padding: 1rem 2rem; border-radius: 3rem; width: 100%; font-size: 1.1rem; transition: all 0.3s; border: none; cursor: pointer; }
.submit-btn:hover { transform: scale(1.02); box-shadow: 0 10px 25px -5px rgba(229, 57, 53, 0.4); }

.map-container { border-radius: 2rem; overflow: hidden; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); border: 1px solid rgba(229, 57, 53, 0.2); height: 400px; }
.map-container iframe { width: 100%; height: 100%; }

.hours-table { width: 100%; }
.hours-table tr td { padding: 0.75rem 0; border-bottom: 1px solid #333; }
.hours-table tr:last-child td { border-bottom: none; }
.hours-day { font-weight: 600; color: #FFFFFF; }
.hours-time { color: #BDBDBD; text-align: right; }

.faq-item { background: #1F1F1F; border-radius: 1rem; margin-bottom: 1rem; overflow: hidden; box-shadow: 0 5px 10px -5px rgba(0,0,0,0.1); }
.faq-question { padding: 1.25rem 1.5rem; background: #1F1F1F; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: all 0.3s; }
.faq-question:hover { background: #2C2C2C; }
.faq-question i { transition: transform 0.3s; }
.faq-question.active i { transform: rotate(180deg); }
.faq-answer { padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: all 0.3s ease; background: #1A1A1A; }
.faq-answer.show { padding: 1.5rem; max-height: 500px; }

.success-popup { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); background: #1F1F1F; padding: 2rem; border-radius: 2rem; box-shadow: 0 30px 40px -15px rgba(0,0,0,0.3); z-index: 2000; text-align: center; max-width: 400px; width: 90%; display: none; border: 4px solid #E53935; }
.success-popup.show { display: block; animation: popIn 0.3s ease; }
.success-popup i { font-size: 4rem; color: #10b981; margin-bottom: 1rem; }

@media (max-width: 768px) {
  .contact-hero { min-height: 50vh; margin: 0; border-radius: 0 0 2rem 2rem; align-items: center; padding-top: 0; }
  .contact-hero-bg { object-fit: cover; object-position: center; }
  .contact-hero-content { width: 100%; padding: 1rem 1.5rem; }
  .contact-hero-content p { font-size: 0.95rem; line-height: 1.5; }
}