/*
Theme Name: TanjiWeb
Theme URI: https://tanjiweb.com
Author: Alfredo Galvez
Author URI: https://tanjiweb.com
Description: Custom WordPress theme for TanjiWeb — Houston-based web design for local businesses. Deep Navy, Warm Orange, and Cream palette.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tanjiweb
Tags: business, portfolio, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ============================================================
   TanjiWeb — Main Stylesheet
   Palette: Deep Navy · Warm Orange · Cream
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

/* ── Variables ──────────────────────────────────────────── */
:root {
  --navy:          #1B2E5E;
  --navy-light:    #243D7A;
  --navy-dark:     #111E3D;
  --orange:        #E87520;
  --orange-light:  #F4A535;
  --orange-dark:   #C5621A;
  --cream:         #FDF8F2;
  --cream-dark:    #F5EDE0;
  --white:         #FFFFFF;
  --dark:          #1A1A2E;
  --text:          #2D2D2D;
  --gray:          #6B7280;
  --border:        #E5DDD4;
  --shadow:        0 4px 24px rgba(27,46,94,0.10);
  --shadow-lg:     0 10px 40px rgba(27,46,94,0.16);
  --shadow-hover:  0 8px 32px rgba(232,117,32,0.22);
  --radius:        12px;
  --radius-sm:     8px;
  --radius-lg:     24px;
  --transition:    all 0.3s ease;
  --max-width:     1160px;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  { font-family:'Poppins',sans-serif; color:var(--text); background:var(--white); line-height:1.65; -webkit-font-smoothing:antialiased; }
img   { max-width:100%; display:block; }
a     { text-decoration:none; color:inherit; }
ul    { list-style:none; }
button { cursor:pointer; border:none; background:none; font-family:inherit; }

/* ── Typography ─────────────────────────────────────────── */
h1,h2,h3,h4 { line-height:1.2; font-weight:700; }
.serif { font-family:'Playfair Display',serif; }
.text-navy   { color:var(--navy); }
.text-orange { color:var(--orange); }
.text-gray   { color:var(--gray); }
.text-white  { color:var(--white); }
.text-center { text-align:center; }

/* ── Layout ─────────────────────────────────────────────── */
.container { max-width:var(--max-width); margin:0 auto; padding:0 24px; }
.section   { padding:88px 0; }
.section-sm{ padding:56px 0; }
.grid-2    { display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:center; }
.grid-3    { display:grid; grid-template-columns:repeat(3,1fr); gap:32px; }
.grid-4    { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.flex      { display:flex; }
.flex-center{ display:flex; align-items:center; justify-content:center; }
.flex-between{ display:flex; align-items:center; justify-content:space-between; }
.gap-16    { gap:16px; }
.gap-24    { gap:24px; }
.mt-8  { margin-top:8px; }
.mt-16 { margin-top:16px; }
.mt-24 { margin-top:24px; }
.mt-40 { margin-top:40px; }
.mb-8  { margin-bottom:8px; }
.mb-16 { margin-bottom:16px; }
.mb-24 { margin-bottom:24px; }
.mb-40 { margin-bottom:40px; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:14px 32px; border-radius:50px; font-weight:600;
  font-size:0.95rem; transition:var(--transition); letter-spacing:0.3px;
}
.btn-primary {
  background:var(--orange); color:var(--white);
  box-shadow:0 4px 16px rgba(232,117,32,0.35);
}
.btn-primary:hover { background:var(--orange-dark); transform:translateY(-2px); box-shadow:var(--shadow-hover); }
.btn-secondary {
  background:transparent; color:var(--navy);
  border:2px solid var(--navy);
}
.btn-secondary:hover { background:var(--navy); color:var(--white); transform:translateY(-2px); }
.btn-white {
  background:var(--white); color:var(--navy); font-weight:700;
  box-shadow:0 4px 16px rgba(0,0,0,0.12);
}
.btn-white:hover { background:var(--cream); transform:translateY(-2px); }
.btn-outline-white {
  background:transparent; color:var(--white);
  border:2px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover { background:rgba(255,255,255,0.12); transform:translateY(-2px); }
.btn-lg { padding:18px 40px; font-size:1.05rem; }

/* ── Badges / Labels ────────────────────────────────────── */
.badge {
  display:inline-block; padding:6px 16px; border-radius:50px;
  font-size:0.8rem; font-weight:600; letter-spacing:0.5px; text-transform:uppercase;
}
.badge-orange { background:rgba(232,117,32,0.12); color:var(--orange-dark); }
.badge-navy  { background:rgba(27,46,94,0.10); color:var(--navy); }
.badge-white { background:rgba(255,255,255,0.18); color:var(--white); }

/* ── Section Headers ────────────────────────────────────── */
.section-label {
  font-size:0.8rem; font-weight:600; letter-spacing:1.5px;
  text-transform:uppercase; color:var(--orange); margin-bottom:12px;
}
.section-title {
  font-size:clamp(1.75rem,3.5vw,2.6rem); font-weight:700;
  color:var(--navy); margin-bottom:16px;
}
.section-subtitle {
  font-size:1.05rem; color:var(--gray); max-width:580px;
  margin:0 auto; line-height:1.75;
}

/* ── Cards ──────────────────────────────────────────────── */
.card {
  background:var(--white); border-radius:var(--radius-lg);
  padding:36px 32px; box-shadow:var(--shadow);
  border:1px solid var(--border); transition:var(--transition);
}
.card:hover { box-shadow:var(--shadow-lg); transform:translateY(-4px); }
.card-icon {
  width:56px; height:56px; border-radius:14px;
  background:rgba(232,117,32,0.10); display:flex;
  align-items:center; justify-content:center; margin-bottom:20px;
  font-size:1.6rem;
}
.card-icon.navy { background:rgba(27,46,94,0.08); }
.card h3 { font-size:1.15rem; color:var(--navy); margin-bottom:10px; }
.card p  { color:var(--gray); font-size:0.95rem; line-height:1.7; }

/* ── Nav ────────────────────────────────────────────────── */
.navbar {
  position:sticky; top:0; z-index:1000;
  background:rgba(255,255,255,0.97); backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border);
  padding:0 24px; height:72px;
}
.nav-inner {
  max-width:var(--max-width); margin:0 auto; height:100%;
  display:flex; align-items:center; justify-content:space-between;
}
.nav-logo {
  display:flex; align-items:center; gap:12px;
}
.nav-logo-text {
  font-size:1.35rem; font-weight:800; color:var(--navy);
  letter-spacing:-0.5px;
}
.nav-logo-text span { color:var(--orange); }

/* wp_nav_menu() outputs a ul > li > a structure */
.nav-links { display:flex; align-items:center; }
.nav-links ul { display:flex; align-items:center; gap:8px; list-style:none; margin:0; padding:0; }
.nav-links ul li a {
  padding:8px 16px; border-radius:8px; font-size:0.9rem;
  font-weight:500; color:var(--text); transition:var(--transition);
  display:block;
}
.nav-links ul li a:hover,
.nav-links ul li.current-menu-item a,
.nav-links ul li.current_page_item a,
.nav-links ul li.current-menu-ancestor a {
  color:var(--orange); background:rgba(232,117,32,0.08);
}
.nav-cta { margin-left:16px; }
.hamburger { display:none; flex-direction:column; gap:5px; padding:8px; cursor:pointer; }
.hamburger span { display:block; width:24px; height:2px; background:var(--navy); border-radius:2px; transition:var(--transition); }

/* Mobile nav */
.mobile-menu {
  display:none; position:absolute; top:72px; left:0; right:0;
  background:var(--white); border-bottom:1px solid var(--border);
  padding:16px 24px 24px; flex-direction:column; gap:4px;
  box-shadow:0 8px 24px rgba(0,0,0,0.08); z-index:999;
}
.mobile-menu ul { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:4px; }
.mobile-menu ul li a { padding:12px 16px; border-radius:8px; font-weight:500; color:var(--text); display:block; }
.mobile-menu ul li a:hover { color:var(--orange); background:rgba(232,117,32,0.08); }
.mobile-menu .btn { margin-top:8px; justify-content:center; }
.mobile-menu.open { display:flex; }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  background:linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #2A4580 100%);
  padding:100px 0 80px; position:relative; overflow:hidden;
}
.hero::before {
  content:''; position:absolute; inset:0;
  background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position:relative; z-index:2; }
.hero h1 {
  font-size:clamp(2.2rem,5vw,3.6rem); color:var(--white);
  line-height:1.15; margin-bottom:20px;
}
.hero h1 em { color:var(--orange-light); font-style:normal; }
.hero p {
  font-size:1.1rem; color:rgba(255,255,255,0.80);
  max-width:520px; margin-bottom:40px; line-height:1.8;
}
.hero-btns { display:flex; gap:16px; flex-wrap:wrap; }
.hero-visual { position:relative; display:flex; justify-content:center; align-items:center; }
.hero-stats {
  display:flex; gap:40px; margin-top:56px; padding-top:40px;
  border-top:1px solid rgba(255,255,255,0.15);
}
.hero-stat-number { font-size:2rem; font-weight:800; color:var(--orange-light); }
.hero-stat-label  { font-size:0.85rem; color:rgba(255,255,255,0.6); margin-top:2px; }

/* ── Page Hero (interior pages) ────────────────────────── */
.page-hero {
  background:linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding:72px 0 64px; text-align:center; position:relative; overflow:hidden;
}
.page-hero::before {
  content:''; position:absolute; inset:0;
  background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 { font-size:clamp(1.9rem,4vw,3rem); color:var(--white); margin-bottom:14px; position:relative; }
.page-hero p  { font-size:1.05rem; color:rgba(255,255,255,0.75); max-width:520px; margin:0 auto; position:relative; }

/* ── Divider ─────────────────────────────────────────────── */
.divider-paw {
  text-align:center; padding:8px 0; color:var(--border); font-size:1.4rem;
}

/* ── Process Steps ──────────────────────────────────────── */
.steps-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:0; }
.step {
  padding:48px 36px; position:relative; text-align:center;
  border-right:1px solid var(--border);
}
.step:last-child { border-right:none; }
.step-number {
  width:56px; height:56px; border-radius:50%; background:var(--orange);
  color:var(--white); font-size:1.4rem; font-weight:800;
  display:flex; align-items:center; justify-content:center; margin:0 auto 20px;
  box-shadow:0 4px 16px rgba(232,117,32,0.35);
}
.step h3 { font-size:1.1rem; color:var(--navy); margin-bottom:10px; }
.step p  { color:var(--gray); font-size:0.9rem; line-height:1.75; }
.step-arrow {
  position:absolute; right:-20px; top:50%; transform:translateY(-50%);
  color:var(--orange-light); font-size:1.5rem; z-index:2;
}

/* ── Pricing Cards ──────────────────────────────────────── */
.pricing-card {
  background:var(--white); border-radius:var(--radius-lg);
  padding:40px 32px; border:2px solid var(--border);
  transition:var(--transition); position:relative;
}
.pricing-card.featured {
  border-color:var(--orange); box-shadow:0 8px 40px rgba(232,117,32,0.18);
  transform:scale(1.03);
}
.pricing-card:hover { box-shadow:var(--shadow-lg); }
.pricing-badge {
  position:absolute; top:-14px; left:50%; transform:translateX(-50%);
  background:var(--orange); color:var(--white); padding:4px 20px;
  border-radius:50px; font-size:0.78rem; font-weight:700;
  letter-spacing:0.5px; text-transform:uppercase; white-space:nowrap;
}
.pricing-name  { font-size:1rem; font-weight:600; color:var(--gray); margin-bottom:8px; text-transform:uppercase; letter-spacing:0.5px; }
.pricing-price { font-size:3rem; font-weight:800; color:var(--navy); line-height:1; }
.pricing-price sup { font-size:1.2rem; vertical-align:super; font-weight:600; }
.pricing-price sub { font-size:1rem; font-weight:500; color:var(--gray); }
.pricing-desc  { color:var(--gray); font-size:0.9rem; margin:12px 0 24px; }
.pricing-list  { margin-bottom:32px; }
.pricing-list li {
  display:flex; align-items:flex-start; gap:10px;
  font-size:0.9rem; color:var(--text); padding:8px 0;
  border-bottom:1px solid var(--border);
}
.pricing-list li:last-child { border-bottom:none; }
.pricing-list .check { color:var(--orange); flex-shrink:0; font-weight:700; }
.pricing-list .x     { color:#D1D5DB; flex-shrink:0; }

/* ── Form ───────────────────────────────────────────────── */
.form-group { margin-bottom:20px; }
.form-label { display:block; font-size:0.9rem; font-weight:600; color:var(--navy); margin-bottom:6px; }
.form-input, .form-textarea, .form-select {
  width:100%; padding:13px 16px; border:1.5px solid var(--border);
  border-radius:var(--radius-sm); font-family:'Poppins',sans-serif;
  font-size:0.95rem; color:var(--text); transition:var(--transition);
  background:var(--white);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline:none; border-color:var(--orange); box-shadow:0 0 0 3px rgba(232,117,32,0.12);
}
.form-textarea { resize:vertical; min-height:140px; }
.form-grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.form-error { border-color:var(--orange-dark) !important; }
.form-success-msg {
  background:rgba(16,185,129,0.08); border:1.5px solid rgba(16,185,129,0.3);
  border-radius:var(--radius); padding:20px; text-align:center;
  color:#065F46; font-size:0.95rem; margin-top:20px;
}
.form-error-msg {
  background:rgba(239,68,68,0.08); border:1.5px solid rgba(239,68,68,0.3);
  border-radius:var(--radius); padding:16px; color:#991B1B;
  font-size:0.9rem; margin-bottom:20px;
}

/* ── Portfolio Grid ─────────────────────────────────────── */
.portfolio-card {
  border-radius:var(--radius-lg); overflow:hidden;
  box-shadow:var(--shadow); transition:var(--transition);
  background:var(--white); border:1px solid var(--border);
}
.portfolio-card:hover { box-shadow:var(--shadow-lg); transform:translateY(-4px); }
.portfolio-thumb {
  width:100%; height:200px; object-fit:cover;
  background:linear-gradient(135deg,var(--cream-dark),var(--cream));
  display:flex; align-items:center; justify-content:center;
  font-size:3rem; color:var(--border);
}
.portfolio-info { padding:20px 24px; }
.portfolio-info h3 { font-size:1rem; color:var(--navy); margin-bottom:4px; }
.portfolio-info p  { font-size:0.85rem; color:var(--gray); }
.portfolio-tag {
  display:inline-block; padding:3px 12px; border-radius:50px;
  background:rgba(232,117,32,0.10); color:var(--orange-dark);
  font-size:0.75rem; font-weight:600; margin-top:10px;
}

/* ── Testimonial ────────────────────────────────────────── */
.testimonial-card {
  background:var(--white); border-radius:var(--radius-lg);
  padding:32px; border:1px solid var(--border); box-shadow:var(--shadow);
}
.testimonial-stars { color:var(--orange-light); font-size:1.1rem; margin-bottom:14px; letter-spacing:2px; }
.testimonial-text { font-size:0.97rem; color:var(--text); line-height:1.75; font-style:italic; margin-bottom:20px; }
.testimonial-author { display:flex; align-items:center; gap:12px; }
.testimonial-avatar {
  width:44px; height:44px; border-radius:50%;
  background:linear-gradient(135deg,var(--orange),var(--orange-light));
  display:flex; align-items:center; justify-content:center;
  color:var(--white); font-weight:700; font-size:0.95rem;
}
.testimonial-name { font-weight:600; font-size:0.9rem; color:var(--navy); }
.testimonial-biz  { font-size:0.82rem; color:var(--gray); }

/* ── CTA Band ───────────────────────────────────────────── */
.cta-band {
  background:linear-gradient(135deg, var(--orange-dark), var(--orange), var(--orange-light));
  padding:80px 0; text-align:center;
}
.cta-band h2 { font-size:clamp(1.7rem,3.5vw,2.6rem); color:var(--white); margin-bottom:14px; }
.cta-band p  { font-size:1.05rem; color:rgba(255,255,255,0.88); margin-bottom:36px; max-width:520px; margin-left:auto; margin-right:auto; }
.cta-btns { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* ── FAQ ────────────────────────────────────────────────── */
.faq-item {
  border-bottom:1px solid var(--border); padding:24px 0;
}
.faq-question {
  font-size:1rem; font-weight:600; color:var(--navy);
  cursor:pointer; display:flex; justify-content:space-between; align-items:center;
  gap:16px;
}
.faq-question .icon { color:var(--orange); font-size:1.2rem; flex-shrink:0; }
.faq-answer { font-size:0.95rem; color:var(--gray); line-height:1.75; padding-top:12px; }

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  background:var(--navy-dark); color:rgba(255,255,255,0.75);
  padding:64px 0 0;
}
.footer-grid {
  display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px;
  padding-bottom:48px; border-bottom:1px solid rgba(255,255,255,0.1);
}
.footer-brand p  { font-size:0.9rem; line-height:1.75; margin:14px 0 20px; max-width:280px; }
.footer-col h4   { font-size:0.85rem; font-weight:700; color:var(--white); text-transform:uppercase; letter-spacing:1px; margin-bottom:20px; }
.footer-col ul   { list-style:none; margin:0; padding:0; }
.footer-col ul li{ margin-bottom:10px; }
.footer-col ul li a { font-size:0.9rem; transition:var(--transition); color:rgba(255,255,255,0.65); }
.footer-col ul li a:hover { color:var(--orange-light); }
.footer-social { display:flex; gap:10px; margin-top:4px; }
.social-icon {
  width:38px; height:38px; border-radius:10px;
  background:rgba(255,255,255,0.08); display:flex;
  align-items:center; justify-content:center; font-size:1rem;
  color:rgba(255,255,255,0.7); transition:var(--transition);
}
.social-icon:hover { background:var(--orange); color:var(--white); transform:translateY(-2px); }
.footer-bottom {
  padding:20px 0; text-align:center;
  font-size:0.85rem; color:rgba(255,255,255,0.45);
}
.footer-bottom span { color:var(--orange-light); }

/* ── Background Variants ────────────────────────────────── */
.bg-cream   { background:var(--cream); }
.bg-navy    { background:var(--navy); }
.bg-orange  { background:var(--orange); }
.bg-white   { background:var(--white); }
.bg-pattern {
  background-color:var(--cream);
  background-image:radial-gradient(var(--border) 1px, transparent 1px);
  background-size:24px 24px;
}

/* ── Trust Badges Strip ─────────────────────────────────── */
.trust-badges {
  background:var(--white); padding:32px 0;
  border-bottom:1px solid var(--border);
}
.badges-inner {
  max-width:var(--max-width); margin:0 auto; padding:0 24px;
  display:flex; align-items:center; justify-content:center; gap:20px; flex-wrap:wrap;
}
.trust-badge {
  display:flex; align-items:center; gap:10px; padding:12px 20px;
  border:1.5px solid var(--border); border-radius:var(--radius);
  background:var(--white); transition:var(--transition);
}
.trust-badge:hover { border-color:var(--orange); box-shadow:var(--shadow); }
.trust-badge-icon { font-size:1.4rem; flex-shrink:0; }
.trust-badge-text { line-height:1.3; }
.trust-badge-label { font-size:0.7rem; font-weight:600; text-transform:uppercase;
  letter-spacing:0.5px; color:var(--gray); }
.trust-badge-value { font-size:0.9rem; font-weight:700; color:var(--navy); }
.trust-badge-stars { color:var(--orange-light); font-size:0.85rem; letter-spacing:1px; }

/* ── Trust Bar ──────────────────────────────────────────── */
.trust-bar {
  background:var(--cream); padding:20px 0;
  border-bottom:1px solid var(--border);
}
.trust-inner {
  max-width:var(--max-width); margin:0 auto; padding:0 24px;
  display:flex; align-items:center; justify-content:center; gap:40px; flex-wrap:wrap;
}
.trust-item { display:flex; align-items:center; gap:8px; font-size:0.88rem; font-weight:500; color:var(--gray); }
.trust-item i { color:var(--orange); font-size:1rem; }

/* ── Feature List ───────────────────────────────────────── */
.feature-list { margin-top:24px; display:flex; flex-direction:column; gap:12px; }
.feature-item { display:flex; align-items:flex-start; gap:12px; }
.feature-icon { color:var(--orange); font-size:1rem; margin-top:2px; flex-shrink:0; }
.feature-text { font-size:0.95rem; color:var(--text); line-height:1.6; }
.feature-text strong { color:var(--navy); }

/* ── Service Areas Section ──────────────────────────────── */
.areas-section { padding:64px 0; background:var(--navy); }
.areas-grid {
  display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin-top:32px;
}
.area-tag {
  display:inline-flex; align-items:center; gap:6px;
  padding:9px 18px; border-radius:50px;
  border:1px solid rgba(255,255,255,0.18); color:rgba(255,255,255,0.8);
  font-size:0.88rem; font-weight:500; transition:var(--transition);
  background:rgba(255,255,255,0.05);
}
.area-tag:hover { background:var(--orange); border-color:var(--orange); color:white; }
.area-tag i { color:var(--orange-light); font-size:0.75rem; }
.area-tag.primary { background:var(--orange); border-color:var(--orange); color:white; font-weight:600; }
.area-tag.primary i { color:white; }

/* ── About Page ─────────────────────────────────────────── */
.about-intro { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.about-visual {
  border-radius:var(--radius-lg); overflow:hidden;
  background:linear-gradient(135deg,var(--navy-dark),var(--navy));
  height:400px; display:flex; align-items:center; justify-content:center;
  position:relative;
}
.about-visual-inner { text-align:center; position:relative; z-index:2; }
.about-visual-inner p { color:rgba(255,255,255,0.6); font-size:0.88rem; margin-top:12px; }
.values-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }
.value-card {
  background:var(--cream); border-radius:var(--radius); padding:24px;
  border:1px solid var(--border);
}
.value-card h4 { color:var(--navy); font-size:0.95rem; margin-bottom:6px; }
.value-card p  { color:var(--gray); font-size:0.88rem; line-height:1.65; }
.value-icon { font-size:1.5rem; margin-bottom:10px; }

/* ── Founder Card ───────────────────────────────────────── */
.founder-card {
  background:var(--white); border-radius:var(--radius-lg);
  border:1px solid var(--border); box-shadow:var(--shadow);
  padding:40px; display:flex; gap:36px; align-items:flex-start;
}
.founder-avatar {
  width:110px; height:110px; border-radius:50%; flex-shrink:0;
  background:linear-gradient(135deg, var(--orange-dark), var(--orange-light));
  display:flex; align-items:center; justify-content:center;
  font-size:2.6rem; font-weight:800; color:var(--white);
  box-shadow:0 4px 16px rgba(232,117,32,0.35);
}
.founder-name { font-size:1.4rem; font-weight:700; color:var(--navy); margin-bottom:4px; }
.founder-title { font-size:0.9rem; color:var(--orange); font-weight:600; margin-bottom:16px; }
.founder-bio { font-size:0.97rem; color:var(--text); line-height:1.8; }
.founder-bio p { margin-bottom:14px; }
.founder-bio p:last-child { margin-bottom:0; }
.founder-links { display:flex; gap:10px; margin-top:20px; }
.founder-social {
  display:inline-flex; align-items:center; gap:8px; padding:8px 16px;
  border-radius:8px; font-size:0.85rem; font-weight:600;
  border:1.5px solid var(--border); color:var(--text); transition:var(--transition);
}
.founder-social:hover { border-color:var(--orange); color:var(--orange); background:rgba(232,117,32,0.05); }
.promise-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.promise-card {
  background:var(--white); border-radius:var(--radius-lg);
  border:1px solid var(--border); padding:32px 28px;
  text-align:center; transition:var(--transition);
}
.promise-card:hover { box-shadow:var(--shadow-lg); transform:translateY(-4px); }
.promise-icon {
  width:60px; height:60px; border-radius:16px; margin:0 auto 18px;
  background:rgba(232,117,32,0.1); display:flex; align-items:center;
  justify-content:center; font-size:1.6rem;
}
.promise-card h3 { font-size:1rem; color:var(--navy); margin-bottom:8px; }
.promise-card p  { font-size:0.9rem; color:var(--gray); line-height:1.7; }
.process-list { display:flex; flex-direction:column; gap:0; }
.process-item {
  display:flex; gap:24px; align-items:flex-start;
  padding:28px 0; border-bottom:1px solid var(--border);
}
.process-item:last-child { border-bottom:none; }
.process-num {
  width:48px; height:48px; border-radius:50%; background:var(--orange);
  color:white; font-size:1.2rem; font-weight:800; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 12px rgba(232,117,32,0.35);
}
.process-item h3 { font-size:1rem; color:var(--navy); margin-bottom:6px; font-weight:700; }
.process-item p  { font-size:0.92rem; color:var(--gray); line-height:1.75; }
.stat-row {
  display:grid; grid-template-columns:repeat(4,1fr); gap:24px;
  padding:48px 0; border-top:1px solid var(--border); border-bottom:1px solid var(--border);
  margin:48px 0;
}
.stat-item { text-align:center; }
.stat-num  { font-size:2.4rem; font-weight:800; color:var(--orange); line-height:1; }
.stat-label{ font-size:0.85rem; color:var(--gray); margin-top:6px; }

/* ── Services Page ──────────────────────────────────────── */
.service-detail {
  display:grid; grid-template-columns:1fr 1fr; gap:64px;
  align-items:center; padding:72px 0;
  border-bottom:1px solid var(--border);
}
.service-detail:last-child { border-bottom:none; }
.service-detail.reverse .service-text { order:2; }
.service-detail.reverse .service-visual { order:1; }
.service-visual {
  border-radius:var(--radius-lg); overflow:hidden;
  background:linear-gradient(135deg, var(--navy), var(--navy-light));
  height:340px; display:flex; align-items:center; justify-content:center;
  position:relative;
}
.service-visual-icon { font-size:6rem; opacity:0.25; color:white; }
.service-visual-badge {
  position:absolute; bottom:24px; left:24px; right:24px;
  background:rgba(255,255,255,0.1); backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,0.15); border-radius:12px;
  padding:16px 20px;
}
.service-visual-badge p { color:rgba(255,255,255,0.9); font-size:0.88rem; line-height:1.5; }
.includes-list { margin-top:20px; display:flex; flex-direction:column; gap:10px; }
.includes-item { display:flex; align-items:flex-start; gap:10px; font-size:0.95rem; }
.includes-item i { color:var(--orange); margin-top:2px; flex-shrink:0; }
.addon-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }
.addon-card {
  border:1.5px solid var(--border); border-radius:var(--radius);
  padding:24px; transition:var(--transition);
}
.addon-card:hover { border-color:var(--orange); box-shadow:var(--shadow); }
.addon-card h4 { font-size:1rem; color:var(--navy); margin-bottom:6px; }
.addon-card p  { font-size:0.88rem; color:var(--gray); line-height:1.65; }
.addon-price  { font-size:0.88rem; font-weight:700; color:var(--orange); margin-top:10px; }

/* ── Portfolio Page ─────────────────────────────────────── */
.filter-bar {
  display:flex; gap:10px; justify-content:center; flex-wrap:wrap; margin-bottom:48px;
}
.filter-btn {
  padding:9px 22px; border-radius:50px; font-size:0.88rem; font-weight:600;
  border:1.5px solid var(--border); color:var(--gray); background:var(--white);
  cursor:pointer; transition:var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background:var(--navy); color:var(--white); border-color:var(--navy);
}
.portfolio-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.port-card {
  border-radius:var(--radius-lg); overflow:hidden;
  background:var(--white); border:1px solid var(--border);
  box-shadow:var(--shadow); transition:var(--transition);
}
.port-card:hover { box-shadow:var(--shadow-lg); transform:translateY(-5px); }
.port-thumb {
  height:220px; position:relative; overflow:hidden;
  display:flex; align-items:center; justify-content:center;
}
.port-thumb-icon { font-size:4rem; opacity:0.35; color:white; }
.port-overlay {
  position:absolute; inset:0; background:rgba(0,0,0,0.5);
  display:flex; align-items:center; justify-content:center;
  opacity:0; transition:var(--transition);
}
.port-card:hover .port-overlay { opacity:1; }
.port-overlay a {
  color:white; font-size:0.9rem; font-weight:600; border:2px solid white;
  padding:10px 24px; border-radius:50px; transition:var(--transition);
}
.port-overlay a:hover { background:white; color:var(--navy); }
.port-info { padding:22px 24px; }
.port-info h3 { font-size:1rem; font-weight:700; color:var(--navy); margin-bottom:4px; }
.port-info p  { font-size:0.85rem; color:var(--gray); }
.port-meta   { display:flex; align-items:center; justify-content:space-between; margin-top:12px; }
.port-tag {
  display:inline-block; padding:3px 12px; border-radius:50px;
  background:rgba(232,117,32,0.10); color:var(--orange-dark);
  font-size:0.75rem; font-weight:600;
}
.port-date { font-size:0.78rem; color:var(--gray); }
.thumb-restaurant { background:linear-gradient(135deg,#C0392B,#E74C3C); }
.thumb-salon      { background:linear-gradient(135deg,#8E44AD,#9B59B6); }
.thumb-trade      { background:linear-gradient(135deg,#1B2E5E,#2A4580); }
.thumb-retail     { background:linear-gradient(135deg,#16A085,#1ABC9C); }
.thumb-health     { background:linear-gradient(135deg,#2980B9,#3498DB); }
.thumb-food       { background:linear-gradient(135deg,#D35400,#E67E22); }
.coming-soon {
  background:var(--cream); border:2px dashed var(--border);
  border-radius:var(--radius-lg); padding:48px 32px;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center; min-height:320px; grid-column:span 3;
}

/* ── Pricing Page ───────────────────────────────────────── */
.pricing-section { padding:88px 0; }
.pricing-grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; max-width:1000px; margin:0 auto; }
.design-fee-card {
  background:linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius:var(--radius-lg); padding:48px;
  display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center;
  max-width:900px; margin:0 auto;
}
.design-fee-card h2 { color:var(--white); font-size:2rem; margin-bottom:12px; }
.design-fee-card p  { color:rgba(255,255,255,0.75); line-height:1.75; }
.design-fee-price   { background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.15); border-radius:var(--radius-lg); padding:36px; text-align:center; }
.design-fee-price .amount { font-size:3.5rem; font-weight:800; color:var(--orange-light); }
.design-fee-price .from   { font-size:0.9rem; color:rgba(255,255,255,0.55); margin-bottom:8px; }
.design-fee-price .note   { font-size:0.82rem; color:rgba(255,255,255,0.5); margin-top:12px; line-height:1.5; }
.design-features { margin-top:24px; display:flex; flex-direction:column; gap:10px; }
.design-feature  { display:flex; align-items:flex-start; gap:10px; font-size:0.92rem; color:rgba(255,255,255,0.85); }
.design-feature i { color:var(--orange-light); flex-shrink:0; margin-top:2px; }
.faq-grid { display:grid; grid-template-columns:1fr 1fr; gap:0 48px; }
.compare-table { width:100%; border-collapse:collapse; }
.compare-table th { padding:14px 20px; font-size:0.82rem; text-transform:uppercase; letter-spacing:1px; font-weight:700; }
.compare-table th:first-child { text-align:left; color:var(--gray); }
.compare-table th:not(:first-child) { text-align:center; color:var(--white); }
.compare-table th.active-col { background:var(--orange); border-radius:12px 12px 0 0; }
.compare-table td { padding:14px 20px; border-bottom:1px solid var(--border); font-size:0.9rem; }
.compare-table td:first-child { color:var(--text); font-weight:500; }
.compare-table td:not(:first-child) { text-align:center; }
.compare-table td.active-col { background:rgba(232,117,32,0.05); }
.compare-table tr:last-child td { border-bottom:none; }
.check-green { color:var(--orange); font-weight:700; font-size:1.1rem; }
.x-gray { color:#D1D5DB; font-weight:700; }

/* ── Contact Page ───────────────────────────────────────── */
.contact-grid {
  display:grid; grid-template-columns:1.4fr 1fr; gap:64px; align-items:start;
}
.contact-info-card {
  background:linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius:var(--radius-lg); padding:40px; color:rgba(255,255,255,0.85);
}
.contact-info-card h3 { color:var(--white); font-size:1.3rem; margin-bottom:8px; }
.contact-info-card p  { font-size:0.92rem; line-height:1.75; margin-bottom:28px; }
.contact-item { display:flex; align-items:flex-start; gap:14px; margin-bottom:22px; }
.contact-icon {
  width:42px; height:42px; border-radius:10px;
  background:rgba(232,117,32,0.2); flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  color:var(--orange-light); font-size:1rem;
}
.contact-item-label { font-size:0.78rem; text-transform:uppercase; letter-spacing:1px; color:rgba(255,255,255,0.5); font-weight:600; }
.contact-item-value { font-size:0.95rem; color:var(--white); margin-top:2px; }
.contact-item-value a { color:var(--orange-light); }
.contact-item-value a:hover { text-decoration:underline; }
.social-row { display:flex; gap:10px; margin-top:8px; }
.form-card {
  background:var(--white); border-radius:var(--radius-lg);
  border:1px solid var(--border); padding:40px; box-shadow:var(--shadow);
}
.form-card h2 { font-size:1.5rem; color:var(--navy); margin-bottom:6px; }
.form-card .subtitle { font-size:0.92rem; color:var(--gray); margin-bottom:28px; }
.step-mini {
  display:flex; gap:16px; align-items:flex-start; padding:16px 0;
  border-bottom:1px solid var(--border);
}
.step-mini:last-child { border-bottom:none; }
.step-mini-num {
  width:32px; height:32px; border-radius:50%; background:rgba(232,117,32,0.1);
  color:var(--orange); font-size:0.85rem; font-weight:700;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.step-mini h4 { font-size:0.9rem; font-weight:600; color:var(--navy); margin-bottom:3px; }
.step-mini p  { font-size:0.83rem; color:var(--gray); line-height:1.5; }
.required-star { color:var(--orange); margin-left:3px; }

/* ── Skip Link ──────────────────────────────────────────── */
.skip-link {
  position:absolute; top:-48px; left:0; z-index:9999;
  background:var(--orange); color:var(--white);
  padding:10px 20px; border-radius:0 0 8px 0;
  font-size:0.9rem; font-weight:600;
  transition:top 0.2s ease;
}
.skip-link:focus { top:0; }

/* ── Top Bar ────────────────────────────────────────────── */
.topbar {
  background:var(--navy-dark); padding:9px 0;
  font-size:0.8rem; border-bottom:1px solid rgba(255,255,255,0.06);
}
.topbar-inner {
  max-width:var(--max-width); margin:0 auto; padding:0 24px;
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:8px;
}
.topbar-left { display:flex; align-items:center; gap:6px; color:rgba(255,255,255,0.65); }
.topbar-left i { color:var(--orange-light); }
.topbar-right { display:flex; gap:24px; }
.topbar-right a {
  color:rgba(255,255,255,0.65); display:flex; align-items:center; gap:6px;
  transition:var(--transition);
}
.topbar-right a:hover { color:var(--orange-light); }
.topbar-right i { font-size:0.8rem; }

/* ── Home page specific ─────────────────────────────────── */
.hero-content { max-width:720px; margin:0 auto; text-align:center; }
.hero-content p { margin-left:auto; margin-right:auto; }
.hero-btns { justify-content:center; }
.hero-stats { justify-content:center; }
.why-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }

/* ── 404 ────────────────────────────────────────────────── */
.error-404-section { padding:120px 0; text-align:center; }
.error-404-section h1 { font-size:6rem; color:var(--orange); line-height:1; margin-bottom:16px; }
.error-404-section h2 { font-size:1.8rem; color:var(--navy); margin-bottom:16px; }
.error-404-section p  { color:var(--gray); font-size:1.05rem; margin-bottom:36px; max-width:480px; margin-left:auto; margin-right:auto; }

/* ── WordPress default styles ────────────────────────────── */
.wp-caption { max-width:100%; }
.wp-caption-text { font-size:0.85rem; color:var(--gray); margin-top:8px; }
.alignleft { float:left; margin:0 24px 16px 0; }
.alignright { float:right; margin:0 0 16px 24px; }
.aligncenter { display:block; margin:0 auto 16px; }
.screen-reader-text {
  border:0; clip:rect(1px,1px,1px,1px); clip-path:inset(50%);
  height:1px; margin:-1px; overflow:hidden; padding:0;
  position:absolute; width:1px; word-wrap:normal !important;
}
.screen-reader-text:focus {
  clip:auto; clip-path:none; height:auto;
  left:5px; top:5px; width:auto; z-index:100000;
  background:var(--white); padding:10px 20px; border-radius:4px;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; gap:36px; }
  .portfolio-grid { grid-template-columns:repeat(2,1fr); }
  .coming-soon { grid-column:span 2; }
  .pricing-grid-3 { grid-template-columns:1fr; max-width:420px; }
  .design-fee-card { grid-template-columns:1fr; gap:24px; padding:32px; }
  .faq-grid { grid-template-columns:1fr; }
}

@media (max-width: 900px) {
  .about-intro { grid-template-columns:1fr; }
  .values-grid { grid-template-columns:1fr; }
  .promise-grid { grid-template-columns:1fr; }
  .stat-row { grid-template-columns:repeat(2,1fr); }
}

@media (max-width: 768px) {
  .section   { padding:64px 0; }
  .grid-2, .grid-3, .steps-grid { grid-template-columns:1fr; }
  .step  { border-right:none; border-bottom:1px solid var(--border); }
  .step:last-child { border-bottom:none; }
  .step-arrow { display:none; }
  .hero  { padding:72px 0 64px; }
  .hero-stats { gap:24px; flex-wrap:wrap; }
  .pricing-card.featured { transform:none; }
  .form-grid-2 { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; gap:32px; }
  .nav-links, .nav-cta { display:none; }
  .hamburger  { display:flex; }
  .mobile-menu.open { display:flex; }
  .service-detail { grid-template-columns:1fr; gap:32px; }
  .service-detail.reverse .service-text,
  .service-detail.reverse .service-visual { order:unset; }
  .addon-grid { grid-template-columns:1fr; }
  .contact-grid { grid-template-columns:1fr; }
  .founder-card { flex-direction:column; align-items:center; text-align:center; }
  .founder-links { justify-content:center; }
  .why-grid { grid-template-columns:1fr; }
}

@media (max-width: 640px) {
  .topbar-left { display:none; }
  .topbar-inner { justify-content:center; }
  .portfolio-grid { grid-template-columns:1fr; }
  .coming-soon { grid-column:span 1; }
}

@media (max-width: 480px) {
  .container  { padding:0 16px; }
  .hero h1    { font-size:2rem; }
  .hero-btns  { flex-direction:column; }
  .btn        { justify-content:center; }
  .grid-4     { grid-template-columns:1fr; }
  .hero-stats { flex-direction:column; gap:16px; }
  .stat-row { grid-template-columns:1fr 1fr; }
}
