/* =============================================
   SWET — Smart Weather Electronics Trading
   Premium Light Glassmorphism Theme
   ============================================= */

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

:root {
  --primary: #00ADEF;
  --primary-hover: #0090c5;
  --secondary: #ED008C;
  --accent: #FEF200;
  
  --bg-main: #050505;
  --bg-glass: rgba(20, 20, 20, 0.65);
  --bg-glass-hover: rgba(30, 30, 30, 0.85);
  
  --border-glass: rgba(255, 255, 255, 0.1);
  --border-dark: rgba(255, 255, 255, 0.05);
  
  --text-main: #ffffff;
  --text-sub: #cbd5e1;
  --text-muted: #64748b;
  
  --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
  --shadow-float: 0 20px 40px -10px rgba(0, 173, 239, 0.2);
  
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
  background: var(--bg-main); 
  color: var(--text-main); 
  font-family: 'Inter', sans-serif; 
  font-weight: 400; 
  overflow-x: hidden; 
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(0, 173, 239, 0.3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0, 173, 239, 0.6); }

/* ANIMATED ORBS & LIQUID BACKGROUND */
.bg-orbs {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(-45deg, #050505, #111111, #0a0a0a, #1a1a1a);
  background-size: 400% 400%;
  animation: liquidGradient 15s ease infinite;
}
@keyframes liquidGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.orb {
  position: absolute;
  /* border-radius: 50%; */
  filter: blur(80px);
  opacity: 0.5;
  animation: floatOrb 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}
.orb-1 {
  top: -10%; left: -10%;
  width: 50vw; height: 50vw;
  background: rgba(0, 173, 239, 0.4);
  animation-delay: 0s;
}
.orb-2 {
  bottom: -20%; right: -10%;
  width: 60vw; height: 60vw;
  background: rgba(237, 0, 140, 0.3);
  animation-delay: -5s;
}
.orb-3 {
  top: 40%; left: 60%;
  width: 40vw; height: 40vw;
  background: rgba(254, 242, 0, 0.2);
  animation-delay: -10s;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(10%, 10%) scale(1.1); }
  100% { transform: translate(-10%, 20%) scale(0.9); }
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 90px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%;
  background: transparent;
  transition: all 0.4s ease;
}
nav.scrolled {
  height: 70px;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  box-shadow: var(--shadow-glass);
}
.nav-logo {
  display: block;
}
.nav-logo img {
  height: 48px;
  object-fit: contain;
  /* border-radius: 50%; */ /* Make it rounded for smooth spinning */
  /* box-shadow: 0 4px 14px rgba(0,0,0,0.1); */
  /* transition: transform 0.1s linear; */ /* Responsive spinning handled via JS */
}
nav.scrolled .nav-logo img { height: 40px; }

.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-sub);
  position: relative;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
  color: #fff !important;
  padding: 12px 28px !important;
  border-radius: 100px;
  box-shadow: 0 4px 15px rgba(0, 173, 239, 0.3);
  transition: all 0.3s ease !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 173, 239, 0.4);
}

.hamburger {
  display: none; flex-direction: column; gap: 6px;
  cursor: pointer; background: none; border: none; padding: 6px;
}
.hamburger span {
  display: block; width: 28px; height: 2px;
  background: var(--text-main); border-radius: 2px; transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* HERO */
#hero {
  min-height: 100vh;
  min-height: 100dvh;
  padding: 0 6%;
  padding-top: 90px;
  padding-bottom: 60px;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
}
.hero-bg-video {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  min-width: 100%; min-height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 1.0;
  pointer-events: none;
  filter: brightness(1.1) contrast(1.05) saturate(1.1);
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(5,5,5,0.2) 0%, rgba(5,5,5,0.05) 50%, rgba(5,5,5,0.15) 100%);
  z-index: 1;
}
.hero-inner {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px;
  align-items: center; width: 100%;
  position: relative; z-index: 2; padding: 60px 0;
  margin: auto 0;
}
.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--primary);
  background: rgba(0, 173, 239, 0.1);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(48px, 6vw, 90px);
  font-weight: 800; line-height: 1.05; letter-spacing: -1px;
  color: var(--text-main);
  margin-bottom: 20px;
}
.hero-title .hl {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-title .ghost {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
  color: transparent;
}

.tagline-badge { display: none; } /* removed for cleaner tech look */

.hero-desc {
  font-size: 18px; line-height: 1.7; color: var(--text-sub);
  max-width: 520px; margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; margin-bottom: 40px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 16px 36px;
  font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 600; letter-spacing: 1px;
  border-radius: 100px;
  transition: all 0.3s ease; box-shadow: 0 10px 25px rgba(0, 173, 239, 0.3);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-float); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text-main);
  font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 600;
  padding: 16px 24px;
  border-radius: 100px;
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-glass);
  transition: all 0.3s ease;
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); box-shadow: var(--shadow-glass); }

.hero-stats { display: flex; gap: 16px; flex-wrap: wrap; }
.stat-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  padding: 20px 28px; border-radius: var(--radius-md);
  box-shadow: var(--shadow-glass); min-width: 120px;
  display: flex; flex-direction: column;
}
.stat-num { font-family: 'Outfit', sans-serif; font-size: 36px; font-weight: 800; color: var(--primary); line-height: 1; }
.stat-label { font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600; color: var(--text-sub); margin-top: 6px; text-transform: uppercase; letter-spacing: 1px; }

/* HERO VISUAL */
.hero-img-wrap { position: relative; border-radius: var(--radius-lg); padding: 20px; background: rgba(20,20,20,0.6); backdrop-filter: blur(20px); border: 1px solid var(--border-glass); box-shadow: var(--shadow-glass); transition: transform 0.4s ease; }
.hero-img-wrap img { width: 100%; height: 500px; object-fit: cover; border-radius: var(--radius-md); }
.hero-img-badge {
  position: absolute; bottom: 40px; left: -20px; z-index: 2;
  display: flex; align-items: center; gap: 16px;
  background: rgba(20, 20, 20, 0.9); backdrop-filter: blur(20px);
  padding: 16px 24px; border-radius: var(--radius-md);
  box-shadow: var(--shadow-float); border: 1px solid var(--border-glass);
}
.hib-icon { font-size: 28px; }
.hib-label { font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 600; color: var(--text-sub); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.hib-val { font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 700; color: var(--text-main); line-height: 1; }

.hero-scroll { display: none; } /* Removed to simplify UI */

/* TICKER */
.ticker-strip { background: linear-gradient(90deg, var(--primary), var(--secondary)); padding: 16px 0; overflow: hidden; }
.ticker-track { display: flex; width: max-content; animation: ticker 25s linear infinite; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 24px; padding: 0 40px;
  font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: #fff; white-space: nowrap;
}
.ticker-item::after { content: '•'; font-size: 10px; opacity: 0.5; }

/* SECTIONS SHARED */
section { padding: 120px 6%; position: relative; z-index: 2; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--secondary); margin-bottom: 16px;
}
.section-eyebrow::before { content: ''; display: block; width: 30px; height: 3px; background: var(--secondary); border-radius: 2px;}
.section-title {
  font-family: 'Outfit', sans-serif; font-size: clamp(36px, 4.5vw, 56px); font-weight: 800; letter-spacing: -1px;
  color: var(--text-main); line-height: 1.1; margin-bottom: 20px;
}
.section-title .muted { color: var(--text-sub); font-weight: 500; opacity: 0.8; }
.section-lead { font-size: 18px; color: var(--text-sub); line-height: 1.7; }

/* SERVICES */
#services { background: transparent; }
.services-top { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-bottom: 60px; flex-wrap: wrap; }
.services-top .section-lead { max-width: 500px; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.svc-card {
  background: var(--bg-glass); backdrop-filter: blur(20px); border: 1px solid var(--border-glass);
  padding: 40px 30px; border-radius: var(--radius-md);
  position: relative; overflow: hidden; transition: all 0.4s ease;
  box-shadow: var(--shadow-glass);
  isolation: isolate; /* Fix stacking bugs on mobile WebKit */
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(0,173,239,0.05), rgba(237,0,140,0.05));
  opacity: 0; transition: opacity 0.4s ease;
}
.svc-card:hover { background: var(--bg-glass-hover); box-shadow: var(--shadow-float); z-index: 10; }
.svc-card:hover::before { opacity: 1; }

/* SERVICE BACKGROUND IMAGES */
.svc-agreement, .svc-laser-printer, .svc-copier, .svc-networking, .svc-toners, .svc-cctv, .svc-computers, .svc-accessories, .svc-web-dev, .svc-web-design, .svc-hosting {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.15);
}

.svc-agreement::after, .svc-laser-printer::after, .svc-copier::after, .svc-networking::after, .svc-toners::after, .svc-cctv::after, .svc-computers::after, .svc-accessories::after, .svc-web-dev::after, .svc-web-design::after, .svc-hosting::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  filter: saturate(0.7) brightness(0.85);
  animation: serviceImagePan 20s ease-in-out infinite alternate;
}

@keyframes serviceImagePan {
  0% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.1) translate(-2%, 2%); }
  100% { transform: scale(1.15) translate(2%, -2%); }
}

.svc-video {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: -1;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  filter: saturate(0.7) brightness(0.85);
  animation: serviceImagePan 20s ease-in-out infinite alternate;
}

.svc-card:hover .svc-video {
  transform: scale(1.2) translate(0, 0) !important;
  filter: saturate(1.2) brightness(1);
}

.svc-agreement::after { background-image: linear-gradient(rgba(10, 10, 10, 0.5), rgba(10, 10, 10, 0.7)), url('assets/printer-agreement-bg.jpeg'); }
.svc-laser-printer::after { background-image: linear-gradient(rgba(10, 10, 10, 0.5), rgba(10, 10, 10, 0.7)), url('assets/laser-printer-service.jpeg'); }
.svc-copier::after { background-image: linear-gradient(rgba(10, 10, 10, 0.5), rgba(10, 10, 10, 0.7)), url('assets/copier-machine-rental.jpeg'); }
.svc-networking::after { background-image: linear-gradient(rgba(10, 10, 10, 0.5), rgba(10, 10, 10, 0.7)), url('assets/networking-services.jpeg'); }
.svc-toners::after { background-image: linear-gradient(rgba(10, 10, 10, 0.5), rgba(10, 10, 10, 0.7)), url('assets/laser-toners.jpeg'); z-index: -1; }
.svc-cctv::after { background-image: linear-gradient(rgba(10, 10, 10, 0.5), rgba(10, 10, 10, 0.7)), url('assets/cctv-maintenance.jpeg'); }
.svc-computers::after { background-image: linear-gradient(rgba(10, 10, 10, 0.5), rgba(10, 10, 10, 0.7)), url('assets/computers-and-laptop.jpeg'); }
.svc-accessories::after { background-image: linear-gradient(rgba(10, 10, 10, 0.5), rgba(10, 10, 10, 0.7)), url('assets/accessories-and-sales.jpeg'); }
.svc-web-dev::after { background-image: linear-gradient(rgba(10, 10, 10, 0.5), rgba(10, 10, 10, 0.7)), url('assets/web-dev.png'); }
.svc-web-design::after { background-image: linear-gradient(rgba(10, 10, 10, 0.5), rgba(10, 10, 10, 0.7)), url('assets/web-design.png'); }
.svc-hosting::after { background-image: linear-gradient(rgba(10, 10, 10, 0.5), rgba(10, 10, 10, 0.7)), url('assets/hosting.png'); }

.svc-card:hover::after {
  transform: scale(1.2) translate(0, 0) !important;
  filter: saturate(1.2) brightness(1);
}

.svc-name, .svc-desc {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.svc-agreement:hover { border-color: var(--primary); }
.svc-laser-printer:hover { border-color: var(--secondary); }
.svc-copier:hover { border-color: var(--accent); }
.svc-networking:hover { border-color: var(--primary); }
.svc-toners:hover { border-color: var(--secondary); }
.svc-cctv:hover { border-color: var(--accent); }
.svc-computers:hover { border-color: var(--primary); }
.svc-accessories:hover { border-color: var(--secondary); }
.svc-web-dev:hover { border-color: var(--primary); }
.svc-web-design:hover { border-color: var(--secondary); }
.svc-hosting:hover { border-color: var(--accent); }

.svc-num { font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 800; color: var(--text-muted); margin-bottom: 24px; opacity: 0.5; }
.svc-icon { font-size: 36px; margin-bottom: 20px; display: block; line-height: 1; }
.svc-name { font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 700; color: var(--text-main); margin-bottom: 12px; position: relative; z-index: 1; word-wrap: break-word; hyphens: auto; }
.svc-desc { font-size: 15px; color: var(--text-sub); line-height: 1.7; position: relative; z-index: 1; }

/* PARTNERS */
#partners { background: rgba(20,20,20,0.6); backdrop-filter: blur(30px); border-top: 1px solid var(--border-glass); border-bottom: 1px solid var(--border-glass); }
.partners-top { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 50px; text-align: center; justify-items: center; }
.partners-top .section-lead { max-width: 600px; text-align: center; }
.partners-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 30px; }
.partner-tile {
  background: var(--bg-glass); border: 1px solid var(--border-glass);
  padding: 30px 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  border-radius: var(--radius-md); transition: all 0.3s ease; box-shadow: var(--shadow-glass);
}
.partner-tile:hover { background: rgba(255,255,255,0.05); box-shadow: var(--shadow-float); z-index: 10; }
.partner-logo-name { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 700; color: #ffffff; transition: color 0.3s ease; text-align: center; }
.partner-tile:hover .partner-logo-name { color: var(--primary); }
.partner-tag {
  font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  color: var(--secondary); background: rgba(237, 0, 140, 0.1); padding: 4px 10px; border-radius: 100px;
}
.partners-strip { display: none; } /* removed */

/* ABOUT */
#about { background: transparent; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 60px; }
.about-visual { position: relative; }
.about-img-frame { display: none; }
.about-visual img { width: 100%; height: 550px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-float); }
.about-badge {
  position: absolute; bottom: -30px; right: -30px; background: rgba(20,20,20,0.9); backdrop-filter: blur(10px);
  border: 1px solid var(--border-glass); padding: 30px; border-radius: var(--radius-md); box-shadow: var(--shadow-float); text-align: center;
}
.about-badge-num { font-family: 'Outfit', sans-serif; font-size: 48px; font-weight: 800; line-height: 1; color: var(--primary); background: linear-gradient(135deg, var(--primary), var(--secondary)); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent;}
.about-badge-txt { font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--text-sub); margin-top: 8px; }
.about-tagline { display: inline-block; font-family: 'Outfit', sans-serif; font-size: 24px; font-weight: 700; color: var(--text-main); margin-bottom: 24px; line-height: 1.4; }
.about-text p { font-size: 16px; line-height: 1.8; color: var(--text-sub); margin-bottom: 20px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 30px; }
.feat { display: flex; align-items: center; gap: 14px; padding: 16px 20px; background: var(--bg-glass); backdrop-filter: blur(10px); border: 1px solid var(--border-glass); border-radius: var(--radius-sm); transition: transform 0.3s ease; box-shadow: var(--shadow-glass); }
.feat:hover { transform: translateY(-3px); }
.feat-icon { font-size: 20px; }
.feat-label { font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 700; color: var(--text-main); }

/* WHY */
#why { background: rgba(20,20,20,0.3); backdrop-filter: blur(30px); border-top: 1px solid var(--border-glass); border-bottom: 1px solid var(--border-glass); }
.why-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: start; margin-top: 60px; }
.why-item { display: flex; align-items: flex-start; gap: 24px; padding: 30px 0; border-bottom: 1px solid var(--border-dark); transition: transform 0.3s ease; }
.why-item:hover { transform: translateX(10px); }
.why-num { font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 800; color: var(--secondary); background: rgba(237, 0, 140, 0.1); width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; /* border-radius: 50%; */ flex-shrink: 0; }
.why-title { font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 700; color: var(--text-main); margin-bottom: 8px; }
.why-desc { font-size: 15px; color: var(--text-sub); line-height: 1.7; }
.mv-stack { display: flex; flex-direction: column; gap: 24px; }
.mv-card { padding: 40px; background: var(--bg-glass); backdrop-filter: blur(20px); border: 1px solid var(--border-glass); border-radius: var(--radius-md); position: relative; overflow: hidden; box-shadow: var(--shadow-glass); transition: transform 0.3s ease; }
.mv-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.05); box-shadow: var(--shadow-float); }
.mv-bg-word { position: absolute; right: 20px; bottom: 0px; font-family: 'Outfit', sans-serif; font-size: 120px; font-weight: 800; color: rgba(255,255,255,0.02); line-height: 1; pointer-events: none; }
.mv-icon { font-size: 32px; margin-bottom: 20px; }
.mv-title { font-family: 'Outfit', sans-serif; font-size: 26px; font-weight: 800; color: var(--text-main); margin-bottom: 12px; position: relative; z-index: 1; }
.mv-text { font-size: 16px; color: var(--text-sub); line-height: 1.8; position: relative; z-index: 1; }

/* CONTACT */
#contact { background: transparent; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; margin-top: 60px; }
.contact-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-card { display: flex; align-items: flex-start; gap: 20px; padding: 24px; background: var(--bg-glass); backdrop-filter: blur(20px); border: 1px solid var(--border-glass); border-radius: var(--radius-md); transition: transform 0.3s ease, box-shadow 0.3s ease; box-shadow: var(--shadow-glass); }
.contact-card:hover { background: rgba(255,255,255,0.05); box-shadow: var(--shadow-float); z-index: 10; }
.cc-icon { font-size: 28px; width: 50px; height: 50px; background: rgba(0, 173, 239, 0.1); /* border-radius: 50%; */ display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cc-label { font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); margin-bottom: 6px; }
.cc-val { font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 600; color: var(--text-main); line-height: 1.5; }
.cc-val a { transition: color 0.2s; }
.cc-val a:hover { color: var(--primary); }
.contact-form { padding: 40px; background: var(--bg-glass); backdrop-filter: blur(20px); border: 1px solid var(--border-glass); border-radius: var(--radius-lg); box-shadow: var(--shadow-glass); display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600; color: var(--text-sub); }
.form-group input, .form-group textarea, .form-group select { background: rgba(20,20,20,0.8); border: 1px solid var(--border-dark); color: var(--text-main); padding: 14px 18px; font-family: 'Inter', sans-serif; font-size: 15px; border-radius: var(--radius-sm); outline: none; transition: all 0.3s ease; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(0, 173, 239, 0.1); background: rgba(255,255,255,0.05); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ffffff' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-group select option { background: #141414; color: #ffffff; padding: 10px; }
.btn-submit { align-self: flex-start; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; border: none; padding: 16px 40px; font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 600; border-radius: 100px; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 10px 20px rgba(0, 173, 239, 0.2); }
.btn-submit:hover { transform: translateY(-3px); box-shadow: var(--shadow-float); }
.btn-submit.sent { background: #10b981; }

/* FOOTER */
footer { background: #0f172a; color: #cbd5e1; padding: 80px 6% 40px; border-radius: 40px 40px 0 0; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 40px; }
.footer-brand img { height: 60px; object-fit: contain; margin-bottom: 24px; /* border-radius: 50%; */ box-shadow: 0 4px 14px rgba(0,0,0,0.3); }
.footer-tagline-txt { font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer-brand p { font-size: 15px; line-height: 1.8; color: #94a3b8; max-width: 340px; }
.footer-col-title { font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 24px; }
.footer-links { display: flex; flex-direction: column; gap: 16px; }
.footer-links a { font-size: 15px; color: #94a3b8; transition: all 0.3s ease; display: inline-flex; align-items: center; }
.footer-links a:hover { color: #fff; transform: translateX(5px); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-copy { font-size: 14px; color: #64748b; display: flex; flex-direction: column; gap: 6px; }
.footer-credit { font-size: 13px; color: #94a3b8; }
.footer-credit a { color: var(--primary); font-weight: 600; text-decoration: underline; text-underline-offset: 4px; transition: color 0.3s ease; }
.footer-credit a:hover { color: var(--secondary); }
.footer-badges { display: flex; gap: 12px; }
.footer-badge { font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600; color: #94a3b8; border: 1px solid rgba(255,255,255,0.1); padding: 6px 14px; border-radius: 100px; }

/* FLOATING WHATSAPP */
.whatsapp-float { position: fixed; right: 30px; bottom: 30px; width: 64px; height: 64px; border-radius: 50%; background: #25d366; display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4); z-index: 1200; transition: all 0.3s ease; }
.whatsapp-float:hover { transform: translateY(-5px) scale(1.05); box-shadow: 0 16px 40px rgba(37, 211, 102, 0.6); }
.whatsapp-icon { width: 32px; height: 32px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23fff' d='M19.1 17.6c-.3-.2-1.9-.9-2.2-1-.3-.1-.5-.2-.7.2-.2.3-.8 1-.9 1.2-.2.2-.4.2-.7.1-.3-.2-1.3-.5-2.5-1.6-.9-.8-1.6-1.9-1.8-2.2-.2-.3 0-.5.1-.7.1-.1.3-.4.4-.5.1-.2.2-.3.3-.5.1-.2 0-.4 0-.6-.1-.2-.7-1.8-1-2.5-.3-.7-.6-.6-.8-.6h-.7c-.2 0-.6.1-.9.4-.3.3-1.2 1.1-1.2 2.7s1.2 3.1 1.4 3.3c.2.2 2.3 3.5 5.6 4.9.8.4 1.5.6 2 .7.8.3 1.5.2 2.1.1.6-.1 1.9-.8 2.1-1.6.3-.8.3-1.5.2-1.6-.1-.2-.3-.2-.6-.4z'/%3E%3Cpath fill='%23fff' d='M16 3.2c-7.1 0-12.8 5.7-12.8 12.8 0 2.3.6 4.5 1.7 6.4L3.2 28.8l6.6-1.7c1.8 1 3.9 1.6 6.2 1.6 7.1 0 12.8-5.7 12.8-12.8S23.1 3.2 16 3.2zm0 23.1c-2.1 0-4.1-.6-5.8-1.6l-.4-.2-3.9 1 1-3.8-.2-.4c-1-1.7-1.6-3.7-1.6-5.9 0-6 4.9-10.9 10.9-10.9S26.9 9.5 26.9 15.5 22 26.3 16 26.3z'/%3E%3C/svg%3E"); background-size: contain; background-repeat: no-repeat; }

/* ================= ANIMATIONS & HOVER DYNAMICS ================= */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

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

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); will-change: transform, opacity; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* INITIAL LOAD ANIMATIONS (HERO SECTION) */
.hero-eyebrow, .hero-title, .hero-desc, .hero-actions, .stat-card {
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-eyebrow { animation-delay: 0.1s; }
.hero-title { animation-delay: 0.3s; }
.hero-desc { animation-delay: 0.5s; }
.hero-actions { animation-delay: 0.7s; }
.stat-card:nth-child(1) { animation-delay: 0.8s; }
.stat-card:nth-child(2) { animation-delay: 0.9s; }
.stat-card:nth-child(3) { animation-delay: 1.0s; }
.hero-img-wrap { 
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.6s, floatElement 6s ease-in-out infinite 1.4s;
}

/* CONTINUOUS ANIMATIONS */
.about-visual img { animation: floatElement 6s ease-in-out infinite; }
.about-badge { animation: floatElement 5s ease-in-out infinite reverse; }
.whatsapp-float { animation: pulseGlow 2.5s infinite; }

/* ENHANCED INTERACTIVE HOVERS */
.svc-icon { transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); display: inline-block; }
.svc-card:hover .svc-icon { transform: scale(1.2) rotate(10deg) translateY(-5px); color: var(--accent); }

.cc-icon { transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.contact-card:hover .cc-icon { transform: scale(1.15) rotate(-10deg); }

.mv-icon { transition: transform 0.4s ease; display: inline-block; }
.mv-card:hover .mv-icon { transform: scale(1.2) rotate(-5deg); }


/* RESPONSIVE */
@media(max-width: 1100px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 960px) { .hero-inner { grid-template-columns: 1fr; gap: 40px; } }
@media(max-width: 900px) {
  .svc-agreement::after, .svc-laser-printer::after, .svc-copier::after, .svc-networking::after, .svc-toners::after, .svc-cctv::after, .svc-computers::after, .svc-accessories::after, .svc-web-dev::after, .svc-web-design::after, .svc-hosting::after {
    animation: none; /* Disable resource-heavy animations on mobile to prevent WebKit rendering crashes */
  }

  .hamburger { display: flex; }
  .nav-links { position: fixed; top: 70px; left: 0; right: 0; background: var(--bg-glass); backdrop-filter: blur(30px); flex-direction: column; align-items: flex-start; padding: 40px 6%; gap: 30px; border-top: 1px solid var(--border-glass); box-shadow: var(--shadow-float); transform: translateY(-120%); opacity: 0; pointer-events: none; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .about-grid, .why-grid, .contact-grid, .partners-top { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .about-badge { bottom: 0; right: 0; }
  
  /* Make the background video a responsive featured-video card on mobile */
  .hero-inner { 
    order: 1; 
    padding: 20px 0; 
  }
  .hero-bg-video {
    order: 2;
    position: relative;
    top: auto; left: auto; right: auto; bottom: auto;
    width: 100%; height: auto;
    min-width: 0; min-height: 0;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-float);
    margin: 0 auto 20px auto;
    pointer-events: auto; /* Re-enable tap if needed */
  }
}
@media(max-width: 768px) {
  .hero-stats { flex-wrap: wrap; justify-content: center; gap: 20px; }
}
@media(max-width: 560px) {
  section { padding: 80px 5%; }
  .services-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; gap: 20px; }
  .hero-title { font-size: 40px; }
  .stat-card { padding: 16px 20px; min-width: calc(50% - 12px); flex: 1 1 auto; align-items: center; text-align: center; }
  .hero-stats { gap: 12px; }
}
@media(max-width: 480px) {
  .hero-title { font-size: 34px; }
  .section-title { font-size: 32px; }
  .btn-primary, .btn-ghost { width: 100%; text-align: center; }
  .hero-actions { flex-direction: column; width: 100%; }
}
