/*
Theme Name: ZITCO Group
Theme URI: https://zitcogroup.com
Author: ZITCO Private Limited
Author URI: https://zitcogroup.com
Description: Official theme for ZITCO Group – Digital Marketing, Web Design, Mobile Apps, Content Writing, Video Editing, IT Education & Trainings, AI Tools, Business Intelligence, Staff Sourcing, Domain & Hosting. Part of ZITCO Private Limited.
Version: 1.1.1
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: zitco-group
Tags: one-column, custom-logo, custom-menu, featured-images, footer-widgets, theme-options, translation-ready
*/

/* ========== CSS VARIABLES ========== */
:root {
  --primary: #0056b3;
  --primary-dark: #003d82;
  --primary-light: #e8f1fb;
  --accent: #e30613;
  --text: #1a1a2e;
  --text-light: #5a5a6e;
  --bg: #ffffff;
  --bg-alt: #f7f9fc;
  --border: #e2e8f0;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(0, 86, 179, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 86, 179, 0.12);
  --transition: all 0.3s ease;
  --font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { line-height: 1.25; font-weight: 700; color: var(--text); }
.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}
.btn-accent {
  background: var(--accent);
  color: #fff;
}
.btn-accent:hover {
  background: #c00510;
  color: #fff;
}

/* ========== HEADER ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.site-logo img {
  height: 44px;
  width: auto;
}
.main-nav ul {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  color: var(--text);
  font-weight: 500;
  font-size: 14px;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }
.header-cta {
  display: inline-flex;
  padding: 10px 20px;
  font-size: 14px;
}
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: var(--transition);
}

/* ========== HERO (reduced top space) ========== */
.hero {
  padding: 110px 0 60px;
  background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 50%, #fff5f5 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,86,179,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.hero h1 span { color: var(--primary); }
.hero-lead {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 28px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}
.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.stat-item strong {
  display: block;
  font-size: 1.7rem;
  color: var(--primary);
  font-weight: 700;
}
.stat-item span {
  font-size: 13px;
  color: var(--text-light);
}
.hero-visual {
  position: relative;
}
.hero-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 28px;
  border: 1px solid var(--border);
}
.hero-card h3 {
  font-size: 1.05rem;
  margin-bottom: 14px;
  color: var(--primary);
}
.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: 50px;
}

/* ========== SECTIONS ========== */
.section {
  padding: 72px 0;
}
.section-alt { background: var(--bg-alt); }
.section-title {
  text-align: center;
  margin-bottom: 44px;
}
.section-title h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin-bottom: 10px;
}
.section-title p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ========== ABOUT ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.about-content h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
  color: var(--primary);
}
.about-content p {
  color: var(--text-light);
  margin-bottom: 14px;
}
.about-list {
  margin-top: 20px;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
  color: var(--text);
}
.about-list li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

/* ========== SERVICES ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
  height: 100%;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.service-card p {
  color: var(--text-light);
  font-size: 0.92rem;
}

/* ========== PROCESS ========== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.process-step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.process-step:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.process-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.process-step h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--primary);
}
.process-step p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ========== WORK WITH US ========== */
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.work-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
}
.work-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.work-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 16px;
}
.work-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.work-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}
.work-cta {
  text-align: center;
  margin-top: 40px;
}

/* ========== GROUP COMPANIES ========== */
.companies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.company-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: var(--transition);
}
.company-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}
.company-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--primary);
}
.company-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 16px;
}
.company-card a {
  font-weight: 600;
  font-size: 14px;
}

/* ========== FOUNDER ========== */
.founder-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}
.founder-photo {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(145deg, var(--primary-light) 0%, #d6e8f8 100%);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.founder-content h3 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}
.founder-role {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 18px;
}
.founder-content p {
  color: var(--text-light);
  margin-bottom: 12px;
}

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}
.contact-info h3 {
  font-size: 1.35rem;
  margin-bottom: 22px;
}
.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}
.contact-item .icon {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  margin-bottom: 2px;
}
.contact-item p, .contact-item a {
  color: var(--text-light);
  font-size: 0.95rem;
}
.contact-form-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: var(--transition);
  background: #fff;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,86,179,0.12);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.form-message {
  margin-top: 16px;
  text-align: center;
  font-weight: 600;
  display: none;
}

/* ========== FOOTER ========== */
.site-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
.footer-brand img {
  height: 42px;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
}
.footer-col h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col a {
  color: #94a3b8;
  font-size: 0.88rem;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 992px) {
  .hero-grid,
  .about-grid,
  .founder-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-visual { order: -1; max-width: 420px; margin: 0 auto; }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .header-inner { height: 64px; }
  .main-nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    transition: var(--transition);
    box-shadow: var(--shadow);
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav ul {
    flex-direction: column;
    gap: 14px;
  }
  .mobile-toggle { display: block; }
  .header-cta { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 90px 0 48px; }
  .section { padding: 52px 0; }
  .process-grid,
  .work-grid {
    grid-template-columns: 1fr;
  }
}
