/*
Theme Name: Apex Loan Connect
Theme URI: https://apexloanconnect.com/
Author: Muhammad Sheharyar
Author URI: mailto:sheharyar.cs14@gmail.com
Description: A bespoke, ultra-fast, modern light-themed WordPress loan connection and lead generation platform. Features a comprehensive 25-step borrower application workflow, secure lead management dashboard, and full responsive design.
Version: 1.0.0
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: apex-loan
Tags: financial, loans, lead-generation, light-theme, clean, responsive-layout, custom-forms
*/

:root {
  /* Brand Palette - Modern High-Trust Light Theme */
  --color-primary: #0f172a;        /* Deep Navy */
  --color-primary-light: #1e293b;  /* Slate Navy */
  --color-accent: #2563eb;         /* Royal Trust Blue */
  --color-accent-hover: #1d4ed8;   /* Darker Trust Blue */
  --color-accent-soft: #eff6ff;    /* Soft Ice Blue */
  --color-secondary: #059669;      /* Emerald Green for Trust/Success */
  --color-secondary-soft: #ecfdf5; /* Soft Emerald */
  
  /* Neutral Grays */
  --color-bg: #f8fafc;             /* Page Background */
  --color-surface: #ffffff;        /* Pure White Card Surface */
  --color-surface-subtle: #f1f5f9; /* Subtle Cool Gray */
  --color-border: #e2e8f0;         /* Standard Border */
  --color-border-focus: #3b82f6;   /* Focus Border */
  
  /* Typography Colors */
  --color-text-main: #0f172a;      /* Slate 900 */
  --color-text-body: #334155;      /* Slate 700 */
  --color-text-muted: #64748b;     /* Slate 500 */
  --color-text-light: #94a3b8;     /* Slate 400 */
  
  /* Shadows & Radius */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.07), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 10px 25px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 20px 30px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.05);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;
  
  /* Layout */
  --container-max: 1200px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: var(--color-text-body);
  background-color: var(--color-bg);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--color-accent-hover);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (max-width: 640px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
