/*
	Theme Name: Hello Elementor
	Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
	Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
	Author: Elementor Team
	Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
	Version: 3.4.7
	Stable tag: 3.4.7
	Requires at least: 6.0
	Tested up to: 6.8
	Requires PHP: 7.4
	License: GNU General Public License v3 or later.
	License URI: https://www.gnu.org/licenses/gpl-3.0.html
	Text Domain: hello-elementor
	Tags: accessibility-ready, flexible-header, custom-colors, custom-menu, custom-logo, featured-images, rtl-language-support, threaded-comments, translation-ready,
*/


.grey-hover .elementor-widget-icon-box:hover {
	background: #e5e7eb
}

/*
Theme Name:   ApexDigital Child
Template:     hello-elementor
Description:  Child theme for ApexDigital — matches Lovable design
Version:      1.0.0
*/

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  --apex-dark:       #0f1117;
  --apex-white:      #ffffff;
  --apex-accent:     #6366f1;
  --apex-gray-50:    #f9fafb;
  --apex-gray-100:   #f3f4f6;
  --apex-gray-200:   #e5e7eb;
  --apex-gray-400:   #9ca3af;
  --apex-gray-500:   #6b7280;
  --apex-gray-700:   #374151;
  --apex-gray-900:   #111827;

  --apex-font:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --apex-radius:     12px;
  --apex-radius-sm:  6px;
}

/* ============================================
   BASE
   ============================================ */
body {
  font-family: var(--apex-font);
  color: var(--apex-gray-700);
  background: var(--apex-white);
  -webkit-font-smoothing: antialiased;
}

/* Remove default Elementor section padding resets */
.elementor-section.elementor-section-boxed > .elementor-container {
  max-width: 1200px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--apex-font);
  font-weight: 700;
  color: var(--apex-dark);
  line-height: 1.2;
}

p { line-height: 1.7; }

/* ============================================
   NAVIGATION
   ============================================ */
.apex-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  background: var(--apex-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.apex-nav__logo {
  font-weight: 700;
  font-size: 18px;
  color: var(--apex-white);
  text-decoration: none;
}

.apex-nav__links {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.apex-nav__links a {
  color: #cccccc;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}

.apex-nav__links a:hover { color: var(--apex-white); }

.apex-btn-nav {
  background: var(--apex-white);
  color: var(--apex-dark) !important;
  padding: 10px 20px;
  border-radius: var(--apex-radius-sm);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}
.apex-btn-nav:hover { opacity: 0.85; }

/* ============================================
   BUTTONS
   ============================================ */
.apex-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--apex-white);
  color: var(--apex-dark);
  padding: 14px 24px;
  border-radius: var(--apex-radius-sm);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}
.apex-btn-primary:hover { opacity: 0.88; color: var(--apex-dark); }

.apex-btn-outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--apex-white);
  padding: 14px 24px;
  border: 1px solid #333;
  border-radius: var(--apex-radius-sm);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.apex-btn-outline:hover { border-color: #666; color: var(--apex-white); }

.apex-btn-outline-white {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--apex-white);
  padding: 14px 28px;
  border: 1px solid var(--apex-white);
  border-radius: var(--apex-radius-sm);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.apex-btn-outline-white:hover {
  background: var(--apex-white);
  color: var(--apex-dark);
}

/* ============================================
   SECTION LABELS
   ============================================ */
.apex-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--apex-accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.apex-card {
  border: 1px solid var(--apex-gray-200);
  border-radius: var(--apex-radius);
  padding: 28px;
  background: var(--apex-white);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.apex-card:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  border-color: var(--apex-gray-400);
}
.apex-card--muted { background: var(--apex-gray-50); }

.apex-card__icon { font-size: 22px; margin-bottom: 12px; }
.apex-card__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--apex-dark);
  margin-bottom: 8px;
}
.apex-card__text {
  font-size: 14px;
  color: var(--apex-gray-500);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   STATS
   ============================================ */
.apex-stat { text-align: center; }
.apex-stat__number {
  font-size: 42px;
  font-weight: 700;
  color: var(--apex-dark);
  line-height: 1;
}
.apex-stat__label {
  font-size: 13px;
  color: var(--apex-gray-400);
  margin-top: 6px;
}

/* ============================================
   TESTIMONIAL CARDS
   ============================================ */
.apex-testimonial {
  background: var(--apex-white);
  border: 1px solid var(--apex-gray-200);
  border-radius: var(--apex-radius);
  padding: 28px;
}
.apex-testimonial__quote {
  font-size: 14px;
  color: var(--apex-gray-700);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.apex-testimonial__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--apex-dark);
}
.apex-testimonial__role {
  font-size: 12px;
  color: var(--apex-gray-400);
}

/* ============================================
   CASE STUDY CARD
   ============================================ */
.apex-case-card {
  border: 1px solid var(--apex-gray-200);
  border-radius: var(--apex-radius);
  padding: 32px;
}
.apex-case-card__label {
  font-size: 11px;
  font-weight: 600;
  color: var(--apex-gray-400);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.apex-case-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--apex-dark);
  margin-bottom: 8px;
}
.apex-case-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--apex-accent);
  text-decoration: none;
}
.apex-case-card__link:hover { text-decoration: underline; }

/* ============================================
   CHECKLIST
   ============================================ */
.apex-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.apex-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--apex-gray-700);
}
.apex-checklist li::before {
  content: "✓";
  color: var(--apex-accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================
   LOGO BAR
   ============================================ */
.apex-logo-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.apex-logo-bar span {
  font-size: 13px;
  color: var(--apex-gray-400);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ============================================
   FOOTER
   ============================================ */
.apex-footer {
  background: var(--apex-dark);
  border-top: 1px solid #1f2937;
  padding: 60px 60px 40px;
}
.apex-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid #1f2937;
  margin-bottom: 24px;
}
.apex-footer__brand {
  font-size: 17px;
  font-weight: 700;
  color: var(--apex-white);
  margin-bottom: 12px;
}
.apex-footer__desc {
  font-size: 13px;
  color: var(--apex-gray-500);
  line-height: 1.7;
}
.apex-footer__col-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--apex-white);
  margin-bottom: 16px;
}
.apex-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.apex-footer__links a {
  font-size: 13px;
  color: var(--apex-gray-500);
  text-decoration: none;
  transition: color 0.2s;
}
.apex-footer__links a:hover { color: var(--apex-white); }
.apex-footer__copy {
  font-size: 12px;
  color: #4b5563;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .apex-nav { padding: 16px 24px; }
  .apex-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .apex-nav__links { display: none; }
  .apex-footer { padding: 40px 24px; }
  .apex-footer__grid { grid-template-columns: 1fr; gap: 32px; }
}