/*
Theme Name: ZenithTek
Theme URI: https://zenithtek.ca
Author: ZenithTek Inc.
Author URI: https://zenithtek.ca
Description: A modern, professional one-page theme for ZenithTek - Solutions Made Simple.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: zenithtek
Tags: one-page, custom-background, custom-logo, featured-images, theme-options
*/

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #E8751A;
  --orange-light: #F5923E;
  --orange-dark: #C9600F;
  --dark: #1A1A1A;
  --darker: #111111;
  --black: #000000;
  --white: #FFFFFF;
  --light: #F7F5F2;
  --warm: #FAF8F5;
  --gray: #6B6B6B;
  --text: #333333;
  --text-light: #555555;
  --border: #E5E0DA;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; }

/* ===== NAVBAR ===== */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0; transition: all 0.3s ease;
}
.site-nav.scrolled {
  background: rgba(30,41,59,0.97);
  backdrop-filter: blur(12px);
  padding: 10px 0;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 8px; }
.nav-logo img { height: 38px; object-fit: contain; }
.nav-logo-text { color: var(--white); font-weight: 800; font-size: 20px; letter-spacing: 1px; }
.nav-logo-text span { color: var(--orange); }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.75); font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.8px; text-transform: uppercase; transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange); }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: 0.3s; }

/* ===== HERO SLIDER ===== */
.hero {
  position: relative; height: 100vh; overflow: hidden; background: var(--black);
}
.hero-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-slide-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  filter: brightness(0.85); transition: transform 6s ease;
}
.hero-slide.active .hero-slide-bg { transform: scale(1.02); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.05) 100%);
}
.hero-content {
  position: relative; z-index: 2; height: 100%; display: flex; align-items: center;
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.hero-text { max-width: 620px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,117,26,0.15); border: 1px solid rgba(232,117,26,0.3);
  border-radius: 30px; padding: 8px 20px; margin-bottom: 28px;
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.hero-badge span { color: var(--orange); font-size: 13px; font-weight: 600; letter-spacing: 1.5px; }
.hero-title-wrap { position: relative; min-height: 160px; }
.hero-title-item {
  position: absolute; top: 0; left: 0; opacity: 0;
  transform: translateY(20px); transition: all 0.8s ease; pointer-events: none;
}
.hero-title-item:first-child { position: relative; }
.hero-title-item.active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.hero-title-item h1 {
  font-size: 54px; font-weight: 800; color: var(--white); line-height: 1.1; margin-bottom: 20px;
}
.hero-title-item p { color: rgba(255,255,255,0.5); font-size: 20px; line-height: 1.6; }
.hero-buttons { display: flex; gap: 16px; margin-top: 36px; }
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white); border: none; border-radius: 12px; padding: 16px 36px;
  font-size: 15px; font-weight: 700; cursor: pointer; display: inline-flex;
  align-items: center; gap: 10px; transition: all 0.2s;
  box-shadow: 0 8px 28px rgba(232,117,26,0.4); letter-spacing: 0.5px;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(232,117,26,0.5); }
.btn-outline {
  background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.25);
  border-radius: 12px; padding: 16px 32px; font-size: 15px; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }

/* Slider Controls */
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--white); transition: all 0.2s;
  backdrop-filter: blur(4px); font-size: 20px;
}
.slider-arrow:hover { background: var(--orange); border-color: var(--orange); }
.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }
.slider-dots {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; gap: 10px;
}
.slider-dot {
  width: 10px; height: 10px; border-radius: 5px;
  background: rgba(255,255,255,0.3); border: none; cursor: pointer;
  transition: all 0.3s ease; padding: 0;
}
.slider-dot.active { width: 36px; background: var(--orange); }

/* Decorative ring */
.hero-ring {
  position: absolute; right: 12%; top: 50%; transform: translateY(-50%); z-index: 1;
}
.ring-outer { width: 360px; height: 360px; border-radius: 50%; border: 1px solid rgba(232,117,26,0.08); display: flex; align-items: center; justify-content: center; position: relative; }
.ring-mid { width: 260px; height: 260px; border-radius: 50%; border: 1px solid rgba(232,117,26,0.12); display: flex; align-items: center; justify-content: center; }
.ring-inner { width: 160px; height: 160px; border-radius: 50%; border: 1px solid rgba(232,117,26,0.15); display: flex; align-items: center; justify-content: center; }
.ring-icon {
  width: 90px; height: 90px; border-radius: 22px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 16px 48px rgba(232,117,26,0.4); color: var(--white); font-size: 36px;
}

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.bg-white { background: var(--white); }
.bg-light { background: var(--light); }
.bg-warm { background: var(--warm); }
.bg-dark { background: var(--dark); }
.bg-darker { background: var(--darker); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header .sub {
  color: var(--orange); font-weight: 600; font-size: 13px;
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 8px;
}
.section-header h2 { font-size: 38px; font-weight: 800; color: var(--dark); line-height: 1.3; }
.section-header.light h2 { color: var(--white); }
.section-header .line { width: 60px; height: 3px; background: var(--orange); margin: 16px auto 0; border-radius: 2px; }

/* ===== STATS ===== */
.stats-bar { background: var(--darker); padding: 52px 0; border-top: 3px solid var(--orange); }
.stats-grid { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 32px; }
.stat-item { text-align: center; }
.stat-num { font-size: 44px; font-weight: 800; color: var(--orange); line-height: 1; }
.stat-label { color: rgba(255,255,255,0.6); font-size: 13px; font-weight: 500; margin-top: 8px; letter-spacing: 1.5px; text-transform: uppercase; }

/* ===== ABOUT ===== */
.about-grid { display: flex; gap: 60px; align-items: center; flex-wrap: wrap; }
.about-content { flex: 1; min-width: 300px; }
.about-content .sub-label { color: var(--orange); font-weight: 700; font-size: 13px; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 8px; }
.about-content h2 { font-size: 38px; font-weight: 800; color: var(--dark); line-height: 1.25; margin-bottom: 20px; }
.about-content .line { width: 60px; height: 3px; background: var(--orange); border-radius: 2px; margin-bottom: 24px; }
.about-content p { color: var(--text-light); line-height: 1.8; font-size: 16px; margin-bottom: 16px; }
.about-features { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 28px; }
.about-feat { display: flex; align-items: center; gap: 10px; }
.about-feat-icon {
  width: 42px; height: 42px; border-radius: 11px; background: rgba(232,117,26,0.07);
  display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 18px;
}
.about-feat span { font-weight: 700; font-size: 14px; color: var(--dark); }
.about-visual { flex: 1; min-width: 300px; display: flex; justify-content: center; }
.about-card {
  width: 440px; height: 320px; border-radius: 20px; background: var(--dark);
  display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.about-card-logo { text-align: center; position: relative; z-index: 1; }
.about-card-logo .name { font-weight: 800; font-size: 32px; }
.about-card-logo .name-z { color: var(--white); }
.about-card-logo .name-t { color: var(--orange); }
.about-card-logo .tagline { color: rgba(255,255,255,0.35); font-size: 13px; letter-spacing: 2px; text-transform: uppercase; margin-top: 8px; }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 24px; }
.service-card {
  background: var(--white); border-radius: 16px; padding: 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04); border: 1px solid var(--border);
  display: flex; flex-direction: column; transition: all 0.3s ease;
}
.service-card:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.1); transform: translateY(-6px); }
.service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); margin-bottom: 20px; font-size: 24px;
}
.service-card h3 { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.service-card p { color: var(--text-light); line-height: 1.7; font-size: 15px; margin-bottom: 16px; flex: 1; }
.service-list li { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 6px; font-size: 14px; color: var(--text); }
.service-list .check { color: var(--orange); flex-shrink: 0; margin-top: 3px; }

/* ===== OUTSOURCING ===== */
.outsource-grid { display: flex; gap: 60px; align-items: center; flex-wrap: wrap; }
.outsource-content { flex: 1; min-width: 300px; }
.outsource-content .sub-label { color: var(--orange); font-weight: 700; font-size: 13px; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 8px; }
.outsource-content h2 { font-size: 38px; font-weight: 800; color: var(--white); line-height: 1.25; margin-bottom: 20px; }
.outsource-content .line { width: 60px; height: 3px; background: var(--orange); border-radius: 2px; margin-bottom: 24px; }
.outsource-content > p { color: rgba(255,255,255,0.5); line-height: 1.8; font-size: 16px; margin-bottom: 32px; }
.outsource-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.benefit-item {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.03); border-radius: 12px; padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.06);
}
.benefit-item .check { color: var(--orange); flex-shrink: 0; }
.benefit-item span { color: rgba(255,255,255,0.7); font-size: 14px; font-weight: 500; }

/* ===== PROJECT MGMT ===== */
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.project-card {
  background: var(--white); border-radius: 16px; padding: 36px; text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04); border: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.project-card .top-line { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--orange), var(--orange-light)); }
.project-card-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: rgba(232,117,26,0.07); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; color: var(--orange); font-size: 26px;
}
.project-num {
  width: 32px; height: 32px; border-radius: 50%; background: var(--orange);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 14px; font-weight: 800;
}
.project-card h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.project-card p { color: var(--text-light); line-height: 1.7; font-size: 14px; }

/* ===== SPECIALITY ===== */
.speciality-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.speciality-card { border-radius: 20px; padding: 40px; color: var(--white); position: relative; overflow: hidden; }
.speciality-card.dark { background: var(--dark); }
.speciality-card.orange { background: linear-gradient(135deg, var(--orange), var(--orange-light)); }
.speciality-card-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 26px;
}
.speciality-card.dark .speciality-card-icon { background: rgba(232,117,26,0.1); color: var(--orange); }
.speciality-card.orange .speciality-card-icon { background: rgba(255,255,255,0.2); color: var(--white); }
.speciality-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 16px; }
.speciality-card.dark p { color: rgba(255,255,255,0.5); }
.speciality-card.orange p { color: rgba(255,255,255,0.85); }
.speciality-card p { line-height: 1.8; font-size: 15px; }

/* ===== PARTNERS ===== */
.partners-row { display: flex; justify-content: center; gap: 32px; align-items: center; flex-wrap: wrap; }
.partner-item {
  padding: 18px 32px; background: var(--white); border-radius: 12px;
  border: 1px solid var(--border); font-size: 14px; font-weight: 700;
  color: var(--dark); letter-spacing: 0.5px; transition: all 0.2s; cursor: pointer;
}
.partner-item:hover { border-color: var(--orange); box-shadow: 0 4px 16px rgba(232,117,26,0.1); }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 20px; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(232,117,26,0.1); display: flex; align-items: center; justify-content: center;
  color: var(--orange); flex-shrink: 0; font-size: 18px;
}
.contact-item .label { color: var(--orange); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px; }
.contact-item .value { color: rgba(255,255,255,0.6); font-size: 15px; line-height: 1.5; }
.contact-form-wrap {
  background: rgba(255,255,255,0.03); border-radius: 20px; padding: 36px;
  border: 1px solid rgba(255,255,255,0.06);
}
.contact-form-wrap h3 { color: var(--white); font-size: 20px; font-weight: 700; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-input {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 14px 16px; color: var(--white);
  font-size: 14px; outline: none; width: 100%; transition: border-color 0.2s;
  font-family: inherit;
}
.form-input:focus { border-color: var(--orange); }
.form-input::placeholder { color: rgba(255,255,255,0.3); }
textarea.form-input { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%; margin-top: 20px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white); border: none; border-radius: 12px; padding: 16px;
  font-size: 15px; font-weight: 700; cursor: pointer;
  box-shadow: 0 8px 28px rgba(232,117,26,0.3); transition: all 0.2s; letter-spacing: 0.5px;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(232,117,26,0.45); }

/* ===== FOOTER ===== */
.site-footer { background: var(--black); padding: 32px 0; border-top: 2px solid var(--orange); }
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand .name { color: rgba(255,255,255,0.5); font-weight: 700; font-size: 14px; }
.footer-brand .name span { color: var(--orange); }
.footer-brand .copy { color: rgba(255,255,255,0.35); font-size: 13px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(255,255,255,0.3); font-size: 12px; letter-spacing: 0.5px; text-transform: uppercase; transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .hero-ring { display: none; }
  .hero-title-item h1 { font-size: 38px; }
  .about-grid, .outsource-grid { flex-direction: column; }
  .project-grid { grid-template-columns: 1fr; }
  .speciality-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .outsource-benefits { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero-title-item h1 { font-size: 30px; }
  .hero-buttons { flex-direction: column; }
  .stats-grid { flex-direction: column; align-items: center; }
  .section { padding: 50px 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}
