/* ═══════════════════════════════════════════════
   PEST SHIELD PRO — Main Stylesheet
   Design: Bold industrial + clean conversion UX
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Source+Sans+3:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');

:root {
  --green:       #1B6B34;
  --green-dark:  #124926;
  --green-light: #2A9D52;
  --lime:        #5CB85C;
  --orange:      #E55A1B;
  --orange-dark: #C44D14;
  --cream:       #F8F5F0;
  --slate:       #1E2D3A;
  --gray:        #5A6978;
  --light:       #EAF2EC;
  --white:       #FFFFFF;
  --border:      #D4E4D8;

  --font-head: 'Oswald', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 6px 24px rgba(0,0,0,.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.18);

  --radius: 6px;
  --radius-lg: 12px;
}

*, *::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(--slate);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Typography ─────────────────────────────── */
h1,h2,h3,h4,h5 { font-family: var(--font-head); line-height: 1.2; color: var(--slate); letter-spacing: .02em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 500; }
h4 { font-size: 1.15rem; font-weight: 500; }
p  { margin-bottom: 1rem; color: var(--gray); }
a  { color: var(--green); text-decoration: none; transition: color .2s; }
a:hover { color: var(--orange); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── Layout ─────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.section    { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-dark { background: var(--slate); }
.section-green { background: var(--green); }
.section-cream { background: var(--cream); }
.section-light { background: var(--light); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex   { display: flex; align-items: center; gap: 16px; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.text-green  { color: var(--green) !important; }
.text-orange { color: var(--orange) !important; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }

/* ── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; font-family: var(--font-head);
  font-size: 1.05rem; font-weight: 600; letter-spacing: .05em;
  text-transform: uppercase; border-radius: var(--radius);
  cursor: pointer; border: 2px solid transparent;
  transition: all .22s ease; white-space: nowrap;
}
.btn-primary  { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-green    { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-green:hover { background: var(--green-dark); border-color: var(--green-dark); color: var(--white); transform: translateY(-2px); }
.btn-outline  { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--green); }
.btn-lg { padding: 18px 36px; font-size: 1.15rem; }
.btn-sm { padding: 10px 20px; font-size: .9rem; }
.btn-call { background: var(--orange); color: var(--white); font-size: 1.3rem; padding: 16px 32px; border-radius: 50px; }
.btn-call::before { content: "📞 "; }
.btn-call:hover { background: var(--orange-dark); color: var(--white); transform: scale(1.04); }

/* ── Navigation ─────────────────────────────── */
.site-nav {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white); box-shadow: var(--shadow-sm);
  border-bottom: 3px solid var(--green);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; max-width: 1180px; margin: 0 auto; }
.nav-logo  { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; color: var(--green); display: flex; align-items: center; gap: 8px; }
.nav-logo span { color: var(--orange); }
.nav-links { display: flex; gap: 6px; align-items: center; }
.nav-links a { font-family: var(--font-head); font-size: .95rem; font-weight: 500; color: var(--slate); padding: 8px 14px; border-radius: var(--radius); letter-spacing: .04em; text-transform: uppercase; transition: all .2s; }
.nav-links a:hover { background: var(--light); color: var(--green); }
.nav-cta { background: var(--orange); color: var(--white) !important; border-radius: var(--radius); }
.nav-cta:hover { background: var(--orange-dark) !important; color: var(--white) !important; }
.nav-phone { font-family: var(--font-head); font-size: 1.1rem; color: var(--green); font-weight: 600; }
.hamburger { display: none; cursor: pointer; font-size: 1.5rem; background:none; border:none; }
.nav-open { display: flex !important; flex-direction: column; position: absolute; top: 60px; left: 0; right: 0; background: #fff; padding: 16px 20px; box-shadow: 0 8px 24px rgba(0,0,0,.12); z-index: 999; }

/* ── Emergency Banner ──────────────────────── */
.emergency-bar {
  background: linear-gradient(90deg, var(--orange-dark), var(--orange));
  color: var(--white); text-align: center; padding: 10px 20px;
  font-family: var(--font-head); font-weight: 600; letter-spacing: .05em;
  font-size: .95rem;
}
.emergency-bar a { color: var(--white); text-decoration: underline; }

/* ── Hero Section ───────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--slate) 0%, var(--green-dark) 60%, var(--green) 100%);
  padding: 100px 0 80px; color: var(--white);
}
.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-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; position: relative; }
.hero-badge { display: inline-block; background: var(--orange); color: var(--white); font-family: var(--font-head); font-size: .85rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 6px 16px; border-radius: 50px; margin-bottom: 20px; }
.hero h1 { color: var(--white); margin-bottom: 20px; text-shadow: 0 2px 8px rgba(0,0,0,.2); }
.hero h1 span { color: #7FD4A0; }
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,.85); margin-bottom: 32px; line-height: 1.6; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: .9rem; color: rgba(255,255,255,.8); }
.trust-item strong { color: var(--white); }

/* ── Lead Form Card ─────────────────────────── */
.form-card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 36px 32px;
  border-top: 5px solid var(--orange);
}
.form-card h3 { color: var(--green); font-size: 1.4rem; margin-bottom: 6px; }
.form-card p  { font-size: .9rem; color: var(--gray); margin-bottom: 20px; }
.form-group   { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; color: var(--slate); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 2px solid var(--border); border-radius: var(--radius);
  font-family: var(--font-body); font-size: .95rem; color: var(--slate);
  transition: border-color .2s;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-submit { width: 100%; font-size: 1.1rem; }
.form-note { font-size: .8rem; color: var(--gray); text-align: center; margin-top: 10px; }

/* ── Section Headers ────────────────────────── */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header .eyebrow { display: inline-block; background: var(--light); color: var(--green); font-family: var(--font-head); font-size: .82rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; padding: 5px 14px; border-radius: 50px; margin-bottom: 14px; border: 1px solid var(--border); }
.section-header h2 { margin-bottom: 12px; }
.section-header p  { max-width: 580px; margin: 0 auto; font-size: 1.05rem; }

/* ── Service Cards ──────────────────────────── */
.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: all .25s; position: relative; overflow: hidden;
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--green); transform: scaleX(0); transition: transform .25s; transform-origin: left; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 2.8rem; margin-bottom: 16px; }
.service-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.service-card p  { font-size: .92rem; margin-bottom: 16px; }
.service-card a.learn-more { font-family: var(--font-head); font-size: .88rem; font-weight: 600; color: var(--green); letter-spacing: .06em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 6px; }
.service-card a.learn-more::after { content: '→'; transition: transform .2s; }
.service-card:hover a.learn-more::after { transform: translateX(4px); }

/* ── State/City Cards ───────────────────────── */
.location-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.location-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 18px;
  text-align: center; transition: all .2s; cursor: pointer;
}
.location-card:hover { background: var(--light); border-color: var(--green); transform: translateY(-2px); }
.location-card .loc-icon { font-size: 1.6rem; margin-bottom: 8px; }
.location-card h4 { font-size: 1rem; margin-bottom: 4px; }
.location-card p  { font-size: .82rem; color: var(--gray); margin: 0; }

/* ── Stats Bar ──────────────────────────────── */
.stats-bar { background: var(--green); padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-item { color: var(--white); }
.stat-number { font-family: var(--font-head); font-size: 2.8rem; font-weight: 700; color: #7FD4A0; line-height: 1; margin-bottom: 6px; }
.stat-label  { font-size: .95rem; color: rgba(255,255,255,.8); }

/* ── Trust Badges ───────────────────────────── */
.trust-badges { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.trust-badge {
  display: flex; align-items: center; gap: 10px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 20px;
  box-shadow: var(--shadow-sm);
}
.trust-badge .icon { font-size: 1.8rem; }
.trust-badge .info strong { display: block; font-size: .95rem; color: var(--slate); }
.trust-badge .info span   { font-size: .82rem; color: var(--gray); }

/* ── Testimonials ───────────────────────────── */
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  position: relative;
}
.testimonial-card::before { content: '"'; font-family: var(--font-head); font-size: 4rem; color: var(--light); position: absolute; top: 12px; left: 20px; line-height: 1; }
.stars { color: #F5A623; font-size: 1.1rem; margin-bottom: 12px; }
.testimonial-card p { font-size: .95rem; font-style: italic; margin-bottom: 16px; padding-left: 8px; }
.reviewer { display: flex; align-items: center; gap: 10px; }
.reviewer-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--light); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.reviewer-info strong { display: block; font-size: .9rem; }
.reviewer-info span   { font-size: .8rem; color: var(--gray); }

/* ── FAQ ────────────────────────────────────── */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; padding: 18px 20px;
  background: var(--white); border: none; cursor: pointer;
  font-family: var(--font-head); font-size: 1.05rem; font-weight: 500;
  color: var(--slate); display: flex; justify-content: space-between;
  align-items: center; transition: background .2s;
}
.faq-q:hover { background: var(--light); }
.faq-q .icon { font-size: 1.2rem; transition: transform .2s; flex-shrink: 0; }
.faq-q.open .icon { transform: rotate(45deg); }
.faq-a { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s ease; }
.faq-a.open { padding: 0 20px 20px; max-height: 2000px; }
.faq-a p { font-size: .95rem; margin: 0; color: var(--gray); line-height: 1.75; }

/* ── Blog Cards ─────────────────────────────── */
.blog-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; transition: all .25s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-thumb { height: 180px; background: linear-gradient(135deg, var(--light), var(--green) 200%); display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.blog-body { padding: 24px; }
.blog-cat { font-family: var(--font-head); font-size: .78rem; color: var(--green); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 10px; }
.blog-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.blog-card p  { font-size: .88rem; }
.blog-meta { display: flex; gap: 16px; font-size: .8rem; color: var(--gray); margin-top: 12px; }

/* ── CTA Section ────────────────────────────── */
.cta-section { background: linear-gradient(135deg, var(--green-dark), var(--green)); padding: 80px 0; text-align: center; }
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p  { color: rgba(255,255,255,.85); font-size: 1.1rem; max-width: 560px; margin: 0 auto 32px; }
.cta-btns { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* ── Page Hero (inner pages) ────────────────── */
.page-hero { background: linear-gradient(135deg, var(--slate), var(--green-dark)); color: var(--white); padding: 64px 0 52px; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p  { color: rgba(255,255,255,.82); font-size: 1.1rem; max-width: 640px; }
.breadcrumb   { font-size: .85rem; color: rgba(255,255,255,.6); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,.8); }
.breadcrumb span { margin: 0 6px; }

/* ── Content Sections ───────────────────────── */
.content-block { padding: 64px 0; }
.content-block h2 { margin-bottom: 16px; }
.content-block h3 { margin-bottom: 10px; color: var(--green); }
.checklist { list-style: none; }
.checklist li { padding: 8px 0 8px 32px; position: relative; font-size: .95rem; color: var(--gray); border-bottom: 1px solid var(--border); }
.checklist li:last-child { border: none; }
.checklist li::before { content: '✓'; position: absolute; left: 0; color: var(--lime); font-weight: 700; }
.pest-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.pest-item { background: var(--light); border-radius: var(--radius); padding: 14px 16px; display: flex; align-items: center; gap: 10px; font-size: .92rem; font-weight: 600; }

/* ── Sidebar ────────────────────────────────── */
.content-with-sidebar { display: grid; grid-template-columns: 1fr 340px; gap: 48px; }
.sidebar .widget { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 24px; }
.sidebar .widget h4 { font-size: 1.1rem; color: var(--green); margin-bottom: 16px; border-bottom: 2px solid var(--border); padding-bottom: 10px; }
.sidebar .widget ul li { padding: 8px 0; border-bottom: 1px solid var(--border); font-size: .9rem; }
.sidebar .widget ul li:last-child { border: none; }
.sidebar .widget ul li a { color: var(--gray); }
.sidebar .widget ul li a:hover { color: var(--green); }
.sidebar-cta { background: linear-gradient(135deg, var(--green), var(--green-dark)); color: var(--white); border-radius: var(--radius-lg); padding: 28px; text-align: center; margin-bottom: 24px; }
.sidebar-cta h4 { color: var(--white); margin-bottom: 10px; }
.sidebar-cta p { color: rgba(255,255,255,.82); font-size: .9rem; margin-bottom: 16px; }

/* ── Footer ─────────────────────────────────── */
.site-footer { background: var(--slate); color: rgba(255,255,255,.75); padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .nav-logo { margin-bottom: 16px; font-size: 1.8rem; }
.footer-brand p { font-size: .9rem; line-height: 1.7; }
.footer-col h5 { font-family: var(--font-head); font-size: 1rem; color: var(--white); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,.65); font-size: .9rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--lime); }
.footer-phone { color: var(--lime); font-family: var(--font-head); font-size: 1.3rem; margin-bottom: 8px; display: block; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: .85rem; flex-wrap: wrap; gap: 12px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: rgba(255,255,255,.5); font-size: .82rem; }
.footer-links a:hover { color: var(--white); }

/* ── Schema / SEO note (hidden visually) ────── */
.seo-schema { display: none; }

/* ── Responsive ─────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { gap: 40px; }
  .content-with-sidebar { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 40px; }
  .form-card { padding: 28px 20px; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .trust-badges { gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
  .location-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Animations ──────────────────────────────── */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:none; } }
.fade-up { animation: fadeUp .6s ease both; }
.fade-up-2 { animation: fadeUp .6s .15s ease both; }
.fade-up-3 { animation: fadeUp .6s .3s ease both; }

/* ── Utility ─────────────────────────────────── */
.tag { display: inline-block; background: var(--light); color: var(--green); font-size: .78rem; font-weight: 600; padding: 3px 10px; border-radius: 50px; margin: 2px; font-family: var(--font-head); letter-spacing: .06em; border: 1px solid var(--border); }
.divider { border: none; border-top: 2px solid var(--border); margin: 40px 0; }
.highlight-box { background: var(--light); border-left: 4px solid var(--green); border-radius: 0 var(--radius) var(--radius) 0; padding: 20px 24px; margin: 24px 0; }
.highlight-box p { margin: 0; font-size: .95rem; }
.price-table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.price-table th { background: var(--green); color: var(--white); font-family: var(--font-head); padding: 14px 16px; text-align: left; font-size: .95rem; }
.price-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); font-size: .92rem; }
.price-table tr:nth-child(even) td { background: var(--light); }

/* ═══ NAVIGATION FIX ════════════════════════════════ */
.nav { background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,.08); position: sticky; top: 0; z-index: 999; }
.nav-links a:not(.nav-cta):not(.nav-phone) { background: transparent !important; }
.nav-links a:not(.nav-cta):not(.nav-phone):hover { background: var(--light) !important; }

/* ═══ FOOTER FIX ════════════════════════════════════ */
.footer { background: var(--slate); color: #fff; padding: 60px 0 30px; margin-top: 60px; }
.footer a { color: rgba(255,255,255,.75); }
.footer a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.15); padding-top: 24px; margin-top: 30px; text-align: center; color: rgba(255,255,255,.5); font-size: .85rem; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 10px; }

/* ═══ HERO IMAGE WRAPPER ════════════════════════════ */
.hero-image img { width: 100%; border-radius: 20px; display: block; margin: 20px 0; }
.hero-image { margin: 20px 0; }

/* ═══ RESPONSIVE IMAGES ════════════════════════════ */
img { max-width: 100%; height: auto; }

/* ═══ BASE STYLES FIX ══════════════════════════════ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* NAV BACKGROUND FIX */
nav.nav { background: #fff !important; box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important; position: sticky !important; top: 0 !important; z-index: 9999 !important; }

/* FOOTER BACKGROUND FIX */
footer.footer { background: #1E2D3A !important; color: #fff !important; padding: 60px 0 30px !important; margin-top: 60px !important; }
footer.footer a { color: rgba(255,255,255,0.75) !important; }
footer.footer a:hover { color: #fff !important; }
footer.footer h4 { color: #fff !important; }
