/*
Theme Name: Quotes To Inspire You
Author: Quotes To Inspire You
Description: A clean daily inspirational quotes theme powered by the ZenQuotes API. Quote of the Day changes automatically every day. Browse by category, subscribe via Beehiiv.
Version: 2.0.0
Requires at least: 7.0
Tested up to: 7.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: quotestoinspireyou
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;1,400;1,600&family=Inter:wght@300;400;500&display=swap');

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

:root {
  --green:        #4a7c59;
  --green-mid:    #6aaa80;
  --green-light:  #a8d5b5;
  --green-pale:   #e8f5ec;
  --green-soft:   #f2faf4;
  --green-hero:   #d4edda;
  --sage:         #8fbc94;
  --dark:         #1e2d23;
  --dark-mid:     #2e4a35;
  --body-bg:      #f9fdf9;
  --body-text:    #1e2d23;
  --muted:        #6b7c6e;
  --faint:        #a8b8ab;
  --border:       #d8eadb;
  --card-bg:      #ffffff;
  --serif:        'Playfair Display', Georgia, serif;
  --sans:         'Inter', system-ui, sans-serif;
  --radius:       16px;
  --radius-sm:    10px;
  --max-width:    1140px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); font-size: 16px; line-height: 1.7; color: var(--body-text); background: var(--body-bg); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ── LAYOUT ── */
.wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 28px; }

/* ── HEADER ── */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 1px 16px rgba(74,124,89,0.06);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 24px; }
.site-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-mark { width: 38px; height: 38px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 20px; font-style: italic; color: #fff; font-weight: 700; }
.logo-text { font-family: var(--serif); font-size: 18px; color: var(--dark); font-weight: 600; }
.logo-text span { color: var(--green); }
.site-nav ul { display: flex; gap: 4px; }
.site-nav a { font-size: 13px; font-weight: 500; color: var(--muted); padding: 6px 14px; border-radius: 20px; transition: all 0.2s; }
.site-nav a:hover, .site-nav a.current { color: var(--green); background: var(--green-pale); }
.header-search { display: flex; align-items: center; gap: 8px; background: var(--green-soft); border: 1px solid var(--border); border-radius: 20px; padding: 7px 16px; }
.header-search input { background: none; border: none; outline: none; color: var(--body-text); font-size: 13px; font-family: var(--sans); width: 150px; }
.header-search input::placeholder { color: var(--faint); }
.header-search button { background: none; border: none; color: var(--muted); cursor: pointer; font-size: 15px; padding: 0; }
.mobile-toggle { display: none; background: none; border: none; color: var(--dark); font-size: 22px; cursor: pointer; }

/* ── CATEGORY BAR ── */
.cat-bar { background: var(--green-pale); border-bottom: 1px solid var(--border); overflow: hidden; }
.cat-bar-inner { display: flex; align-items: center; overflow-x: auto; scrollbar-width: none; }
.cat-bar-inner::-webkit-scrollbar { display: none; }
.cat-bar-label { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--green); padding: 0 18px; height: 44px; display: flex; align-items: center; border-right: 1px solid var(--border); white-space: nowrap; flex-shrink: 0; font-weight: 600; }
.cat-bar a { font-size: 13px; color: var(--muted); padding: 0 16px; height: 44px; display: flex; align-items: center; white-space: nowrap; border-right: 1px solid rgba(74,124,89,0.1); transition: all .15s; flex-shrink: 0; }
.cat-bar a:hover, .cat-bar a.current { color: var(--green); background: #dff0e3; font-weight: 500; }

/* ── HERO ── */
.hero {
  background: linear-gradient(160deg, #e8f5ec 0%, #d4edda 50%, #c5e6cc 100%);
  padding: 90px 0 80px;
  border-bottom: 1px solid var(--green-light);
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(74,124,89,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -100px; left: -60px;
  width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(74,124,89,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; text-align: center; max-width: 820px; margin: 0 auto; padding: 0 28px; }
.hero-eyebrow { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--green); margin-bottom: 12px; display: flex; align-items: center; justify-content: center; gap: 12px; font-weight: 600; }
.hero-eyebrow::before, .hero-eyebrow::after { content: ''; width: 36px; height: 1px; background: var(--green-mid); opacity: .5; }
.hero-date { font-size: 12px; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 32px; }
.hero-quote-wrap { background: rgba(255,255,255,0.65); border: 1px solid rgba(74,124,89,0.2); border-radius: var(--radius); padding: 52px 56px; margin-bottom: 36px; backdrop-filter: blur(4px); }
.hero-qmark { font-family: var(--serif); font-size: 120px; color: rgba(74,124,89,0.12); line-height: .65; display: block; margin-bottom: 8px; font-style: italic; }
.hero-quote-text { font-family: var(--serif); font-size: 30px; font-style: italic; color: var(--dark); line-height: 1.55; margin-bottom: 24px; font-weight: 400; }
.hero-author { font-size: 15px; color: var(--green); font-weight: 500; letter-spacing: .04em; }
.hero-loading { font-family: var(--serif); font-size: 20px; font-style: italic; color: var(--muted); padding: 40px 0; }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 26px; border-radius: 28px; font-size: 13px; font-weight: 500; font-family: var(--sans); cursor: pointer; transition: all .2s; letter-spacing: .03em; border: none; }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--dark-mid); transform: translateY(-1px); }
.btn-outline { background: transparent; border: 1.5px solid var(--green); color: var(--green); }
.btn-outline:hover { background: var(--green-pale); }
.btn-soft { background: #fff; border: 1px solid var(--border); color: var(--muted); }
.btn-soft:hover { border-color: var(--green); color: var(--green); }

/* ── CONTENT AREA ── */
.content-wrap { display: grid; grid-template-columns: 1fr 300px; gap: 44px; padding: 52px 0; align-items: start; }
.main { min-width: 0; }

/* ── SECTION HEADING ── */
.sec-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 22px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.sec-head h2 { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--dark); }
.sec-head a { font-size: 12px; color: var(--green); font-weight: 500; }
.sec-head a:hover { opacity: .75; }

/* ── QUOTE CARDS ── */
.quotes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px,1fr)); gap: 20px; margin-bottom: 44px; }
.quote-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px 20px; display: flex; flex-direction: column; gap: 14px; transition: box-shadow .2s, transform .2s, border-color .2s; position: relative; overflow: hidden; }
.quote-card::before { content: '"'; position: absolute; top: 4px; right: 14px; font-family: var(--serif); font-size: 80px; color: rgba(74,124,89,0.07); line-height: 1; font-style: italic; pointer-events: none; }
.quote-card:hover { box-shadow: 0 8px 32px rgba(74,124,89,0.13); transform: translateY(-3px); border-color: var(--green-light); }
.qcard-cat { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--green); font-weight: 600; }
.qcard-text { font-family: var(--serif); font-size: 17px; font-style: italic; line-height: 1.6; color: var(--dark); flex: 1; }
.qcard-foot { font-size: 12px; color: var(--muted); padding-top: 12px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; font-weight: 500; }
.qcard-shares { display: flex; gap: 6px; }
.share-btn { width: 26px; height: 26px; border-radius: 50%; background: var(--green-pale); border: 1px solid var(--border); cursor: pointer; font-size: 11px; display: flex; align-items: center; justify-content: center; color: var(--green); transition: all .15s; }
.share-btn:hover { background: var(--green); color: #fff; border-color: var(--green); }

/* ── TOPIC PILLS ── */
.topics-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(148px,1fr)); gap: 10px; margin-bottom: 44px; }
.topic-pill { display: flex; align-items: center; justify-content: space-between; padding: 13px 16px; background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 13px; color: var(--body-text); cursor: pointer; transition: all .15s; text-decoration: none; }
.topic-pill:hover { border-color: var(--green); color: var(--green); background: var(--green-soft); box-shadow: 0 2px 12px rgba(74,124,89,0.1); }
.topic-pill-count { font-size: 11px; color: var(--faint); background: var(--green-soft); border-radius: 10px; padding: 1px 8px; }

/* ── SUBSCRIBE ── */
.subscribe-section { background: linear-gradient(135deg, #d4edda, #c5e6cc); border: 1px solid var(--green-light); border-radius: var(--radius); padding: 52px 44px; text-align: center; margin-bottom: 44px; position: relative; overflow: hidden; }
.subscribe-section::before { content: ''; position: absolute; top: -40px; right: -40px; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(74,124,89,0.12) 0%, transparent 70%); pointer-events: none; }
.subscribe-section h2 { font-family: var(--serif); font-size: 26px; color: var(--dark); margin-bottom: 8px; }
.subscribe-section p { font-size: 14px; color: var(--dark-mid); margin-bottom: 28px; line-height: 1.6; }
.subscribe-form { display: flex; gap: 10px; max-width: 420px; margin: 0 auto; }
.subscribe-form input[type="email"] { flex: 1; padding: 13px 20px; border-radius: 28px; border: 1px solid rgba(74,124,89,0.3); background: rgba(255,255,255,0.8); color: var(--dark); font-family: var(--sans); font-size: 14px; outline: none; transition: border-color .2s; }
.subscribe-form input[type="email"]::placeholder { color: var(--faint); }
.subscribe-form input[type="email"]:focus { border-color: var(--green); }
.subscribe-form button { padding: 13px 26px; background: var(--green); color: #fff; border: none; border-radius: 28px; font-family: var(--sans); font-size: 14px; font-weight: 600; cursor: pointer; white-space: nowrap; transition: background .2s; }
.subscribe-form button:hover { background: var(--dark-mid); }
.beehiiv-embed-wrap { max-width: 420px; margin: 0 auto; }

/* ── SIDEBAR ── */
.sidebar { position: sticky; top: 88px; }
.widget { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin-bottom: 22px; }
.widget-title { font-family: var(--serif); font-size: 16px; font-weight: 600; color: var(--dark); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.sidebar-topics a { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; font-size: 14px; color: var(--body-text); border-bottom: 1px solid var(--border); transition: color .15s; }
.sidebar-topics a:last-child { border-bottom: none; }
.sidebar-topics a:hover { color: var(--green); }
.sidebar-topics span { font-size: 11px; color: var(--faint); background: var(--green-soft); border-radius: 10px; padding: 1px 8px; }
.sidebar-quote { font-family: var(--serif); font-style: italic; font-size: 16px; line-height: 1.6; color: var(--dark); margin-bottom: 10px; text-align: center; }
.sidebar-quote-author { font-size: 12px; color: var(--green); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; text-align: center; }
.sidebar-refresh { display: block; width: 100%; margin-top: 14px; padding: 8px; background: var(--green-pale); border: 1px solid var(--border); border-radius: 20px; font-size: 12px; color: var(--green); font-weight: 500; cursor: pointer; text-align: center; transition: all .15s; font-family: var(--sans); }
.sidebar-refresh:hover { background: var(--green); color: #fff; border-color: var(--green); }

/* ── ARCHIVE / SEARCH ── */
.page-header { background: linear-gradient(135deg, #e8f5ec, #d4edda); padding: 52px 0; margin-bottom: 44px; border-bottom: 1px solid var(--border); }
.page-header h1 { font-family: var(--serif); font-size: 36px; color: var(--dark); margin-bottom: 6px; }
.page-header p { font-size: 15px; color: var(--muted); }
.search-form-large { display: flex; gap: 12px; max-width: 560px; margin: 24px auto 0; }
.search-form-large input { flex: 1; padding: 14px 22px; border-radius: 28px; border: 1px solid var(--border); background: #fff; color: var(--dark); font-family: var(--sans); font-size: 15px; outline: none; }
.search-form-large input:focus { border-color: var(--green); }
.search-form-large button { padding: 14px 28px; background: var(--green); color: #fff; border: none; border-radius: 28px; font-family: var(--sans); font-size: 15px; font-weight: 600; cursor: pointer; }

/* ── PAGINATION ── */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 40px; }
.pagination a, .pagination span { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 500; border: 1px solid var(--border); background: #fff; color: var(--body-text); transition: all .15s; }
.pagination a:hover, .pagination .current { background: var(--green); border-color: var(--green); color: #fff; }

/* ── ADMIN NOTICE ── */
.admin-notice { background: var(--green-soft); border: 1px solid var(--green-light); border-radius: var(--radius-sm); padding: 14px 20px; font-size: 14px; color: var(--dark); margin-bottom: 24px; }

/* ── FOOTER ── */
.site-footer { background: var(--dark); padding: 60px 0 32px; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 44px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.7; margin: 12px 0 20px; }
.footer-logo { font-family: var(--serif); font-size: 20px; color: #fff; font-weight: 600; }
.footer-logo span { color: var(--sage); }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); font-size: 13px; font-weight: 700; cursor: pointer; transition: all .15s; text-decoration: none; }
.social-btn:hover { background: var(--green); border-color: var(--green); color: #fff; }
.footer-col h4 { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--sage); margin-bottom: 18px; font-weight: 600; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { font-size: 14px; color: rgba(255,255,255,.45); transition: color .15s; }
.footer-col li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.25); }
.footer-bottom nav { display: flex; gap: 20px; }
.footer-bottom nav a { font-size: 13px; color: rgba(255,255,255,.3); transition: color .15s; }
.footer-bottom nav a:hover { color: rgba(255,255,255,.7); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .content-wrap { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .site-nav { display: none; }
  .site-nav.open { display: block; position: absolute; top: 68px; left: 0; right: 0; background: #fff; padding: 12px 0; z-index: 99; border-top: 1px solid var(--border); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
  .site-nav.open ul { flex-direction: column; padding: 0 20px; gap: 4px; }
  .mobile-toggle { display: block; }
  .header-search { display: none; }
  .hero { padding: 60px 0 52px; min-height: auto; }
  .hero-quote-text { font-size: 22px; }
  .hero-quote-wrap { padding: 36px 28px; }
  .subscribe-section { padding: 36px 24px; }
  .subscribe-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .topics-grid { grid-template-columns: repeat(2,1fr); }
  .quotes-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .wrap { padding: 0 16px; }
  .hero-inner { padding: 0 16px; }
  .hero-qmark { font-size: 80px; }
}

/* ============================================================
   TOPICS — active state in category bar
============================================================ */
.topics-bar a.current-topic,
.cat-bar a.current-topic {
  color: var(--orange);
  background: var(--orange-soft);
  font-weight: 500;
}

/* ============================================================
   TOPICS — active state in category bar
============================================================ */
.topics-bar a.current-topic,
.cat-bar a.current-topic {
  color: var(--orange);
  background: var(--orange-soft);
  font-weight: 500;
}

/* ============================================================
   ABOUT PAGE
============================================================ */
@media (max-width: 600px) {
  .contact-modal { padding: 28px 20px; }
  .contact-modal-header h2 { font-size: 18px; }
}
/* ============================================================
   CONTACT MODAL — fixed positioning, full overlay
============================================================ */
#contact-modal,
.contact-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 999999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  overflow-y: auto;
}

#contact-modal.open,
.contact-modal-overlay.open {
  display: flex;
}

.contact-modal {
  background: #ffffff;
  border-radius: 16px;
  padding: 36px 32px;
  width: 100%;
  max-width: 460px;
  position: relative;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
  margin: auto;
  box-sizing: border-box;
}

.contact-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #f9f7f4;
  color: #888;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all 0.15s;
}

.contact-modal-close:hover {
  background: #f97316;
  border-color: #f97316;
  color: #fff;
}

.contact-modal-header {
  text-align: center;
  margin-bottom: 24px;
}

.contact-modal-icon {
  width: 52px;
  height: 52px;
  background: #f97316;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-size: 24px;
  font-style: italic;
  color: #fff;
  margin: 0 auto 14px;
}

.contact-modal-header h2 {
  font-family: Georgia, serif;
  font-size: 22px;
  color: #2d1f14;
  margin-bottom: 6px;
  font-weight: 600;
}

.contact-modal-header p {
  font-size: 13px;
  color: #888;
  line-height: 1.5;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-field label {
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
}

.contact-field input[type="text"],
.contact-field input[type="email"],
.contact-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #e0dbd3;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  color: #1a1a1a;
  background: #fff;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.contact-field input[type="text"]:focus,
.contact-field input[type="email"]:focus,
.contact-field textarea:focus {
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #bbb;
}

.contact-field textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

.contact-submit {
  width: 100%;
  padding: 13px;
  background: #f97316;
  color: #fff;
  border: none;
  border-radius: 24px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 4px;
  transition: background 0.2s;
}

.contact-submit:hover { background: #fb923c; }
.contact-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.contact-success {
  display: none;
  text-align: center;
  padding: 20px 0 8px;
}

.contact-success-icon {
  width: 60px;
  height: 60px;
  background: #f0fdf4;
  border: 2px solid #86efac;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 16px;
  color: #16a34a;
}

.contact-success h3 {
  font-family: Georgia, serif;
  font-size: 20px;
  color: #2d1f14;
  margin-bottom: 8px;
}

.contact-success p {
  font-size: 14px;
  color: #888;
}

/* Responsive */
@media (max-width: 500px) {
  .contact-modal { padding: 28px 18px; }
  .contact-modal-header h2 { font-size: 19px; }
}

/* ── Topic bar active state ── */
.topics-bar a.current-topic {
  color: #f97316;
  font-weight: 500;
}

/* ============================================================
   SITE CONTAINER — centred max-width wrapper (was missing)
============================================================ */
.site-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
  width: 100%;
}

/* ============================================================
   FOOTER — fixed grid, padding and Legal column
============================================================ */
.site-footer {
  background: #1a2e1a;
  padding: 56px 0 0;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr !important;
  gap: 40px !important;
  margin-bottom: 48px !important;
  align-items: start;
}

.footer-brand .logo-text {
  font-family: Georgia, serif;
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
  text-decoration: none;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
}

.social-btn:hover {
  background: #2e7d4f;
  border-color: #2e7d4f;
  color: #fff;
}

.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4caf78;
  margin-bottom: 16px;
  font-weight: 600;
  font-family: sans-serif;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-col ul li a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  margin: 0;
}

.footer-bottom nav {
  display: flex;
  gap: 20px;
}

.footer-bottom nav a {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-bottom nav a:hover { color: rgba(255,255,255,0.7); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr !important; }
}

@media (max-width: 600px) {
  .site-container { padding: 0 16px; }
  .footer-grid { grid-template-columns: 1fr !important; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
