/*
Theme Name: Housologist
Theme URI: https://housologist.com
Author: Housologist
Author URI: https://housologist.com
Description: A luxury real estate advisory theme with emerald green and gold palette. Self-installing with custom post types for properties and inquiries.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: housologist
Requires at least: 5.0
Requires PHP: 7.4
*/

/* ===== CSS RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #046307;
  --primary-dark: #034a05;
  --primary-light: #e8f5e9;
  --secondary: #c6a335;
  --secondary-light: #e5ce89;
  --gold-gradient: linear-gradient(to right, #C6A355, #E5CE89, #C6A355);
  --text-dark: #1a3a1c;
  --text-muted: #5a7a5c;
  --text-light: #8a9a8c;
  --bg-light: #f8faf8;
  --bg-white: #ffffff;
  --border-color: #dce8dd;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== CONTAINER ===== */
.container-custom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 640px) { .container-custom { padding: 0 24px; } }
@media (min-width: 1024px) { .container-custom { padding: 0 32px; } }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: var(--secondary);
  color: #fff;
}
.btn-primary:hover {
  background: #b8952e;
  color: #fff;
}
.btn-outline {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.btn-outline:hover {
  background: #fff;
  color: var(--primary);
}
.btn-outline-dark {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: #fff;
}
.btn-green {
  background: var(--primary);
  color: #fff;
}
.btn-green:hover {
  background: var(--primary-dark);
  color: #fff;
}
.btn-lg {
  padding: 16px 40px;
  font-size: 16px;
}
.btn-full {
  width: 100%;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 16px 0;
}
.navbar .container-custom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar-logo {
  z-index: 1001;
}
.navbar-logo .logo-text {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #fff;
  display: block;
}
.navbar.scrolled .logo-text {
  color: var(--primary);
}
.navbar-logo .logo-sub {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.8);
  display: block;
}
.navbar.scrolled .logo-sub {
  color: var(--text-muted);
}
.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #fff;
  position: relative;
}
.navbar.scrolled .nav-links a {
  color: var(--primary);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--secondary);
}
.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
  color: var(--secondary);
}
.nav-cta .btn {
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.navbar.scrolled .nav-cta .btn {
  box-shadow: none;
}

/* Mobile menu */
.mobile-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.mobile-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: #fff;
  margin: 6px 0;
  transition: all 0.3s ease;
}
.navbar.scrolled .mobile-toggle span {
  background: var(--primary);
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 1000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
.mobile-menu.active {
  display: flex;
}
.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--primary);
}
.mobile-menu a:hover {
  color: var(--secondary);
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .mobile-toggle { display: none; }
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.3), rgba(0,0,0,0.3));
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
  padding-top: 80px;
}
.hero-label {
  color: var(--secondary);
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero p {
  max-width: 640px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  line-height: 1.6;
}
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}
@media (min-width: 640px) {
  .hero h1 { font-size: 64px; }
  .hero-buttons { flex-direction: row; }
}
@media (min-width: 1024px) {
  .hero h1 { font-size: 80px; }
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: var(--primary);
  color: #fff;
  padding: 128px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/abstract_luxury_emerald_and_gold_texture.png');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
}
.page-header .container-custom {
  position: relative;
  z-index: 1;
}
.page-header h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
}
.page-header p {
  color: rgba(255,255,255,0.8);
  max-width: 640px;
  margin: 0 auto;
  font-size: 18px;
}

/* ===== SECTIONS ===== */
.section {
  padding: 96px 0;
}
.section-light {
  background: var(--bg-light);
}
.section-label {
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  font-size: 14px;
  display: block;
  margin-bottom: 16px;
}
.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}
.section-desc {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 640px;
}
.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }

/* ===== GRID LAYOUTS ===== */
.grid { display: grid; gap: 32px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* ===== PROPERTY CARD ===== */
.property-card {
  background: #fff;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.property-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(4,99,7,0.08);
}
.property-card-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.property-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.property-card:hover .property-card-image img {
  transform: scale(1.05);
}
.property-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--secondary);
  color: #fff;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.property-card-body {
  padding: 24px;
}
.property-card-location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 8px;
}
.property-card-location svg {
  width: 14px;
  height: 14px;
  color: var(--secondary);
}
.property-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}
.property-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.property-card-features span {
  background: var(--primary-light);
  color: var(--primary);
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
}
.property-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}
.property-card-price {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
}
.property-card-link {
  color: var(--secondary);
  font-weight: 600;
  font-size: 14px;
}

/* ===== SERVICE CARD ===== */
.service-card {
  background: #fff;
  border: 1px solid var(--border-color);
  padding: 32px;
  transition: all 0.3s ease;
}
.service-card:hover {
  border-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(4,99,7,0.05);
}
.service-card-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.service-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}
@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}
.about-image-wrapper {
  position: relative;
}
.about-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-image-border {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 66%;
  aspect-ratio: 1;
  border: 2px solid var(--secondary);
  z-index: 0;
  display: none;
}
@media (min-width: 768px) {
  .about-image-border { display: block; }
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--primary);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/abstract_luxury_emerald_and_gold_texture.png');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  mix-blend-mode: overlay;
}
.cta-section .container-custom {
  position: relative;
  z-index: 1;
}
.cta-section h2 {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}
.cta-section p {
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto 40px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--primary);
  color: #fff;
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
}
.footer-logo .logo-text {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #fff;
}
.footer-logo .logo-sub {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.6);
  display: block;
  margin-top: 4px;
}
.footer-desc {
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  line-height: 1.6;
  margin-top: 24px;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
}
.footer-social a:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}
.footer-heading {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--secondary);
  margin-bottom: 24px;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: var(--secondary);
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
}
.footer-contact svg {
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact a {
  color: rgba(255,255,255,0.8);
}
.footer-contact a:hover {
  color: var(--secondary);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.5);
}
.footer-bottom-links a:hover {
  color: #fff;
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
  transition: background 0.3s ease;
}
.whatsapp-float:hover {
  background: #128C7E;
}
.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 32px;
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.contact-info-item:hover .contact-info-icon {
  background: var(--primary);
  color: #fff;
}
.contact-info-item.whatsapp .contact-info-icon {
  background: #e8f5e9;
  color: #25D366;
}
.contact-info-item.whatsapp:hover .contact-info-icon {
  background: #25D366;
  color: #fff;
}
.contact-info-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}
.contact-info-item p {
  color: var(--text-muted);
  font-size: 14px;
}
.contact-info-item .small {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 4px;
}

/* Contact Form */
.contact-form-wrapper {
  background: #fff;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(4,99,7,0.05);
  border: 1px solid var(--border-color);
}
@media (min-width: 768px) {
  .contact-form-wrapper { padding: 40px; }
}
.contact-form-wrapper h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 8px 0;
  border: none;
  border-bottom: 1px solid var(--border-color);
  background: transparent;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  transition: border-color 0.3s ease;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}
.form-group textarea {
  min-height: 100px;
  resize: none;
}
.form-message {
  padding: 12px 16px;
  margin-bottom: 16px;
  font-size: 14px;
}
.form-message.success {
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid var(--primary);
}
.form-message.error {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

/* ===== PROPERTY DETAILS ===== */
.property-hero {
  position: relative;
  height: 60vh;
  min-height: 500px;
  width: 100%;
}
.property-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.property-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent, rgba(0,0,0,0.3));
}
.property-hero-back {
  position: absolute;
  top: 112px;
  left: 16px;
  z-index: 10;
}
@media (min-width: 768px) {
  .property-hero-back { left: 32px; }
}
.property-hero-back a {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.1);
  transition: background 0.3s;
}
.property-hero-back a:hover {
  background: rgba(255,255,255,0.2);
}
.property-hero-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 32px;
  color: #fff;
  z-index: 10;
}
@media (min-width: 768px) {
  .property-hero-info { padding: 64px; }
}
.property-type-badge {
  display: inline-block;
  background: var(--secondary);
  color: #fff;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.property-hero-info h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .property-hero-info h1 { font-size: 56px; }
}
.property-hero-location {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  gap: 8px;
}
.property-hero-location svg {
  color: var(--secondary);
}

.property-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  padding: 64px 0;
}
@media (min-width: 1024px) {
  .property-content { grid-template-columns: 2fr 1fr; }
}
.property-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .property-features-grid { grid-template-columns: 1fr 1fr; }
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--bg-light);
  border: 1px solid rgba(220,232,221,0.5);
}
.feature-item .check-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-item span {
  font-weight: 500;
  color: rgba(26,58,28,0.8);
}

.property-sidebar {
  position: sticky;
  top: 112px;
}
.property-sidebar-inner {
  background: #fff;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 60px rgba(4,99,7,0.05);
  padding: 32px;
}
.property-price {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.property-price-label {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 32px;
}
.property-sidebar-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.property-sidebar hr {
  border: none;
  border-top: 1px solid var(--border-color);
  margin: 0 0 32px;
}
.agent-card {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.agent-card img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--secondary);
}
.agent-card .agent-name {
  font-weight: 700;
}
.agent-card .agent-role {
  font-size: 12px;
  color: var(--text-muted);
}
.agent-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}
.agent-contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
}
.agent-contact a:hover {
  color: var(--primary);
}
.agent-contact a.whatsapp-link {
  color: #25D366;
}
.agent-contact a.whatsapp-link:hover {
  color: #128C7E;
}

/* ===== MISSION/VISION CARDS ===== */
.mv-card {
  background: #fff;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  border-top: 4px solid var(--secondary);
  text-align: center;
}
.mv-card:nth-child(2) {
  border-top-color: var(--primary);
}
.mv-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}
.mv-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== FILTER BAR ===== */
.filter-bar {
  border-bottom: 1px solid var(--border-color);
  background: #fff;
  position: sticky;
  top: 80px;
  z-index: 30;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.filter-bar .container-custom {
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .filter-bar .container-custom { flex-direction: row; }
}
.search-wrapper {
  position: relative;
  width: 100%;
  max-width: 384px;
}
.search-wrapper svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  width: 16px;
  height: 16px;
}
.search-wrapper input {
  width: 100%;
  padding: 8px 16px 8px 40px;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}
.search-wrapper input:focus {
  border-color: var(--secondary);
}
.filter-buttons {
  display: flex;
  gap: 12px;
  overflow-x: auto;
}
.filter-btn {
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--border-color);
  background: #fff;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
  font-family: var(--font-body);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--primary);
  color: var(--primary);
}

/* ===== DEVELOPER SECTION ===== */
.developer-card {
  background: var(--primary-light);
  padding: 24px;
  border: 1px solid var(--border-color);
}
.developer-card h3 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 8px;
}
.developer-card p {
  color: var(--text-muted);
  font-size: 14px;
}

/* ===== UTILITIES ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-2 { gap: 8px; }
.gap-4 { gap: 16px; }

/* WordPress specific */
.wp-block-image img { max-width: 100%; height: auto; }
.aligncenter { text-align: center; margin: 0 auto; }
.alignleft { float: left; margin-right: 20px; }
.alignright { float: right; margin-left: 20px; }
.screen-reader-text { clip: rect(1px, 1px, 1px, 1px); position: absolute !important; height: 1px; width: 1px; overflow: hidden; }
