/* =====================================================
   BRIGHTTRAIL MARKETING — GLOBAL STYLESHEET
   Fonts: League Spartan (headings), Montserrat (body)
   Colors: #193950 | #f6440c | #ffdd58 | #000 | #fff
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@300;400;500;600;700;800;900&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,500&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --navy:   #193950;
  --orange: #f6440c;
  --yellow: #ffdd58;
  --black:  #000000;
  --white:  #ffffff;
  --gray-100: #f5f5f5;
  --gray-200: #e8e8e8;
  --gray-400: #9a9a9a;
  --gray-600: #555555;
  --gray-800: #222222;
  --navy-light: #1e4a6b;
  --navy-dark:  #0f2333;
  --orange-dark: #d93600;
  --yellow-dark: #e6c800;
  --font-heading: 'League Spartan', sans-serif;
  --font-body:    'Montserrat', sans-serif;
  --max-w: 1200px;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 48px rgba(0,0,0,.16);
  --transition: .22s ease;
}

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

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); font-weight: 800; line-height: 1.1; letter-spacing: -.02em; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p  { font-size: 1.0625rem; line-height: 1.75; color: var(--gray-600); }
.lead { font-size: 1.2rem; line-height: 1.7; }
.small { font-size: .875rem; }
.overline { font-family: var(--font-heading); font-size: .75rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }

/* ===== LAYOUT ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 128px 0; }

/* ===== GRID ===== */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr)); gap: 32px; }

/* ===== UTILITIES ===== */
.text-center  { text-align: center; }
.text-left    { text-align: left; }
.text-white   { color: var(--white); }
.text-navy    { color: var(--navy); }
.text-orange  { color: var(--orange); }
.text-yellow  { color: var(--yellow); }
.text-gray    { color: var(--gray-600); }
.bg-navy      { background: var(--navy); }
.bg-navy-dark { background: var(--navy-dark); }
.bg-orange    { background: var(--orange); }
.bg-yellow    { background: var(--yellow); }
.bg-black     { background: var(--black); }
.bg-gray      { background: var(--gray-100); }
.font-heading { font-family: var(--font-heading); }
.font-700     { font-weight: 700; }
.font-800     { font-weight: 800; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.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-8  { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.w-full { width: 100%; }
.hidden { display: none; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-heading); font-weight: 700; font-size: 1rem;
  letter-spacing: .04em; padding: 14px 32px; border-radius: var(--radius);
  transition: all var(--transition); white-space: nowrap; border: 2px solid transparent;
}
.btn-primary {
  background: var(--orange); color: var(--white); border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(246,68,12,.35); }
.btn-secondary {
  background: var(--yellow); color: var(--navy); border-color: var(--yellow);
}
.btn-secondary:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); transform: translateY(-2px); }
.btn-outline-white {
  background: transparent; color: var(--white); border-color: var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--navy); }
.btn-outline-navy {
  background: transparent; color: var(--navy); border-color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-lg { padding: 18px 40px; font-size: 1.0625rem; }
.btn-sm { padding: 10px 22px; font-size: .875rem; }

/* ===== NAVIGATION ===== */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--navy); padding: 0;
  border-bottom: 3px solid var(--orange);
  transition: box-shadow var(--transition);
}
.site-nav.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,.3); }
.nav-inner {
  display: flex; align-items: stretch; justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-heading); font-weight: 900;
  font-size: 1.375rem; color: var(--white); letter-spacing: -.01em;
}
.nav-logo .dot { color: var(--orange); }
.nav-logo img { height: 42px; width: auto; }
.nav-links {
  display: flex; align-items: stretch; gap: 0;
}
.nav-links a {
  display: flex; align-items: center;
  font-family: var(--font-heading); font-weight: 600; font-size: .9rem;
  letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.75); padding: 0 20px;
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 20px; right: 20px;
  height: 3px; background: var(--orange); transform: scaleX(0); transition: transform var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  display: flex; align-items: center; padding: 0 24px;
  border-left: 1px solid rgba(255,255,255,.1);
}
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all var(--transition); }
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--navy-dark); z-index: 999; overflow-y: auto;
  padding: 32px 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700;
  color: var(--white); padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-menu a:hover { color: var(--orange); }
.mobile-menu .mobile-cta { margin-top: 32px; }

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 160px 0 88px; background: var(--navy);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(246,68,12,.12) 0%, transparent 60%);
}
.page-hero::after {
  content: ''; position: absolute; top: 0; right: -200px; width: 600px; height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(255,221,88,.04) 100%);
}
.page-hero .overline { color: var(--orange); margin-bottom: 16px; }
.page-hero h1 { color: var(--white); }
.page-hero h1 em { color: var(--yellow); font-style: normal; }
.page-hero p { color: rgba(255,255,255,.75); max-width: 560px; margin-top: 20px; }
.page-hero .hero-actions { margin-top: 36px; display: flex; gap: 16px; flex-wrap: wrap; }
.hero-accent-bar {
  display: inline-block; width: 60px; height: 5px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  border-radius: 3px; margin-bottom: 20px;
}

/* ===== SECTION HEADERS ===== */
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header .overline { color: var(--orange); margin-bottom: 12px; }
.section-header h2 { color: var(--navy); }
.section-header h2 em { color: var(--orange); font-style: normal; }
.section-header p { margin-top: 16px; max-width: 600px; }
.section-header.center p { margin-left: auto; margin-right: auto; }
.section-header.white h2 { color: var(--white); }
.section-header.white p { color: rgba(255,255,255,.75); }

/* ===== CARDS ===== */
.card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden; transition: all var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--orange); }
.card-body { padding: 28px; }
.card-img { width: 100%; height: 220px; object-fit: cover; background: var(--gray-200); }
.card-img-placeholder {
  width: 100%; height: 220px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 2.5rem; font-weight: 900; color: rgba(255,255,255,.15);
  letter-spacing: -.03em;
}

/* ===== BLOG CARDS ===== */
.blog-card { display: flex; flex-direction: column; }
.blog-card .card-body { flex: 1; display: flex; flex-direction: column; }
.blog-card .category-tag {
  display: inline-block; font-family: var(--font-heading); font-size: .7rem;
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px; margin-bottom: 14px;
}
.blog-card .category-tag.trades { background: rgba(246,68,12,.1); color: var(--orange); }
.blog-card .category-tag.agriculture { background: rgba(255,221,88,.2); color: #7a6000; }
.blog-card .category-tag.strategy { background: rgba(25,57,80,.1); color: var(--navy); }
.blog-card h3 { font-size: 1.125rem; margin-bottom: 12px; color: var(--gray-800); transition: color var(--transition); }
.blog-card:hover h3 { color: var(--orange); }
.blog-card .excerpt { font-size: .9375rem; flex: 1; }
.blog-card .card-meta { display: flex; align-items: center; gap: 16px; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--gray-200); }
.blog-card .read-more {
  font-family: var(--font-heading); font-weight: 700; font-size: .875rem;
  color: var(--orange); letter-spacing: .04em; display: flex; align-items: center; gap: 4px;
}
.blog-card .read-more::after { content: '→'; transition: transform var(--transition); }
.blog-card:hover .read-more::after { transform: translateX(4px); }

/* ===== SERVICE CARDS ===== */
.service-card { padding: 36px; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--orange); transform: scaleX(0); transition: transform var(--transition); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: rgba(246,68,12,.08); display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px; transition: background var(--transition);
}
.service-card:hover .service-icon { background: rgba(246,68,12,.15); }
.service-card h3 { color: var(--navy); margin-bottom: 12px; }
.service-card p { font-size: .9375rem; }

/* ===== STAT BLOCKS ===== */
.stat-block { text-align: center; padding: 32px; }
.stat-number {
  font-family: var(--font-heading); font-size: 3.5rem; font-weight: 900;
  color: var(--orange); line-height: 1; display: block;
}
.stat-label { font-size: .875rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; margin-top: 8px; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--orange); padding: 80px 0; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M40 0L80 40L40 80L0 40z'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-section h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3.2rem); }
.cta-section p { color: rgba(255,255,255,.85); font-size: 1.125rem; margin-top: 16px; }
.cta-section .cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-section .cta-actions { display: flex; gap: 16px; flex-shrink: 0; }

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px; border-left: 4px solid var(--orange);
  box-shadow: var(--shadow);
}
.testimonial-quote { font-size: 2.5rem; color: var(--orange); line-height: 1; font-family: Georgia, serif; margin-bottom: 16px; }
.testimonial-text { font-size: 1.0625rem; font-style: italic; color: var(--gray-600); line-height: 1.75; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 800; color: var(--white); font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-name { font-family: var(--font-heading); font-weight: 700; color: var(--gray-800); font-size: .95rem; }
.testimonial-role { font-size: .8125rem; color: var(--gray-400); margin-top: 2px; }

/* ===== TEAM / ABOUT ===== */
.about-photo-box {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  border-radius: var(--radius-lg); padding: 48px 40px; text-align: center;
  position: relative; overflow: hidden;
}
.about-photo-box::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
}
.about-monogram {
  width: 120px; height: 120px; border-radius: 50%;
  background: var(--orange); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-heading); font-size: 3rem; font-weight: 900; color: var(--white);
  box-shadow: 0 0 0 8px rgba(246,68,12,.2);
}
.about-name { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: var(--white); }
.about-title { font-size: .9375rem; color: var(--yellow); font-weight: 600; margin-top: 6px; }
.about-badges { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 20px; }
.about-badge {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.8); font-size: .8125rem; font-weight: 600;
  padding: 5px 14px; border-radius: 100px;
}

/* ===== HIGHLIGHT BOXES ===== */
.highlight-box {
  background: var(--yellow); border-radius: var(--radius-lg);
  padding: 32px; position: relative; overflow: hidden;
}
.highlight-box::before {
  content: ''; position: absolute; top: -20px; right: -20px;
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(246,68,12,.12);
}
.navy-box {
  background: var(--navy); border-radius: var(--radius-lg); padding: 32px;
}

/* ===== PROCESS STEPS ===== */
.process-step { display: flex; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--gray-200); }
.process-step:last-child { border-bottom: none; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%; background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 900; color: var(--white); font-size: 1.125rem; flex-shrink: 0;
}
.step-content h4 { color: var(--navy); margin-bottom: 6px; }

/* ===== BLOG POST PAGE ===== */
.post-hero { padding: 148px 0 72px; background: var(--navy); position: relative; overflow: hidden; }
.post-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(246,68,12,.08) 0%, transparent 55%);
}
.post-category { display: inline-block; background: var(--orange); color: var(--white); font-family: var(--font-heading); font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 6px 16px; border-radius: 100px; margin-bottom: 20px; }
.post-hero h1 { color: var(--white); max-width: 820px; font-size: clamp(1.8rem, 4vw, 3rem); }
.post-meta { display: flex; align-items: center; gap: 24px; margin-top: 24px; color: rgba(255,255,255,.6); font-size: .875rem; font-weight: 500; flex-wrap: wrap; }
.post-meta span { display: flex; align-items: center; gap: 6px; }
.post-content { padding: 64px 0; }
.post-content .container-sm { }
.post-body { max-width: 720px; }
.post-body p { font-size: 1.0625rem; line-height: 1.8; color: var(--gray-600); margin-bottom: 24px; }
.post-body h2 { font-size: 1.7rem; color: var(--navy); margin: 40px 0 16px; }
.post-body h3 { font-size: 1.3rem; color: var(--navy); margin: 32px 0 12px; }
.post-body ul { margin: 0 0 24px 20px; list-style: disc; }
.post-body ul li { margin-bottom: 8px; color: var(--gray-600); font-size: 1.0625rem; line-height: 1.7; }
.post-body ol { margin: 0 0 24px 20px; list-style: decimal; }
.post-body ol li { margin-bottom: 8px; color: var(--gray-600); font-size: 1.0625rem; line-height: 1.7; }
.post-body blockquote { border-left: 4px solid var(--orange); padding: 16px 24px; margin: 32px 0; background: rgba(246,68,12,.04); border-radius: 0 var(--radius) var(--radius) 0; }
.post-body blockquote p { color: var(--navy); font-style: italic; font-size: 1.125rem; }
.post-body strong { color: var(--gray-800); font-weight: 700; }
.post-sidebar { padding-top: 0; }
.sidebar-widget { background: var(--gray-100); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 28px; }
.sidebar-widget h4 { color: var(--navy); margin-bottom: 16px; border-bottom: 2px solid var(--orange); padding-bottom: 12px; }
.sidebar-cta { background: var(--navy); }
.sidebar-cta h4 { color: var(--white); border-color: var(--orange); }
.sidebar-cta p { color: rgba(255,255,255,.7); font-size: .9375rem; margin-bottom: 16px; }
.related-post-link { display: block; font-size: .9rem; color: var(--gray-800); padding: 10px 0; border-bottom: 1px solid var(--gray-200); transition: color var(--transition); font-weight: 500; }
.related-post-link:hover { color: var(--orange); padding-left: 4px; }
.related-post-link:last-child { border-bottom: none; }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }
.contact-info h3 { color: var(--navy); margin-bottom: 20px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(246,68,12,.1); display: flex; align-items: center; justify-content: center; font-size: 1.125rem; flex-shrink: 0; }
.contact-detail strong { display: block; color: var(--navy); font-size: .875rem; font-weight: 700; margin-bottom: 4px; }
.contact-detail span { font-size: .9375rem; color: var(--gray-600); }
.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow-lg); border: 1px solid var(--gray-200); }
.contact-form h3 { color: var(--navy); margin-bottom: 28px; }
.form-group { margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; font-size: .875rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; font-family: var(--font-heading); letter-spacing: .03em; }
input, select, textarea { width: 100%; padding: 13px 16px; border: 1.5px solid var(--gray-200); border-radius: var(--radius); font-size: 1rem; color: var(--gray-800); background: var(--white); transition: border-color var(--transition); font-family: var(--font-body); }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(246,68,12,.1); }
textarea { resize: vertical; min-height: 130px; }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath fill='%23193950' d='M1 1l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; }
.form-success { display: none; background: rgba(25,57,80,.06); border: 1px solid var(--navy); border-radius: var(--radius); padding: 16px 20px; margin-top: 16px; }
.form-success.visible { display: block; }
.form-success p { color: var(--navy); font-weight: 600; font-size: .9375rem; }

/* ===== FOOTER ===== */
.site-footer { background: var(--navy-dark); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand-name { font-family: var(--font-heading); font-size: 1.375rem; font-weight: 900; color: var(--white); margin-bottom: 14px; }
.footer-brand-name span { color: var(--orange); }
.footer-brand p { font-size: .9375rem; color: rgba(255,255,255,.5); line-height: 1.7; max-width: 300px; }
.footer-col h5 { font-family: var(--font-heading); font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); margin-bottom: 20px; }
.footer-col a { display: block; font-size: .9375rem; color: rgba(255,255,255,.55); padding: 5px 0; transition: color var(--transition); }
.footer-col a:hover { color: var(--yellow); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .875rem; color: rgba(255,255,255,.35); }
.footer-bottom a { font-size: .875rem; color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: var(--orange); }
.footer-location { display: flex; align-items: center; gap: 8px; font-size: .875rem; color: rgba(255,255,255,.45); }
.footer-location::before { content: '📍'; font-size: .9rem; }

/* ===== BREADCRUMB ===== */
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.breadcrumb a { font-size: .875rem; color: rgba(255,255,255,.5); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { font-size: .875rem; color: rgba(255,255,255,.3); }
.breadcrumb .current { font-size: .875rem; color: rgba(255,255,255,.7); }

/* ===== BADGES ===== */
.badge { display: inline-block; font-family: var(--font-heading); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; }
.badge-orange { background: var(--orange); color: var(--white); }
.badge-yellow { background: var(--yellow); color: var(--navy); }
.badge-navy { background: var(--navy); color: var(--white); }
.badge-outline { background: transparent; border: 1px solid currentColor; }

/* ===== HORIZONTAL RULE ===== */
hr.divider { border: none; border-top: 1px solid var(--gray-200); margin: 48px 0; }
hr.divider-orange { border-top-color: var(--orange); }

/* ===== PAGINATION ===== */
.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 56px; }
.page-btn { width: 40px; height: 40px; border-radius: var(--radius); border: 1.5px solid var(--gray-200); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 700; font-size: .875rem; color: var(--navy); cursor: pointer; transition: all var(--transition); }
.page-btn.active { background: var(--orange); border-color: var(--orange); color: var(--white); }
.page-btn:hover:not(.active) { border-color: var(--orange); color: var(--orange); }

/* ===== FILTER TABS ===== */
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-tab { font-family: var(--font-heading); font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 8px 20px; border-radius: 100px; border: 1.5px solid var(--gray-200); color: var(--gray-600); cursor: pointer; transition: all var(--transition); background: var(--white); }
.filter-tab.active, .filter-tab:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }

/* ===== SEARCH BAR ===== */
.search-bar { display: flex; gap: 0; max-width: 520px; }
.search-bar input { border-radius: var(--radius) 0 0 var(--radius); border-right: none; }
.search-bar button { background: var(--orange); color: var(--white); padding: 0 24px; border-radius: 0 var(--radius) var(--radius) 0; font-family: var(--font-heading); font-weight: 700; transition: background var(--transition); flex-shrink: 0; }
.search-bar button:hover { background: var(--orange-dark); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .page-hero { padding: 140px 0 64px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand p { max-width: 100%; }
  .cta-section .cta-inner { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .post-content .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .stat-number { font-size: 2.5rem; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .6s ease forwards; }
.fade-up-delay-1 { animation-delay: .1s; opacity: 0; }
.fade-up-delay-2 { animation-delay: .2s; opacity: 0; }
.fade-up-delay-3 { animation-delay: .3s; opacity: 0; }

/* ===== SCROLL TO TOP ===== */
#scroll-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 500;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.125rem; box-shadow: 0 4px 16px rgba(246,68,12,.4);
  opacity: 0; pointer-events: none; transition: all var(--transition);
}
#scroll-top.visible { opacity: 1; pointer-events: all; }
#scroll-top:hover { background: var(--orange-dark); transform: translateY(-3px); }

/* ── SVG ICON STYLES ── */
.site-icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}
/* Orange tint for icons on light backgrounds */
.icon-orange { filter: invert(35%) sepia(90%) saturate(800%) hue-rotate(350deg) brightness(95%) contrast(110%); }
/* Navy tint */
.icon-navy   { filter: invert(17%) sepia(35%) saturate(700%) hue-rotate(175deg) brightness(80%) contrast(120%); }
/* White tint (for dark backgrounds) */
.icon-white  { filter: invert(1) brightness(2); }
/* Yellow tint */
.icon-yellow { filter: invert(90%) sepia(60%) saturate(400%) hue-rotate(5deg) brightness(105%); }

/* Icon in diff-item boxes */
.diff-icon .site-icon { filter: invert(35%) sepia(90%) saturate(800%) hue-rotate(350deg) brightness(95%); }
/* Icon in contact-icon boxes */
.contact-icon .site-icon { filter: invert(35%) sepia(90%) saturate(800%) hue-rotate(350deg) brightness(95%); }
/* Pillar icons */
.pillar-icon .site-icon { filter: invert(35%) sepia(90%) saturate(800%) hue-rotate(350deg) brightness(95%); }
/* Value-card icons */
.value-card .v-icon .site-icon { filter: invert(35%) sepia(90%) saturate(800%) hue-rotate(350deg) brightness(95%); }
/* Niche card icons (on white backgrounds) */
.niche-icon .site-icon { filter: invert(35%) sepia(90%) saturate(800%) hue-rotate(350deg) brightness(95%); }
/* Sidebar card icons (on dark navy) */
.service-sidebar-card .card-icon .site-icon { filter: invert(1) brightness(2) sepia(1) saturate(3) hue-rotate(340deg); }

/* Illustrations in blog/service cards */
.service-illustration { display: block; width: 100%; border-radius: var(--radius-lg); }
