/*
Theme Name: PROPY Lead Global
Theme URI: https://propylead.com
Author: PROPY Lead Global
Description: Custom WordPress theme for PROPY Lead Global - AI Real Estate Solutions
Version: 2.0.0
License: GNU General Public License v2 or later
Text Domain: propylead
*/

/* =============================================
   VARIABLES
============================================= */
:root {
  --orange: #e85d04;
  --orange-dark: #c44d00;
  --orange-light: #ff7920;
  --navy: #1a1a2e;
  --navy2: #16213e;
  --navy3: #0f3460;
  --accent: #f8a832;
  --white: #ffffff;
  --text: #2d2d2d;
  --text-light: #6b7280;
  --bg: #ffffff;
  --bg-light: #f8f9fa;
  --border: #e5e7eb;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.15);
  --radius: 14px;
  --radius-sm: 8px;
  --font: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* =============================================
   RESET
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { color: var(--orange); text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { font-family: var(--font); }

/* =============================================
   ANIMATIONS
============================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
@keyframes pulse-ring {
  0%   { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes rotateBg {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   LAYOUT
============================================= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section-alt { background: var(--bg-light); }
.section-dark { background: var(--navy); color: #fff; }

/* =============================================
   TYPOGRAPHY
============================================= */
h1,h2,h3,h4 { font-weight: 800; line-height: 1.2; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.25rem; font-weight: 700; }

.section-header { text-align: center; margin-bottom: 65px; }
.section-header .label {
  display: inline-block;
  background: rgba(232,93,4,0.1);
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  border: 1px solid rgba(232,93,4,0.2);
}
.section-header h2 { margin-bottom: 16px; color: var(--navy); }
.section-header p { color: var(--text-light); max-width: 580px; margin: 0 auto; font-size: 1.05rem; }

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 1rem;
  transition: var(--transition); cursor: pointer; border: none;
  position: relative; overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0; transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }
.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(232,93,4,0.35);
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232,93,4,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-outline:hover { background: var(--orange); color: #fff; transform: translateY(-2px); }
.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); color: #fff; }
.btn-white { background: #fff; color: var(--orange); font-weight: 700; }
.btn-white:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }

/* =============================================
   HEADER
============================================= */
#masthead {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: var(--transition);
}
#masthead.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.12); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.site-logo { display: flex; align-items: center; gap: 10px; }
.site-logo img { height: 48px; width: auto; }
.logo-text { font-size: 1.3rem; font-weight: 900; color: var(--orange); letter-spacing: -0.5px; }
.main-navigation ul { display: flex; gap: 6px; }
.main-navigation a {
  color: var(--text); font-weight: 500; font-size: 0.95rem;
  padding: 8px 14px; border-radius: 6px;
  transition: var(--transition);
}
.main-navigation a:hover { color: var(--orange); background: rgba(232,93,4,0.06); }
.main-navigation .current-menu-item a { color: var(--orange); font-weight: 700; }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-phone { color: var(--text-light); font-size: 0.88rem; font-weight: 500; display: flex; align-items: center; gap: 5px; }
.nav-phone:hover { color: var(--orange); }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--text); padding: 6px; }

/* =============================================
   HERO
============================================= */
.hero {
  min-height: 100vh;
  padding: 140px 0 100px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 40%, var(--navy3) 100%);
  background-size: 300% 300%;
  animation: gradientShift 12s ease infinite;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center;
}

/* Animated background orbs */
.hero::before {
  content: '';
  position: absolute; top: -20%; right: -10%;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,93,4,0.18) 0%, transparent 65%);
  animation: float 8s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute; bottom: -20%; left: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(248,168,50,0.12) 0%, transparent 65%);
  animation: float 10s ease-in-out infinite reverse;
}

/* Grid dots overlay */
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 70px; align-items: center; position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,93,4,0.15);
  border: 1px solid rgba(232,93,4,0.35);
  color: #ffb347;
  padding: 8px 18px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.5px;
  margin-bottom: 24px;
  animation: fadeInLeft 0.8s ease forwards;
}

.hero h1 {
  color: #fff;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.9s 0.1s ease both;
}

.hero-desc {
  color: rgba(255,255,255,0.72);
  font-size: 1.1rem; line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
  animation: fadeInUp 1s 0.2s ease both;
}

.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 50px; animation: fadeInUp 1s 0.3s ease both; }

.hero-features { display: flex; flex-direction: column; gap: 16px; animation: fadeInUp 1s 0.4s ease both; }
.hero-feature {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 14px 18px;
  backdrop-filter: blur(4px);
  transition: var(--transition);
}
.hero-feature:hover { background: rgba(255,255,255,0.09); transform: translateX(4px); }
.hero-feature-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(232,93,4,0.3);
}
.hero-feature-text strong { display: block; color: #fff; font-size: 0.92rem; font-weight: 700; }
.hero-feature-text span  { color: rgba(255,255,255,0.55); font-size: 0.8rem; }

/* Hero stats card */
.hero-stats-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px; padding: 36px;
  backdrop-filter: blur(10px);
  animation: fadeIn 1.2s 0.5s ease both;
  position: relative; overflow: hidden;
}
.hero-stats-card::before {
  content: '';
  position: absolute; top: -50%; right: -50%;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,93,4,0.12) 0%, transparent 70%);
}
.stats-card-title { color: rgba(255,255,255,0.5); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 24px; }
.hero-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.stat-item { text-align: center; padding: 16px; background: rgba(255,255,255,0.05); border-radius: 10px; }
.stat-number {
  font-size: 2.2rem; font-weight: 900; color: var(--orange);
  background: linear-gradient(135deg, var(--orange), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.55); margin-top: 4px; font-weight: 500; }

/* Phase badge */
.phase-badge {
  margin-top: 24px;
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 12px 16px; font-size: 0.85rem;
}
.phase-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80; box-shadow: 0 0 0 3px rgba(74,222,128,0.2);
  animation: pulse-ring 2s infinite;
}
.phase-text { color: rgba(255,255,255,0.7); }
.phase-text strong { color: #fff; }

/* =============================================
   STATS BAR
============================================= */
.stats-bar {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 60px 0; position: relative; overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute; top: -50%; right: -5%;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-block { text-align: center; padding: 10px 20px; position: relative; }
.stat-block + .stat-block::before {
  content: ''; position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 1px; background: rgba(255,255,255,0.2);
}
.stat-big-number { font-size: 3.2rem; font-weight: 900; color: #fff; line-height: 1; }
.stat-big-label { font-size: 0.92rem; color: rgba(255,255,255,0.8); margin-top: 8px; font-weight: 500; }

/* =============================================
   ABOUT CARDS
============================================= */
.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 60px; }
.about-card {
  background: #fff; border-radius: var(--radius); padding: 34px;
  box-shadow: var(--shadow); border-top: 4px solid var(--orange);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.about-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--accent));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.about-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.about-card:hover::after { transform: scaleX(1); }
.about-card h3 { color: var(--orange); margin-bottom: 14px; font-size: 1.1rem; }
.about-card p { color: var(--text-light); line-height: 1.75; font-size: 0.95rem; }

.why-choose { text-align: center; }
.why-choose h3 { margin-bottom: 28px; font-size: 1.4rem; color: var(--navy); }
.features-grid {
  display: inline-grid; grid-template-columns: 1fr 1fr;
  gap: 14px; text-align: left; max-width: 700px;
}
.feature-item {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--border);
  border-radius: 8px; padding: 12px 16px;
  font-size: 0.9rem; font-weight: 500;
  transition: var(--transition);
}
.feature-item:hover { border-color: var(--orange); background: rgba(232,93,4,0.03); transform: translateX(3px); }
.feature-item::before { content: '✓'; color: var(--orange); font-weight: 900; font-size: 0.85rem; flex-shrink: 0; }

/* =============================================
   SERVICES GRID
============================================= */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
  background: #fff; border-radius: var(--radius); padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--accent));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 54px; height: 54px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(232,93,4,0.1), rgba(248,168,50,0.1));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 18px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--orange), var(--accent));
  transform: scale(1.1);
}
.service-card h3 { margin-bottom: 12px; color: var(--navy); font-size: 1.1rem; }
.service-card p { color: var(--text-light); font-size: 0.92rem; line-height: 1.75; }
.service-link {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 18px; color: var(--orange); font-weight: 700; font-size: 0.88rem;
  transition: var(--transition);
}
.service-link:hover { gap: 10px; }

/* =============================================
   WHO WE SERVE
============================================= */
.serve-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.serve-card {
  background: #fff; border-radius: var(--radius); padding: 38px 30px;
  text-align: center; box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.serve-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--orange); }
.serve-emoji {
  font-size: 3rem; margin-bottom: 16px;
  display: inline-block; transition: var(--transition);
}
.serve-card:hover .serve-emoji { transform: scale(1.2) rotate(-5deg); }
.serve-card h3 { margin-bottom: 12px; color: var(--navy); }
.serve-card p { color: var(--text-light); font-size: 0.93rem; line-height: 1.75; }

/* =============================================
   WORKFLOW
============================================= */
.workflow-wrap { position: relative; }
.workflow-line {
  position: absolute; top: 30px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--accent), var(--orange));
  background-size: 200%;
  animation: shimmer 3s linear infinite;
}
.workflow-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; }
.workflow-step { text-align: center; padding-top: 10px; }
.step-number {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 900; margin: 0 auto 22px;
  box-shadow: 0 6px 20px rgba(232,93,4,0.35);
  transition: var(--transition); position: relative;
}
.step-number::before {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid rgba(232,93,4,0.3);
  transition: var(--transition);
}
.workflow-step:hover .step-number { transform: scale(1.12); box-shadow: 0 8px 30px rgba(232,93,4,0.5); }
.workflow-step h3 { margin-bottom: 10px; color: var(--navy); font-size: 1.05rem; }
.workflow-step p { color: var(--text-light); font-size: 0.88rem; line-height: 1.7; }

/* =============================================
   TESTIMONIALS
============================================= */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testimonial-card {
  background: #fff; border-radius: var(--radius); padding: 32px;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  transition: var(--transition); position: relative; overflow: hidden;
}
.testimonial-card::before {
  content: '"'; position: absolute; top: 10px; right: 20px;
  font-size: 6rem; color: rgba(232,93,4,0.06); font-family: Georgia, serif;
  line-height: 1; pointer-events: none;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stars { color: var(--accent); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { color: var(--text); font-style: italic; margin-bottom: 22px; line-height: 1.8; font-size: 0.95rem; }
.testimonial-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--border); padding-top: 18px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.93rem; color: var(--navy); }
.author-role { color: var(--text-light); font-size: 0.82rem; margin-top: 2px; }

/* =============================================
   PRICING
============================================= */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: start; }
.pricing-card {
  background: #fff; border-radius: var(--radius); padding: 42px 36px;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  text-align: center; position: relative; transition: var(--transition);
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  border-color: var(--orange); border-width: 2px;
  background: linear-gradient(180deg, #fff9f5 0%, #fff 100%);
  transform: scale(1.03);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-6px); }
.popular-badge {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #fff; padding: 6px 22px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 800; white-space: nowrap;
  box-shadow: 0 4px 12px rgba(232,93,4,0.35);
}
.pricing-name { font-size: 1.2rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.pricing-price { font-size: 2.8rem; font-weight: 900; color: var(--orange); line-height: 1.1; margin-bottom: 6px; }
.pricing-desc { color: var(--text-light); font-size: 0.88rem; margin-bottom: 28px; }
.pricing-features { text-align: left; margin-bottom: 32px; }
.pricing-features li {
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 0.9rem; display: flex; align-items: center; gap: 10px; color: var(--text);
}
.pricing-features li::before { content: '✓'; color: var(--orange); font-weight: 900; flex-shrink: 0; }
.pricing-card .btn { width: 100%; justify-content: center; }

/* =============================================
   FAQ
============================================= */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 12px; overflow: hidden;
  transition: var(--transition); background: #fff;
}
.faq-item:hover { border-color: rgba(232,93,4,0.3); }
.faq-item.active { border-color: var(--orange); box-shadow: 0 4px 20px rgba(232,93,4,0.1); }
.faq-question {
  width: 100%; text-align: left; padding: 20px 26px;
  background: transparent; border: none; cursor: pointer;
  font-size: 1rem; font-weight: 600; color: var(--navy);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; transition: var(--transition);
}
.faq-question:hover { color: var(--orange); }
.faq-item.active .faq-question { color: var(--orange); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 26px;
}
.faq-answer.open { max-height: 300px; padding: 0 26px 22px; }
.faq-answer p { color: var(--text-light); line-height: 1.78; font-size: 0.95rem; }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(232,93,4,0.1); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700; flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.active .faq-icon { transform: rotate(45deg); background: var(--orange); color: #fff; }

/* =============================================
   CONTACT
============================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; }
.contact-info-card {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy3) 100%);
  border-radius: var(--radius); padding: 40px; color: #fff;
}
.contact-info-card h3 { color: #fff; margin-bottom: 30px; font-size: 1.4rem; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 26px; align-items: flex-start; }
.contact-icon {
  width: 46px; height: 46px; border-radius: 10px;
  background: rgba(232,93,4,0.2); border: 1px solid rgba(232,93,4,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-info-item h4 { color: rgba(255,255,255,0.6); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-bottom: 5px; }
.contact-info-item p, .contact-info-item a { color: #fff; font-size: 0.95rem; font-weight: 500; }
.contact-info-item a:hover { color: var(--accent); }
.hours-table { margin-top: 6px; }
.hours-row { display: flex; justify-content: space-between; gap: 16px; padding: 5px 0; font-size: 0.88rem; }
.hours-row span:first-child { color: rgba(255,255,255,0.6); }
.hours-row span:last-child { color: #fff; font-weight: 600; }

.contact-form-wrap { background: #fff; border-radius: var(--radius); padding: 44px; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.contact-form-wrap h3 { margin-bottom: 8px; color: var(--navy); }
.contact-form-wrap p { color: var(--text-light); margin-bottom: 30px; font-size: 0.95rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 7px; font-size: 0.9rem; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 0.95rem; font-family: var(--font); color: var(--text);
  transition: var(--transition); background: var(--bg-light);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,93,4,0.1);
  background: #fff;
}
.form-group textarea { height: 140px; resize: vertical; }
.required-note { font-size: 0.8rem; color: var(--text-light); margin-top: 12px; }
.form-success {
  background: #f0fdf4; border: 1px solid #86efac; color: #166534;
  padding: 16px 20px; border-radius: var(--radius-sm); margin-bottom: 20px;
  font-weight: 600; display: flex; align-items: center; gap: 10px;
}

/* =============================================
   VALUES
============================================= */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card {
  background: #fff; border-radius: var(--radius); padding: 34px 26px;
  text-align: center; box-shadow: var(--shadow);
  border: 1px solid var(--border); transition: var(--transition);
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--orange); }
.value-icon { font-size: 2.5rem; margin-bottom: 14px; display: inline-block; transition: var(--transition); }
.value-card:hover .value-icon { transform: scale(1.2) rotate(-5deg); }
.value-card h3 { color: var(--orange); margin-bottom: 10px; }
.value-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }

/* =============================================
   TIMELINE
============================================= */
.timeline { max-width: 760px; margin: 0 auto; }
.timeline-item { display: flex; gap: 28px; margin-bottom: 0; }
.timeline-dot { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; }
.dot {
  width: 52px; height: 52px; background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 1rem;
  box-shadow: 0 4px 16px rgba(232,93,4,0.3); flex-shrink: 0;
}
.timeline-connector { width: 2px; flex: 1; background: linear-gradient(180deg, var(--orange), transparent); min-height: 40px; margin: 4px 0; }
.timeline-content { padding-bottom: 36px; padding-top: 8px; }
.timeline-year { font-weight: 800; color: var(--orange); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.timeline-content h3 { margin-bottom: 8px; color: var(--navy); }
.timeline-content p { color: var(--text-light); font-size: 0.93rem; line-height: 1.75; }

/* =============================================
   PAGE HERO (inner pages)
============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 50%, var(--navy3) 100%);
  color: #fff; padding: 140px 0 80px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -30%; right: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,93,4,0.15) 0%, transparent 65%);
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 36px 36px;
}
.page-hero h1, .page-hero h2 { color: #fff; margin-bottom: 14px; position: relative; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; position: relative; max-width: 580px; margin: 0 auto; }
.page-hero-label {
  display: inline-block; background: rgba(232,93,4,0.2); border: 1px solid rgba(232,93,4,0.4);
  color: #ffb347; font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; padding: 6px 16px; border-radius: 50px; margin-bottom: 18px; position: relative;
}

/* =============================================
   CTA BAND
============================================= */
.cta-band {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 50%, #b83b00 100%);
  background-size: 200%;
  animation: gradientShift 8s ease infinite;
  padding: 90px 0; text-align: center; color: #fff; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.1) 0%, transparent 70%);
}
.cta-band .container { position: relative; }
.cta-band h2 { color: #fff; margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.85); margin-bottom: 32px; font-size: 1.1rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =============================================
   FOOTER
============================================= */
#colophon {
  background: #0a0e1a;
  color: #a0aec0;
  padding: 80px 0 0;
  position: relative;
}
#colophon::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--accent), var(--orange));
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 50px; padding-bottom: 56px; }
.footer-brand-logo { font-size: 1.4rem; font-weight: 900; color: var(--orange); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.footer-brand p { color: #718096; font-size: 0.92rem; line-height: 1.8; max-width: 280px; margin-bottom: 20px; }
.footer-contact-links a, .footer-contact-links span {
  display: flex; align-items: center; gap: 8px;
  color: #718096; font-size: 0.88rem; margin-bottom: 8px; transition: var(--transition);
}
.footer-contact-links a:hover { color: var(--orange); }
.footer-col h4 { color: #fff; font-size: 0.95rem; font-weight: 700; margin-bottom: 22px; letter-spacing: 0.5px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: #718096; font-size: 0.88rem; transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-col ul a::before { content: '→'; color: var(--orange); font-size: 0.75rem; opacity: 0; transition: var(--transition); }
.footer-col ul a:hover { color: #fff; padding-left: 4px; }
.footer-col ul a:hover::before { opacity: 1; }
.newsletter-form { display: flex; gap: 8px; margin-top: 12px; }
.newsletter-form input {
  flex: 1; padding: 11px 14px; border-radius: var(--radius-sm);
  border: 1px solid #2d3748; background: #1a202c; color: #fff; font-size: 0.88rem;
  transition: var(--transition);
}
.newsletter-form input:focus { outline: none; border-color: var(--orange); }
.newsletter-form button {
  padding: 11px 18px; background: var(--orange); color: #fff;
  border: none; border-radius: var(--radius-sm); cursor: pointer;
  font-weight: 700; font-size: 0.88rem; transition: var(--transition);
}
.newsletter-form button:hover { background: var(--orange-light); }
.footer-bottom {
  border-top: 1px solid #1a202c; padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 0.84rem; color: #4a5568; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { color: #4a5568; font-size: 0.84rem; transition: var(--transition); }
.footer-links a:hover { color: var(--orange); }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-stats-card { display: none; }
  .services-grid, .about-grid, .serve-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .main-navigation { display: none; position: absolute; top: 78px; left: 0; right: 0; background: #fff; padding: 20px; box-shadow: var(--shadow-lg); border-top: 1px solid var(--border); z-index: 999; }
  .main-navigation.open { display: block; }
  .main-navigation ul { flex-direction: column; gap: 4px; }
  .main-navigation a { display: block; padding: 10px 14px; }
  .menu-toggle { display: flex; }
  .nav-phone { display: none; }
  .hero { padding: 120px 0 70px; min-height: auto; }
  .hero h1 { font-size: 2rem; }
  .services-grid, .about-grid, .serve-grid, .pricing-grid, .testimonials-grid, .values-grid { grid-template-columns: 1fr; }
  .workflow-steps { grid-template-columns: 1fr 1fr; }
  .workflow-line { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-block + .stat-block::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .features-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .pricing-card.featured { transform: none; }
}
