@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
  --primary: #3b82f6;
  --primary-glow: rgba(59, 130, 246, 0.4);
  --primary-shadow: rgba(59, 130, 246, 0.15);
  --accent: #60a5fa;
  --accent-glow: rgba(96, 165, 250, 0.4);
  --background: #05070a;
  --surface: #0d1117;
  --surface-brighter: #161b22;
  --text: #f0f6fc;
  --text-muted: #8b949e;
  --danger: #f85149;
  --success: #3fb950;

  --glass: rgba(13, 17, 23, 0.6);
  --glass-border: rgba(240, 246, 252, 0.1);
  --radius: 20px;
  --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

@keyframes slideInRight {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

@keyframes slideOutRight {
  from { transform: translateX(0); }
  to { transform: translateX(100%); }
}

@keyframes shimmer {
  0% { opacity: 0.5; }
  50% { opacity: 1; }
  100% { opacity: 0.5; }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

@keyframes pulse-soft {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.5; }
}

.reveal-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

.reveal-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-in { animation: fadeIn 0.8s var(--ease) forwards; }
.float { animation: float 6s ease-in-out infinite; }
.shimmer { animation: shimmer 2s infinite ease-in-out; }

/* Mesh Gradient Background */
.mesh-container {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    background: var(--background);
    pointer-events: none;
}

.mesh-gradient {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: pulse-soft 8s infinite ease-in-out;
}

.mesh-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -200px;
}

.mesh-2 {
    width: 500px;
    height: 500px;
    background: var(--accent);
    bottom: -100px;
    left: -100px;
    animation-delay: -2s;
}

.mesh-3 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: 40%;
    left: 20%;
    opacity: 0.1;
    animation-delay: -4s;
}

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

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--background);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  position: relative;
}

h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

a {
  text-decoration: none;
  color: inherit;
}

/* UI Components */
.glass-card {
  background: var(--glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.btn {
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 0 20px var(--primary-glow);
}

.btn-primary:hover {
  background: #258cfb;
  box-shadow: 0 0 30px var(--primary-glow);
  transform: scale(1.02);
}

.btn-outline-neon {
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.1);
}

.btn-outline-neon:hover {
  background: var(--primary);
  color: white;
  box-shadow: 0 0 25px var(--primary-shadow);
  transform: translateY(-3px) scale(1.05);
}

.btn-outline-neon i {
  transition: transform 0.3s ease;
}

.btn-outline-neon:hover i {
  transform: translateX(5px);
}

.neon-text {
  background: linear-gradient(to right, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px var(--primary-glow));
}

/* Hide/Show Utilities */
.hide-mobile { display: block; }
.show-mobile { display: none; }

@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
  .show-mobile { display: block !important; }
  
  :root {
    --radius: 16px;
  }
}

.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* Custom Overlays (Cart/Menu) */
/* Navbar & Header */
#header {
    width: 100%;
    max-width: none;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem min(4rem, 5vw);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(5, 7, 10, 0.7);
    border-bottom: 1px solid var(--glass-border);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.logo-icon {
    background: var(--primary-glow);
    padding: 0.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px var(--primary-glow);
}

.logo-icon i, .logo-icon img {
    color: var(--primary);
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 1.2rem;
    margin: 0;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 1px;
}

.logo-text span {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
    padding-bottom: 4px;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
}

.nav-links a.active {
    color: white;
    font-weight: 700;
    border-color: var(--primary);
}

.nav-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-icon-link, .nav-cart-icon {
    color: white;
    display: flex;
    align-items: center;
    transition: var(--transition);
    opacity: 0.8;
    position: relative;
    cursor: pointer;
}

.nav-icon-link:hover, .nav-cart-icon:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.nav-icon-link i, .nav-cart-icon i {
    width: 24px;
    height: 24px;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary);
    color: black;
    font-size: 0.7rem;
    font-weight: 900;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px var(--primary-glow);
}

.menu-toggle {
    color: var(--primary);
    cursor: pointer;
}

.menu-toggle i {
    width: 28px;
    height: 28px;
}

/* Mobile Menu Content */
.mobile-nav-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.close-menu-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav-links a {
    font-size: 1.8rem;
    color: white;
    font-weight: 700;
    transition: var(--transition);
}

.mobile-nav-links a.active {
    color: var(--primary);
}

.mobile-nav-footer {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.mobile-nav-footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: none;
}

.overlay.active { display: block; }

.sidebar {
  position: fixed;
  right: 0; 
  top: 0; 
  height: 100vh;
  height: 100dvh;
  width: 100%; 
  max-width: 400px;
  background: var(--surface);
  z-index: 2000;
  display: flex; 
  flex-direction: column;
  border-left: 1px solid var(--glass-border);
  box-shadow: -10px 0 30px rgba(0,0,0,0.5);
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0.4s;
  overflow: hidden;
}

.sidebar.active { 
  transform: translateX(0); 
  visibility: visible;
  pointer-events: auto;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: 1.5rem;
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Carousel */
.hero-carousel {
  height: min(600px, 80vh);
  position: relative;
  overflow: hidden;
  background: #000;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.slide.active { opacity: 1; }

.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 min(4rem, 5vw);
  max-width: 800px;
}

/* Modal Base Styles */
.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: var(--transition);
  padding: 1.5rem;
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.modal .overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 3001;
  display: block;
  opacity: 0;
  transition: var(--transition);
}

.modal.active .overlay {
  opacity: 1;
}

.modal-content {
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 2.5rem;
  width: 90%;
  max-width: 500px;
  position: relative;
  z-index: 3002;
  transform: translateY(20px);
  transition: var(--transition);
}

.modal.active .modal-content {
  transform: translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    opacity: 0.5;
    transition: var(--transition);
    z-index: 1002;
}

.modal-close-btn:hover {
    opacity: 1;
    color: white;
    transform: rotate(90deg);
}

/* Product Showroom Modal (Two-Column) */
.showroom-content {
    display: flex;
    flex-direction: row;
    max-width: 1100px !important;
    padding: 0 !important;
    overflow: hidden;
    background: #0b0d11;
    border: 1px solid var(--glass-border);
    box-shadow: 0 40px 100px rgba(0,0,0,0.8);
}

.showroom-left {
    flex: 1.2;
    background: #05070a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    border-right: 1px solid var(--glass-border);
    position: relative;
}

.showroom-right {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    max-height: 85vh;
}

.modal-img-container {
    width: 100%;
    height: clamp(300px, 45vh, 600px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 1rem;
}

.gallery-container {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    overflow-x: auto;
    width: 100%;
    padding-bottom: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
}

.gallery-container::-webkit-scrollbar {
    height: 4px;
}

.gallery-container::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 2px;
}

.gallery-thumb {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    border: 2px solid transparent;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
    background: rgba(255,255,255,0.05);
}

.gallery-thumb.active {
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
    transform: scale(1.05);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.status-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin: 1rem 0;
}

.status-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.status-label {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-value {
    gap: 0.4rem;
    color: var(--success);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
}

@media (max-width: 850px) {
    .showroom-content {
        flex-direction: column;
        max-width: 95% !important;
        width: 100%;
        max-height: 90vh;
        overflow-y: auto;
    }
    .showroom-left {
        border-right: none;
        border-bottom: 1px solid var(--glass-border);
        padding: 1.5rem;
        min-height: auto;
    }
    .showroom-right {
        padding: 1.5rem;
        max-height: none;
        overflow-y: visible;
    }
    .modal-img-container {
        height: 250px;
    }
}

/* Category Cards */
.category-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.4), rgba(15, 23, 42, 0.6));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.category-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, var(--primary-shadow), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

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

/* Floating Action Buttons (FAB) */
.fab-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}

.fab {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    border: none;
    backdrop-filter: blur(10px);
}

.fab:hover {
    transform: scale(1.1) translateY(-5px);
}

.fab-whatsapp {
    background: rgba(37, 211, 102, 0.15);
    border: 1px solid rgba(37, 211, 102, 0.4);
    color: #25D366;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
}

.fab-location {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 25px var(--primary-glow);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Why Choose Us Cards */
.why-card {
    background: var(--surface);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.why-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-shadow);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

/* Process Steps */
.process-step {
    position: relative;
    padding-left: 4rem;
    margin-bottom: 3rem;
}

.process-step::before {
    content: attr(data-step);
    position: absolute;
    left: 0; top: 0;
    width: 48px; height: 48px;
    background: var(--accent);
    color: black;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    box-shadow: 0 0 20px var(--accent-glow);
}

/* Team Grid */
.team-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 450px;
}

.team-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

/* Testimonials */
.testimonial-card {
    background: var(--glass);
    padding: 2.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
    position: relative;
}

.testimonial-card::after {
    content: '"';
    position: absolute;
    top: 1rem; right: 2rem;
    font-size: 5rem;
    opacity: 0.1;
    font-family: serif;
}

.view-section {
    display: none;
    animation: fadeIn 0.6s ease-out;
}

.view-section.active {
    display: block;
}

/* Section Title Refinement */
.section-title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    margin: 0;
    line-height: 1;
    letter-spacing: -0.05em;
    font-weight: 800;
}

/* Toast Notification System */
#toast-container {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    pointer-events: none;
}

.toast {
    background: rgba(20, 24, 31, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 1.2rem 1.8rem;
    border-radius: 16px;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 300px;
    max-width: 450px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    pointer-events: auto;
    animation: toastIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    position: relative;
    overflow: hidden;
}

.toast::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 6px;
    background: var(--primary);
}

.toast.success::before { background: var(--success); }
.toast.error::before { background: var(--danger); }

.toast.hide {
    animation: toastOut 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Section Layouts */
section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.section-subtitle {
    color: var(--accent);
    font-weight: 800;
    letter-spacing: 4px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* Hero Section Refined */
#hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top right, rgba(0, 129, 255, 0.05), transparent);
}

.hero-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: 4rem;
    align-items: center;
}

.hero-text-content {
    z-index: 2;
}

.hero-image-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, var(--primary-shadow), transparent);
    filter: blur(60px);
    z-index: 1;
}

.hero-mascot {
    width: 100%;
    max-width: 550px;
    position: relative;
    z-index: 2;
    border-radius: 30px;
    transform: scale(1.1);
}

/* Services & Why Us Grids */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: 2rem;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 2rem;
}

/* Process Section Refined */
#process {
    position: relative;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
    gap: 6rem;
    align-items: center;
}

.process-image-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 600px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.process-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.1) brightness(0.8);
}

.process-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--background), transparent);
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
    gap: 1.5rem;
}

@keyframes toastIn {
    from { transform: translateX(120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes toastOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(120%); opacity: 0; }
}

.toast-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.toast.success .toast-icon { background: rgba(16, 185, 129, 0.1); color: var(--success); }
.toast.error .toast-icon { background: rgba(255, 77, 77, 0.1); color: var(--danger); }

/* --- Mobile Specific Overrides --- */

@media (max-width: 768px) {
    section {
        padding: 5rem 1.5rem !important;
    }

    .section-title {
        font-size: 3rem !important;
        letter-spacing: -3px !important;
    }

    /* Hero Section Specifics */
    #hero {
        padding-top: 5rem !important;
        min-height: auto !important;
        text-align: center;
    }

    #hero .hero-container {
        grid-template-columns: 1fr !important;
        gap: 4rem !important;
    }

    #hero .hero-text-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #hero .animate-in:last-child {
        order: -1;
        margin-bottom: 2rem;
    }

    #hero img {
        max-width: 100% !important;
        transform: scale(1) !important;
    }

    /* Process Section */
    .process-grid {
        grid-template-columns: 1fr !important;
        gap: 4rem !important;
    }

    .process-image-container {
        height: 400px !important;
    }
}

/* Shop Page Specifics */
#shop {
    padding-top: 8rem;
    min-height: 80vh;
}

.shop-header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4rem;
    text-align: center;
}

.section-description {
    color: var(--text-muted);
    max-width: 600px;
    margin: 1rem 0 3rem;
    line-height: 1.6;
}

.shop-controls {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.search-wrapper {
    position: relative;
    width: 100%;
}

.search-wrapper i {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
    width: 24px;
    height: 24px;
}

.search-wrapper input {
    width: 100%;
    background: rgba(255,255,255,0.05);
    padding: 1.2rem 1.2rem 1.2rem 4rem;
    font-size: 1.1rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    color: white;
    outline: none;
    transition: var(--transition);
}

.search-wrapper input:focus {
    border-color: var(--primary);
    background: rgba(255,255,255,0.08);
}

.category-scroll-container {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0.5rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-scroll-container::-webkit-scrollbar {
    display: none;
}
/* Advanced Neon Preloader */
#loader-wrapper {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #05070a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#loader-wrapper.loaded {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.loader-container {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.05);
    stroke-width: 8;
}

.loader-circle-progress {
    fill: none;
    stroke: var(--primary);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 565.48; /* 2 * PI * 90 */
    stroke-dashoffset: 565.48;
    transition: stroke-dashoffset 0.1s linear;
    filter: drop-shadow(0 0 12px var(--primary-glow));
}

.loader-text {
    position: absolute;
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    font-family: 'Outfit', sans-serif;
    text-shadow: 0 0 20px var(--primary-glow);
}

.loader-text span {
    font-size: 1.2rem;
    color: var(--primary);
    margin-left: 2px;
}

.loader-status {
    margin-top: 2rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* Page Content Initial State */
.main-content-wrapper {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.4s;
    overflow-x: hidden;
}

.main-content-wrapper.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Footer Styles */
.footer {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-border);
  padding: 5rem 1.5rem 2rem;
  margin-top: 5rem;
  color: var(--text);
  position: relative;
  z-index: 10;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.footer-col h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-col p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-social {
  display: flex;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: var(--text-muted);
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 129, 255, 0.2);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.dev-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.dev-link:hover {
  color: #a855f7;
  text-shadow: 0 0 10px rgba(168, 85, 247, 0.4);
}

@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr !important;
    text-align: center;
    padding-top: 2rem;
  }
  
  .hero-text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    order: 2;
  }

  .hero-image-content {
      order: 1;
      margin-bottom: 3rem;
  }

  .section-title {
      font-size: clamp(2.5rem, 8vw, 4rem) !important;
  }

  .showroom-content {
    flex-direction: column !important;
    max-height: 95vh;
    overflow-y: auto;
  }

  .showroom-left {
    padding: 2rem;
    border-right: none;
    border-bottom: 1px solid var(--glass-border);
  }

  .modal-img-container {
      height: 300px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding-bottom: 8rem; 
  }

  .services-grid, .why-us-grid, .categories-grid {
      grid-template-columns: 1fr !important;
  }

  .process-grid {
      grid-template-columns: 1fr !important;
      gap: 4rem !important;
  }

  .process-image-container {
      height: 400px !important;
  }
}
