/*
Theme Name: Joanna Boyd Buyers Advocate
Theme URI: https://joannaboyd.com.au
Author: Joel Hjalmarsson
Author URI: https://joelhjalmarsson.com
Description: Luxury buyers advocate theme with SEO schema markup, meta tags, and optimised page templates
Version: 1.3.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: joanna-boyd
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 7.4
*/

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #1a1a2e;
  --charcoal: #2d2d3a;
  --cream: #faf8f5;
  --accent: #c9a050;
  --accent-dark: #a68535;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  line-height: 1.2;
}

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

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Top Contact Bar */
.top-bar {
  display: none;
  background: var(--primary);
  color: var(--white);
  padding: 0.5rem 0;
}

@media (min-width: 768px) {
  .top-bar {
    display: block;
  }
}

.top-bar-content {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.top-bar-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  transition: color 0.3s ease;
}

.top-bar-link:hover {
  color: var(--accent);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--cream);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.site-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.logo-title {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary);
}

.logo-subtitle {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: 0.7;
}

.main-nav {
  display: none;
}

.main-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.main-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: var(--accent);
}

.header-cta {
  display: none;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--primary);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 160, 80, 0.3);
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .main-nav {
    display: block;
  }
  .header-cta {
    display: block;
  }
  .mobile-menu-btn {
    display: none;
  }
  .logo-title {
    font-size: 1.5rem;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 8s ease-out forwards;
}

@keyframes kenBurns {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26, 26, 46, 0.85), rgba(26, 26, 46, 0.6));
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 6rem 1.5rem 2rem;
}

.award-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 160, 80, 0.2);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-title .accent {
  color: var(--accent);
}

.hero-text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 2px solid var(--accent);
  color: var(--white);
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--primary);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.scroll-indicator .arrow {
  display: block;
  margin-top: 0.5rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3.5rem;
  }
  .hero-buttons {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }
  .hero-content {
    max-width: 50%;
  }
}

/* Section Labels */
.section-label {
  display: block;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-label.light {
  color: var(--accent);
}

/* Link Accent */
.link-accent {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 600;
  transition: color 0.3s ease;
}

.link-accent:hover {
  color: var(--accent-dark);
}

.link-accent svg {
  transition: transform 0.3s ease;
}

.link-accent:hover svg {
  transform: translateX(4px);
}

/* Intro/Stats Section */
.intro-section {
  padding: 5rem 0;
  background: var(--white);
}

.intro-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.intro-header h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.intro-header p {
  font-size: 1.125rem;
  color: var(--charcoal);
  opacity: 0.8;
  line-height: 1.7;
}

.stats-grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: rgba(26, 26, 46, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--charcoal);
  opacity: 0.7;
}

@media (min-width: 768px) {
  .intro-header h2 {
    font-size: 2.5rem;
  }
  .stats-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Services Preview */
.services-section {
  padding: 5rem 0;
  background: var(--cream);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--charcoal);
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.service-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 46, 0.6), transparent);
}

.service-content {
  padding: 1.5rem;
}

.service-icon {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  z-index: 2;
}

.service-content h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.service-content p {
  font-size: 0.875rem;
  color: var(--charcoal);
  opacity: 0.85;
}

/* Utility classes */
.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-header h2 {
    font-size: 2.5rem;
  }
}

/* About Preview */
.about-preview {
  padding: 5rem 0;
  background: var(--primary);
  color: var(--white);
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-accent {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 120px;
  height: 120px;
  background: var(--accent);
  border-radius: 0.5rem;
  z-index: -1;
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.about-content p {
  opacity: 0.9;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.about-quote {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 0.5rem;
  border-left: 4px solid var(--accent);
  margin: 2rem 0;
  font-style: italic;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.about-quote svg {
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: block;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-content h2 {
    font-size: 2.5rem;
  }
}

/* Awards Section */
.awards-section {
  padding: 5rem 0;
  background: var(--white);
}

.awards-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .awards-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.award-card {
  text-align: center;
  padding: 2rem;
  background: var(--cream);
  border-radius: 0.5rem;
  border: 1px solid rgba(201, 160, 80, 0.2);
  transition: border-color 0.3s ease;
}

.award-card:hover {
  border-color: rgba(201, 160, 80, 0.4);
}

.award-card .award-icon {
  width: 64px;
  height: 64px;
  background: rgba(201, 160, 80, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin: 0 auto 1rem;
}

.award-year {
  display: block;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.award-card h4 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.award-card p {
  font-size: 0.875rem;
  color: var(--charcoal);
  opacity: 0.6;
}

/* Testimonials */
.testimonials-section {
  padding: 5rem 0;
  background: var(--cream);
}

.testimonials-grid {
  display: grid;
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-quote-icon {
  color: var(--accent);
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--charcoal);
  opacity: 0.8;
  line-height: 1.7;
  flex-grow: 1;
  font-style: italic;
}

.testimonial-footer {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.author-name {
  font-weight: 600;
  color: var(--primary);
}

.author-type {
  font-size: 0.875rem;
  color: var(--charcoal);
  opacity: 0.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 600;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* CTA Section */
.cta-section {
  position: relative;
  padding: 5rem 0;
  background: var(--primary);
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 46, 0.9);
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.cta-content h2 .text-accent {
  color: var(--accent);
}

.cta-content p {
  color: var(--white);
  margin-bottom: 2rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  font-size: 1.125rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.cta-section .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--primary);
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 0.25rem;
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.btn-outline-white:hover {
  border-color: var(--accent);
  color: var(--accent);
}

@media (min-width: 768px) {
  .cta-content h2 {
    font-size: 2.5rem;
  }
}

/* Footer */
.site-footer {
  background: var(--primary);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-grid-4 {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid-4 {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand .logo-title {
  color: var(--white);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.footer-brand .logo-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.footer-brand p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 400px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links li {
  margin-bottom: 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--accent);
}

.address-link {
  align-items: flex-start;
}

.address-link svg {
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.member-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.member-badge-accent {
  color: var(--accent);
  font-size: 0.875rem;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 99;
  padding: 6rem 2rem 2rem;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu li {
  margin-bottom: 1rem;
}

.mobile-menu a {
  font-size: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  color: var(--primary);
}

/* Page Templates */
.page-hero {
  padding: 8rem 0 4rem;
  background: var(--primary);
  color: var(--white);
  text-align: center;
}

.page-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.page-hero p {
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .page-hero {
    padding: 10rem 0 5rem;
  }
  .page-hero h1 {
    font-size: 3.5rem;
  }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.bg-primary { background: var(--primary); }
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.py-5 { padding-top: 5rem; padding-bottom: 5rem; }

/* AOS Animations */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(40px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

[data-aos="fade-right"] {
  transform: translateX(-40px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-left"] {
  transform: translateX(40px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
}

/* ============================================
   SERVICES PAGE STYLES
   ============================================ */

/* Services Hero */
.services-hero {
  padding: 10rem 0 5rem;
  background: var(--primary);
}

.services-hero .section-label {
  color: var(--accent);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  display: block;
  margin-bottom: 0.75rem;
}

.services-hero h1 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: 800px;
}

.services-hero .hero-intro {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 700px;
}

@media (min-width: 768px) {
  .services-hero h1 {
    font-size: 3rem;
  }
}

/* Main Services Section */
.main-services-section {
  padding: 5rem 0;
  background: var(--white);
}

.main-services-section .section-title {
  font-size: 1.875rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: 3rem;
}

.main-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .main-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.main-service-card {
  background: var(--cream);
  border-radius: 0.5rem;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.main-service-card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(201, 160, 80, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon-box svg {
  color: var(--accent);
}

.main-service-card h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.main-service-card > p {
  color: rgba(45, 45, 58, 0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  font-size: 0.875rem;
  color: rgba(45, 45, 58, 0.6);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Buyer Types Section */
.buyer-types-section {
  padding: 5rem 0;
  background: var(--white);
}

.buyer-types-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.buyer-types-section .section-label {
  color: var(--accent);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  display: block;
  margin-bottom: 0.75rem;
}

.buyer-types-section h2 {
  font-size: 1.875rem;
  color: var(--primary);
}

.buyer-types-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .buyer-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.buyer-type-card {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  height: 20rem;
}

.buyer-type-image {
  position: absolute;
  inset: 0;
}

.buyer-type-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.buyer-type-card:hover .buyer-type-image img {
  transform: scale(1.05);
}

.buyer-type-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--primary), rgba(26, 26, 46, 0.6), transparent);
}

.buyer-type-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  color: var(--white);
}

.buyer-type-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.buyer-type-header svg {
  color: var(--accent);
}

.buyer-type-header h3 {
  font-size: 1.25rem;
  color: var(--white);
  margin: 0;
}

.buyer-type-content p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Process Section */
.process-section {
  padding: 5rem 0;
  background: var(--cream);
}

.process-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.process-section .section-label {
  color: var(--accent);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  display: block;
  margin-bottom: 0.75rem;
}

.process-section h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.process-section .section-intro {
  color: rgba(45, 45, 58, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.process-step {
  text-align: center;
  position: relative;
}

/* process-step-icon removed - step numbers now displayed above icons */

.process-circle {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem auto;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.process-circle svg {
  color: var(--accent);
}

.step-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent);
  margin-bottom: 1rem;
}

.process-step h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.process-step p {
  font-size: 0.875rem;
  color: rgba(45, 45, 58, 0.7);
  line-height: 1.6;
}

/* Services CTA */
.services-cta {
  padding: 5rem 0;
  background: var(--primary);
  text-align: center;
}

.services-cta h2 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .services-cta h2 {
    font-size: 2.5rem;
  }
}

.services-cta p {
  font-size: 1.125rem;
  color: var(--white);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.services-cta .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--primary);
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.services-cta .btn-primary:hover {
  background: var(--accent-dark);
}

.services-cta .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 0.25rem;
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.services-cta .btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ========================================
   Contact Page Styles
   ======================================== */

/* Contact Hero */
.contact-hero {
    background: var(--primary);
    padding: 5rem 0;
}

.contact-hero-content {
    max-width: 48rem;
}

.contact-hero .hero-label {
    display: inline-block;
    color: var(--accent);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
}

.contact-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--white);
    margin-top: 0.75rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-hero h1 .text-accent {
    color: var(--accent);
}

.contact-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 2fr 1fr;
        gap: 3rem;
    }
}

/* Contact Form */
.contact-form-wrapper {
    
}

.form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .form-row-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.input-with-icon {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(26, 26, 46, 0.4);
    pointer-events: none;
}

.input-with-icon input,
.input-with-icon select {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    border: 1px solid #e5e5e5;
    border-radius: 0.5rem;
    font-size: 1rem;
    background: var(--white);
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.input-with-icon input:focus,
.input-with-icon select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201, 160, 80, 0.2);
}

.input-with-icon select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231a1a2e' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}

.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e5e5;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    min-height: 120px;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201, 160, 80, 0.2);
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--accent);
    color: var(--primary);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: auto;
    align-self: flex-start;
}

.btn-submit:hover {
    background: var(--accent-dark);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.form-disclaimer {
    font-size: 0.875rem;
    color: rgba(26, 26, 46, 0.6);
    margin: 0;
}

/* Contact Info Card */
.contact-info-card {
    background: var(--cream);
    border-radius: 0.5rem;
    padding: 2rem;
}

.info-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
}

a.contact-item:hover .contact-item-value {
    color: var(--accent);
}

a.contact-item:hover .contact-item-icon {
    background: rgba(201, 160, 80, 0.2);
}

.contact-item-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(201, 160, 80, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.contact-item-icon svg {
    color: var(--accent);
}

.contact-item-text {
    display: flex;
    flex-direction: column;
}

.contact-item-label {
    font-weight: 500;
    color: var(--primary);
    margin: 0 0 0.25rem 0;
}

.contact-item-value {
    color: rgba(26, 26, 46, 0.7);
    margin: 0;
    transition: color 0.2s ease;
    line-height: 1.5;
}

/* Prefer to Chat Section */
.prefer-chat {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(26, 26, 46, 0.1);
}

.prefer-chat h4 {
    font-weight: 500;
    color: var(--primary);
    margin: 0 0 0.75rem 0;
}

.prefer-chat p {
    font-size: 0.875rem;
    color: rgba(26, 26, 46, 0.7);
    margin: 0 0 1rem 0;
    line-height: 1.6;
}

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: var(--white);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background 0.2s ease;
}

.btn-call:hover {
    background: #2a2a4e;
}

/* Mobile Responsiveness for Contact Page */
@media (max-width: 767px) {
    .contact-hero {
        padding: 3rem 0;
    }
    
    .contact-section {
        padding: 3rem 0;
    }
    
    .form-row-3 {
        grid-template-columns: 1fr !important;
    }
    
    .contact-info-card {
        padding: 1.5rem;
    }
    
    .btn-submit {
        width: 100%;
    }
}

/* ========================================
   About Page Styles
   ======================================== */

/* About Hero */
.about-hero {
    background: var(--primary);
    padding: 5rem 0;
    overflow: hidden;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.about-hero-content .hero-label {
    display: inline-block;
    color: var(--accent);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
}

.about-hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--white);
    margin-top: 0.75rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-hero-content h1 .text-accent {
    color: var(--accent);
}

.about-hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    line-height: 1.7;
}

.about-hero-image {
    position: relative;
}

.hero-image-wrapper {
    aspect-ratio: 4 / 5;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.experience-badge {
    position: absolute;
    bottom: -1rem;
    left: -1rem;
    background: var(--accent);
    color: var(--primary);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.experience-badge .badge-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.experience-badge .badge-text {
    display: block;
    font-size: 0.875rem;
}

/* About Story */
.about-story {
    padding: 5rem 0;
    background: var(--white);
}

.story-content {
    max-width: 48rem;
    margin: 0 auto;
}

.story-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.875rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.story-content p {
    color: rgba(26, 26, 46, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.story-content p:last-child {
    margin-bottom: 0;
}

/* About Values */
.about-values {
    padding: 5rem 0;
    background: var(--cream);
}

.values-header {
    text-align: center;
    margin-bottom: 4rem;
}

.values-header .section-label {
    display: inline-block;
    color: var(--accent);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
}

.values-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.875rem, 4vw, 2.25rem);
    color: var(--primary);
    margin-top: 0.75rem;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.value-card {
    text-align: center;
    padding: 1.5rem;
}

.value-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(201, 160, 80, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.value-icon svg {
    color: var(--accent);
}

.value-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.value-card p {
    color: rgba(26, 26, 46, 0.7);
    line-height: 1.6;
    font-size: 0.9375rem;
}

/* About CTA */
.about-cta {
    padding: 5rem 0;
    background: var(--primary);
}

.about-cta-content {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.about-cta-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.875rem, 4vw, 2.25rem);
    color: var(--white);
    margin-bottom: 1.5rem;
}

.about-cta-content p {
    color: var(--white);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .about-cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.about-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent);
    color: var(--primary);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 0.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.about-cta .btn-primary:hover {
    background: var(--accent-dark);
}

.btn-text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.btn-text-link:hover {
    color: var(--accent);
}

/* Mobile Responsiveness for About Page */
@media (max-width: 767px) {
    .about-hero {
        padding: 3rem 0;
    }
    
    .about-story {
        padding: 3rem 0;
    }
    
    .about-values {
        padding: 3rem 0;
    }
    
    .about-cta {
        padding: 3rem 0;
    }
    
    .experience-badge {
        bottom: -0.5rem;
        left: -0.5rem;
        padding: 0.75rem 1rem;
    }
    
    .values-header {
        margin-bottom: 2rem;
    }
}

/* ========================================
   Testimonials Page Styles
   ======================================== */

/* Testimonials Hero */
.testimonials-hero {
    background: var(--primary);
    padding: 5rem 0;
}

.testimonials-hero-content {
    max-width: 48rem;
}

.testimonials-hero .hero-label {
    display: inline-block;
    color: var(--accent);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
}

.testimonials-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--white);
    margin-top: 0.75rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.testimonials-hero h1 .text-accent {
    color: var(--accent);
}

.testimonials-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rating-display .stars {
    display: flex;
    gap: 0.25rem;
}

.rating-display .stars svg {
    color: var(--accent);
    width: 1.5rem;
    height: 1.5rem;
}

.rating-display .rating-text {
    color: rgba(255, 255, 255, 0.8);
}

/* Testimonials List */
.testimonials-list {
    padding: 5rem 0;
    background: var(--white);
}

.testimonials-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.testimonial-card-new {
    background: var(--cream);
    border-radius: 0.5rem;
    padding: 2rem;
    height: 100%;
    transition: box-shadow 0.3s ease;
}

.testimonial-card-new:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    margin-bottom: 1rem;
}

.quote-icon svg {
    color: rgba(201, 160, 80, 0.3);
}

.testimonial-quote {
    color: rgba(26, 26, 46, 0.8);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-stars-small {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-stars-small svg {
    color: var(--accent);
}

.testimonial-footer {
    border-top: 1px solid rgba(26, 26, 46, 0.1);
    padding-top: 1rem;
}

.testimonial-name {
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 0.25rem 0;
}

.testimonial-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: rgba(26, 26, 46, 0.6);
}

.testimonial-location {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.testimonial-location svg {
    flex-shrink: 0;
}

.testimonial-type {
    
}

/* Testimonials CTA */
.testimonials-cta {
    padding: 5rem 0;
    background: var(--primary);
}

.testimonials-cta-content {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.testimonials-cta-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.875rem, 4vw, 2.25rem);
    color: var(--white);
    margin-bottom: 1.5rem;
}

.testimonials-cta-content p {
    color: var(--white);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.testimonials-cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .testimonials-cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.testimonials-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent);
    color: var(--primary);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 0.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.testimonials-cta .btn-primary:hover {
    background: var(--accent-dark);
}

.testimonials-cta .btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 0.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.testimonials-cta .btn-outline-white:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Mobile Responsiveness for Testimonials Page */
@media (max-width: 767px) {
    .testimonials-hero {
        padding: 3rem 0;
    }
    
    .testimonials-list {
        padding: 3rem 0;
    }
    
    .testimonials-cta {
        padding: 3rem 0;
    }
    
    .testimonial-card-new {
        padding: 1.5rem;
    }
    
    .rating-display {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* ========================================
   Showcase Page Styles
   ======================================== */

/* Showcase Hero */
.showcase-hero {
    background: var(--primary);
    padding: 5rem 0;
}

.showcase-hero-content {
    max-width: 48rem;
}

.showcase-hero .hero-label {
    display: inline-block;
    color: var(--accent);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
}

.showcase-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--white);
    margin-top: 0.75rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.showcase-hero h1 .text-accent {
    color: var(--accent);
}

.showcase-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    line-height: 1.7;
}

/* Showcase Stats */
.showcase-stats {
    padding: 3rem 0;
    background: var(--white);
}

.stats-grid-3 {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stats-grid-3 .stat-item {
    text-align: center;
}

.stats-grid-3 .stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent);
}

.stats-grid-3 .stat-label {
    color: var(--charcoal);
    opacity: 0.7;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Showcase Gallery */
.showcase-gallery {
    padding: 5rem 0;
    background: var(--cream);
}

.gallery-header {
    text-align: center;
    margin-bottom: 2rem;
}

.gallery-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.875rem, 4vw, 2.25rem);
    color: var(--primary);
    margin-bottom: 1rem;
}

.gallery-header p {
    color: rgba(26, 26, 46, 0.8);
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.7;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    border: none;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--white);
    color: rgba(26, 26, 46, 0.7);
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.8);
}

.filter-btn.active {
    background: var(--accent);
    color: var(--primary);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Property Grid */
.property-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .property-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .property-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Property Card */
.property-card {
    background: var(--white);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
}

.property-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.property-card:hover .property-image img {
    transform: scale(1.05);
}

.property-image {
    aspect-ratio: 4 / 3;
    position: relative;
    overflow: hidden;
    background: #f0f0f0;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.property-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e5e5e5;
    color: #999;
    font-size: 0.875rem;
}

.property-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.property-content {
    padding: 1.5rem;
}

.property-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.property-location {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: rgba(26, 26, 46, 0.6);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.property-location svg {
    flex-shrink: 0;
}

.property-location .price-range {
    margin-left: 0.25rem;
}

.property-specs {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(26, 26, 46, 0.1);
    color: rgba(26, 26, 46, 0.7);
    font-size: 0.875rem;
}

.property-specs .spec {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.no-properties {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    background: var(--white);
    border-radius: 0.5rem;
}

.no-properties p {
    color: rgba(26, 26, 46, 0.7);
}

/* Areas Section */
.showcase-areas {
    padding: 5rem 0;
    background: var(--white);
}

.areas-header {
    text-align: center;
    margin-bottom: 3rem;
}

.areas-header .section-label {
    display: inline-block;
    color: var(--accent);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
}

.areas-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.875rem, 4vw, 2.25rem);
    color: var(--primary);
    margin-top: 0.75rem;
    margin-bottom: 1rem;
}

.areas-header p {
    color: rgba(26, 26, 46, 0.8);
    max-width: 36rem;
    margin: 0 auto;
    line-height: 1.7;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .areas-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.area-column h4 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-weight: 600;
}

.area-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.area-column li {
    padding: 0.375rem 0;
    color: var(--charcoal);
}

/* Showcase CTA */
.showcase-cta {
    padding: 5rem 0;
    background: var(--primary);
}

.showcase-cta-content {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.showcase-cta-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.875rem, 4vw, 2.25rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.showcase-cta-content p {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.showcase-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent);
    color: var(--primary);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 0.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.showcase-cta .btn-primary:hover {
    background: var(--accent-dark);
}

/* Animation for filter */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness for Showcase */
@media (max-width: 767px) {
    .showcase-hero {
        padding: 3rem 0;
    }
    
    .showcase-stats {
        padding: 2rem 0;
    }
    
    .stats-grid-3 {
        gap: 2rem;
    }
    
    .showcase-gallery {
        padding: 3rem 0;
    }
    
    .filter-buttons {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }
    
    .showcase-areas {
        padding: 3rem 0;
    }
    
    .showcase-cta {
        padding: 3rem 0;
    }
}

/* ========================================
   Suburb Guide Styles
   ======================================== */

/* Single Suburb Hero */
.suburb-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: var(--primary);
    overflow: hidden;
}

.suburb-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.suburb-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.suburb-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(26, 26, 46, 0.95), rgba(26, 26, 46, 0.7));
    z-index: 2;
}

.suburb-hero .container {
    position: relative;
    z-index: 3;
}

.suburb-hero-content {
    max-width: 42rem;
    padding: 3rem 0;
}

.suburb-category-badge {
    display: inline-block;
    background: rgba(201, 160, 80, 0.2);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.suburb-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.suburb-tagline {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.suburb-hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.suburb-hero-stats span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
}

.suburb-hero-stats strong {
    color: var(--accent);
    font-weight: 600;
}

/* Stats Section */
.suburb-stats {
    padding: 3rem 0;
    background: var(--white);
    margin-top: -2rem;
    position: relative;
    z-index: 4;
}

.stats-grid-5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .stats-grid-5 {
        grid-template-columns: repeat(5, 1fr);
    }
}

.stat-card {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--cream);
    border-radius: 0.5rem;
}

.stat-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(201, 160, 80, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    color: var(--accent);
}

.stat-card .stat-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.stat-card .stat-label {
    font-size: 0.8125rem;
    color: rgba(26, 26, 46, 0.6);
}

/* Section Headers */
.suburb-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.suburb-section-header .section-label {
    display: inline-block;
    color: var(--accent);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
}

.suburb-section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    color: var(--primary);
    margin-top: 0.5rem;
}

/* Lifestyle Section */
.suburb-lifestyle {
    padding: 5rem 0;
    background: var(--cream);
}

.lifestyle-content {
    max-width: 48rem;
    margin: 0 auto;
}

.lifestyle-description {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 2rem;
}

.lifestyle-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

.lifestyle-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--charcoal);
}

.lifestyle-highlights svg {
    flex-shrink: 0;
    color: var(--accent);
    margin-top: 0.125rem;
}

/* Tips Section */
.suburb-tips {
    padding: 5rem 0;
    background: var(--white);
}

.tips-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .tips-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.tips-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--cream);
    border-radius: 0.5rem;
}

.tip-item svg {
    flex-shrink: 0;
    color: var(--accent);
    margin-top: 0.125rem;
}

.tip-item span {
    color: var(--charcoal);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.joanna-quote-card {
    background: var(--primary);
    border-radius: 0.5rem;
    padding: 2rem;
}

.quote-icon {
    color: var(--accent);
    opacity: 0.5;
    margin-bottom: 1rem;
}

.joanna-quote-card blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--white);
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-author img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
}

.quote-author strong {
    display: block;
    color: var(--white);
    font-size: 0.9375rem;
}

.quote-author span {
    color: var(--accent);
    font-size: 0.8125rem;
}

/* Schools Section */
.suburb-schools {
    padding: 5rem 0;
    background: var(--cream);
}

.schools-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .schools-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.school-column {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.school-column h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(26, 26, 46, 0.1);
}

.school-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.school-column li {
    padding: 0.5rem 0;
    color: var(--charcoal);
    font-size: 0.9375rem;
    border-bottom: 1px solid rgba(26, 26, 46, 0.05);
}

.school-column li:last-child {
    border-bottom: none;
}

/* Related Properties */
.suburb-properties {
    padding: 5rem 0;
    background: var(--white);
}

.related-properties-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .related-properties-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Suburb CTA */
.suburb-cta {
    padding: 5rem 0;
    background: var(--primary);
}

.suburb-cta-content {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto;
}

.suburb-cta h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.suburb-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.suburb-cta .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .suburb-cta .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.suburb-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent);
    color: var(--primary);
    font-weight: 600;
    padding: 1rem 1.5rem;
    border-radius: 0.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.suburb-cta .btn-primary:hover {
    background: var(--accent-dark);
}

.suburb-cta .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    padding: 1rem 1.5rem;
    border-radius: 0.25rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
}

.suburb-cta .btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

/* Back Navigation */
.suburb-nav {
    padding: 2rem 0;
    background: var(--cream);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.back-link:hover {
    color: var(--accent);
}

/* ========================================
   Suburb Archive Styles
   ======================================== */

.suburbs-archive-hero {
    background: var(--primary);
    padding: 5rem 0;
}

.suburbs-hero-content {
    max-width: 42rem;
}

.suburbs-hero-content .hero-label {
    display: inline-block;
    color: var(--accent);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
}

.suburbs-hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--white);
    margin-top: 0.75rem;
    margin-bottom: 1rem;
}

.suburbs-hero-content h1 .text-accent {
    color: var(--accent);
}

.suburbs-hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    line-height: 1.7;
}

.suburbs-archive-grid {
    padding: 5rem 0;
    background: var(--cream);
}

.suburbs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .suburbs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .suburbs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.suburb-card {
    display: block;
    background: var(--white);
    border-radius: 0.5rem;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.suburb-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.suburb-card:hover .suburb-card-image img {
    transform: scale(1.05);
}

.suburb-card-image {
    aspect-ratio: 16 / 10;
    position: relative;
    overflow: hidden;
    background: #e5e5e5;
}

.suburb-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.suburb-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e5e5e5, #d0d0d0);
}

.suburb-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent);
    color: var(--primary);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
}

.suburb-card-content {
    padding: 1.5rem;
}

.suburb-card-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.suburb-card-content .suburb-tagline {
    font-size: 0.9375rem;
    color: rgba(26, 26, 46, 0.7);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.suburb-card-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(26, 26, 46, 0.1);
}

.suburb-card-stats span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: rgba(26, 26, 46, 0.7);
}

.suburb-card-stats svg {
    color: var(--accent);
}

.view-guide {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.875rem;
    transition: gap 0.2s ease;
}

.suburb-card:hover .view-guide {
    gap: 0.75rem;
}

.no-suburbs {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--white);
    border-radius: 0.5rem;
}

.suburbs-archive-cta {
    padding: 5rem 0;
    background: var(--primary);
}

.suburbs-cta-content {
    text-align: center;
    max-width: 36rem;
    margin: 0 auto;
}

.suburbs-cta-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.75rem, 4vw, 2rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.suburbs-cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.suburbs-cta-content .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent);
    color: var(--primary);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 0.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.suburbs-cta-content .btn-primary:hover {
    background: var(--accent-dark);
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
    .suburb-hero {
        min-height: 50vh;
    }
    
    .suburb-hero-content {
        padding: 2rem 0;
    }
    
    .suburb-stats {
        margin-top: 0;
        padding: 2rem 0;
    }
    
    .suburb-lifestyle,
    .suburb-tips,
    .suburb-schools,
    .suburb-properties,
    .suburb-cta {
        padding: 3rem 0;
    }
    
    .suburbs-archive-hero {
        padding: 3rem 0;
    }
    
    .suburbs-archive-grid {
        padding: 3rem 0;
    }
    
    .suburbs-archive-cta {
        padding: 3rem 0;
    }
}

/* ========================================
   WHO WE HELP PAGE STYLES
   ======================================== */

/* Hero Section */
.who-we-help-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 8rem 0 6rem;
    text-align: center;
}

.who-we-help-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.who-we-help-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.who-we-help-hero p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .who-we-help-hero {
        padding: 6rem 0 4rem;
    }
    .who-we-help-hero h1 {
        font-size: 2.25rem;
    }
}

/* Buyer Types Section */
.buyer-types-section {
    padding: 6rem 0;
    background: #faf9f7;
}

.buyer-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .buyer-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .buyer-types-grid {
        grid-template-columns: 1fr;
    }
}

/* Buyer Card */
.buyer-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.buyer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.buyer-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.buyer-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.buyer-card:hover .buyer-card-image img {
    transform: scale(1.05);
}

.buyer-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(26, 26, 46, 0.4) 100%);
}

.buyer-card-content {
    padding: 2rem;
}

.buyer-icon {
    width: 60px;
    height: 60px;
    background: rgba(201, 160, 80, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #c9a050;
}

.buyer-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.buyer-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Buyer Benefits List */
.buyer-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.buyer-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #444;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.buyer-benefits li:last-child {
    border-bottom: none;
}

.buyer-benefits li svg {
    color: #c9a050;
    flex-shrink: 0;
}

/* Text Button */
.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #c9a050;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.btn-text:hover {
    gap: 0.75rem;
}

/* Process Section */
.who-we-help-process {
    padding: 6rem 0;
    background: #fff;
}

.who-we-help-process .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.who-we-help-process .section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.who-we-help-process .section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    color: #c9a050;
    margin-bottom: 1rem;
    line-height: 1;
}

.process-step h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}

.process-step p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
}

/* Testimonial Highlight */
.who-we-help-testimonial {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.testimonial-highlight {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-highlight .quote-icon {
    color: #c9a050;
    margin-bottom: 2rem;
    opacity: 0.6;
}

.testimonial-highlight blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 400;
    font-style: italic;
    color: #fff;
    line-height: 1.6;
    margin: 0 0 2rem 0;
}

@media (max-width: 768px) {
    .testimonial-highlight blockquote {
        font-size: 1.35rem;
    }
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name {
    font-weight: 600;
    color: #c9a050;
    font-size: 1rem;
}

.author-type {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* CTA Section */
.who-we-help-cta {
    padding: 6rem 0;
    background: #faf9f7;
    text-align: center;
}

.who-we-help-cta .cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.who-we-help-cta h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.who-we-help-cta p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.who-we-help-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Outline Button */
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    color: #1a1a2e;
    border: 2px solid #1a1a2e;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #1a1a2e;
    color: #fff;
}

/* =====================================================
   DROPDOWN NAVIGATION
   ===================================================== */
.main-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.main-nav > ul > li {
  position: relative;
}

.main-nav .has-dropdown > a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav .has-dropdown > a svg {
  transition: transform 0.2s ease;
}

.main-nav .has-dropdown:hover > a svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  border-radius: 0.75rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 100;
  margin-top: 0.75rem;
  display: flex;
  gap: 0.5rem;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.25rem;
  color: var(--charcoal);
  transition: all 0.2s ease;
  font-size: 0.9375rem;
  white-space: nowrap;
  border-radius: 0.5rem;
  text-align: center;
}

.dropdown-menu a:hover {
  color: var(--accent);
  background: var(--cream);
}

/* =====================================================
   PACKAGES SECTION
   ===================================================== */
.packages-section {
  padding: 5rem 0;
  background: var(--cream);
}

.packages-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.packages-section .section-intro {
  max-width: 640px;
  margin: 0 auto;
  color: rgba(45, 45, 58, 0.7);
}

.packages-accordion {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item {
  background: var(--white);
  border-radius: 0.75rem;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease;
}

.accordion-trigger:hover {
  background: rgba(0,0,0,0.02);
}

.accordion-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.accordion-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201, 160, 80, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.accordion-icon-box svg {
  color: var(--accent);
}

.accordion-title-group h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  color: var(--primary);
  margin: 0;
}

@media (min-width: 768px) {
  .accordion-title-group h3 {
    font-size: 1.5rem;
  }
}

.accordion-subtitle {
  font-size: 0.875rem;
  color: rgba(45, 45, 58, 0.6);
  margin: 0.25rem 0 0 0;
}

.accordion-chevron {
  color: var(--charcoal);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.accordion-trigger[aria-expanded="true"] .accordion-chevron {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-body {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 1.5rem;
}

.package-description {
  margin-bottom: 1.5rem;
}

.package-description p {
  color: rgba(45, 45, 58, 0.8);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.package-description p:last-child {
  margin-bottom: 0;
}

.package-inclusions {
  background: rgba(250, 248, 245, 0.5);
  border-radius: 0.5rem;
  padding: 1.25rem;
}

.package-inclusions h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.125rem;
  color: var(--accent);
  margin: 0 0 1rem 0;
}

.package-inclusions ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.package-inclusions li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(45, 45, 58, 0.8);
  font-size: 0.9375rem;
  margin-bottom: 0.625rem;
}

.package-inclusions li:last-child {
  margin-bottom: 0;
}

.package-inclusions li svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.packages-cta {
  text-align: center;
  margin-top: 3rem;
}

.packages-cta p {
  color: rgba(45, 45, 58, 0.7);
  margin-bottom: 1rem;
}

/* Smooth scroll offset for anchor links */
#who-i-help,
#what-i-do,
#packages {
  scroll-margin-top: 6rem;
}

/* ==========================================================================
   BLOG STYLES
   ========================================================================== */

/* Blog Hero */
.blog-hero {
    padding: 8rem 0 4rem;
    background-color: var(--cream);
}

.blog-hero-content {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.blog-hero .section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.blog-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.blog-hero p {
    font-size: 1.125rem;
    color: var(--charcoal-70);
    line-height: 1.7;
}

/* Featured Post */
.featured-post {
    padding: 4rem 0;
    background: white;
}

.featured-post-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.featured-post-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .featured-post-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.featured-post-image {
    position: relative;
    aspect-ratio: 16 / 10;
    border-radius: 1rem;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .featured-post-image {
        aspect-ratio: 4 / 3;
    }
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.featured-post-link:hover .featured-post-image img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.375rem 1rem;
    background: var(--accent);
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 9999px;
}

.featured-post-content {
    padding: 1rem 0;
}

@media (min-width: 1024px) {
    .featured-post-content {
        padding: 2rem 0;
    }
}

.post-category {
    display: inline-block;
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.featured-post-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.featured-post-link:hover .featured-post-content h2 {
    color: var(--accent);
}

.featured-post-content > p {
    font-size: 1.125rem;
    color: var(--charcoal-70);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.post-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.post-author img {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    object-fit: cover;
}

.post-author span {
    font-weight: 500;
    color: var(--charcoal-80);
}

.post-date,
.post-read-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--charcoal-60);
    font-size: 0.875rem;
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-weight: 500;
    transition: gap 0.3s ease;
}

.featured-post-link:hover .read-more-link {
    gap: 0.75rem;
}

/* Category Filters */
.blog-categories {
    padding: 2rem 0;
    background: rgba(var(--cream-rgb), 0.5);
    border-top: 1px solid rgba(var(--charcoal-rgb), 0.1);
    border-bottom: 1px solid rgba(var(--charcoal-rgb), 0.1);
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.category-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    background: white;
    color: var(--charcoal-70);
    border: 1px solid rgba(var(--charcoal-rgb), 0.1);
}

.category-pill:hover {
    background: rgba(var(--primary-rgb), 0.05);
    color: var(--primary);
}

.category-pill.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.3);
}

/* Blog Grid */
.blog-grid-section {
    padding: 5rem 0;
    background: white;
}

.blog-grid-section .section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--primary);
    margin-bottom: 3rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(var(--charcoal-rgb), 0.1);
    transition: all 0.3s ease;
}

.blog-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(var(--accent-rgb), 0.3);
    transform: translateY(-4px);
}

.blog-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.blog-card-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 9999px;
}

.blog-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card:hover .blog-card-content h3 {
    color: var(--accent);
}

.blog-card-content > p {
    font-size: 0.875rem;
    color: var(--charcoal-60);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(var(--charcoal-rgb), 0.1);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--charcoal-50);
    font-size: 0.75rem;
}

.card-meta .arrow-icon {
    color: var(--accent);
    opacity: 0;
    transform: translateX(-0.5rem);
    transition: all 0.3s ease;
}

.blog-card:hover .card-meta .arrow-icon {
    opacity: 1;
    transform: translateX(0);
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.blog-pagination a,
.blog-pagination span {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-pagination a {
    background: white;
    color: var(--charcoal-70);
    border: 1px solid rgba(var(--charcoal-rgb), 0.1);
}

.blog-pagination a:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.blog-pagination .current {
    background: var(--primary);
    color: white;
}

/* ==========================================================================
   SINGLE ARTICLE STYLES
   ========================================================================== */

.article-hero {
    padding: 8rem 0 3rem;
    background: var(--cream);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--charcoal-60);
    text-decoration: none;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--accent);
}

.article-category {
    display: inline-block;
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.article-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary);
    margin-bottom: 2rem;
    line-height: 1.2;
    max-width: 48rem;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info img {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    object-fit: cover;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--primary);
}

.author-title {
    font-size: 0.875rem;
    color: var(--charcoal-60);
}

.meta-details {
    display: flex;
    gap: 1.5rem;
}

.meta-details .meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--charcoal-60);
    font-size: 0.875rem;
}

/* Featured Image */
.article-featured-image {
    padding: 0 0 3rem;
    background: var(--cream);
}

.featured-image-wrapper {
    border-radius: 1rem;
    overflow: hidden;
    max-height: 500px;
}

.featured-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Article Content */
.article-content {
    padding: 4rem 0;
    background: white;
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .article-layout {
        grid-template-columns: 2fr 1fr;
        gap: 4rem;
    }
}

.article-body {
    max-width: 100%;
}

.article-body p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--charcoal-80);
    margin-bottom: 1.5rem;
}

.article-body h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--primary);
    margin: 2.5rem 0 1rem;
}

.article-body h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary);
    margin: 2rem 0 1rem;
}

.article-body ul,
.article-body ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.article-body li {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--charcoal-80);
    margin-bottom: 0.75rem;
}

.article-body blockquote {
    border-left: 4px solid var(--accent);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--charcoal-70);
}

.article-body img {
    border-radius: 0.75rem;
    margin: 2rem 0;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(var(--charcoal-rgb), 0.1);
}

.tags-label {
    font-weight: 500;
    color: var(--charcoal-70);
}

.tag-pill {
    padding: 0.375rem 0.875rem;
    background: var(--cream);
    color: var(--charcoal-70);
    font-size: 0.875rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-pill:hover {
    background: var(--accent);
    color: white;
}

/* Sidebar */
.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: var(--cream);
    border-radius: 1rem;
    padding: 1.5rem;
}

.author-card {
    text-align: center;
}

.author-avatar-large {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1rem;
    border-radius: 9999px;
    overflow: hidden;
}

.author-avatar-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-card h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.author-bio {
    font-size: 0.875rem;
    color: var(--charcoal-70);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.author-link {
    color: var(--accent);
    font-weight: 500;
    text-decoration: none;
    font-size: 0.875rem;
}

.author-link:hover {
    text-decoration: underline;
}

.cta-card {
    background: var(--primary);
    color: white;
}

.cta-card h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.cta-card p {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 1.25rem;
}

.cta-card .btn-primary {
    width: 100%;
    justify-content: center;
    margin-bottom: 0.75rem;
    background: var(--accent);
}

.cta-card .btn-secondary {
    width: 100%;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.cta-card .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Related Posts */
.related-posts {
    padding: 5rem 0;
    background: var(--cream);
}

.related-posts .section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--primary);
    margin-bottom: 3rem;
}

.related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .related-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================================================
   TEAM PAGE STYLES
   ========================================================================== */

/* Team Hero */
.team-hero {
    position: relative;
    padding: 8rem 0 5rem;
    background: var(--primary);
    overflow: hidden;
}

.team-hero .hero-decorations {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    pointer-events: none;
}

.team-hero .deco-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--accent);
    filter: blur(60px);
}

.team-hero .deco-circle-1 {
    width: 24rem;
    height: 24rem;
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
}

.team-hero .deco-circle-2 {
    width: 16rem;
    height: 16rem;
    bottom: 0;
    left: 0;
    transform: translate(-50%, 50%);
}

.team-hero-content {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.team-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.team-hero p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* Team Values Bar */
.team-values {
    background: var(--cream);
    border-bottom: 1px solid rgba(var(--charcoal-rgb), 0.1);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-item {
    padding: 2.5rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(var(--charcoal-rgb), 0.1);
}

@media (min-width: 768px) {
    .value-item {
        border-bottom: none;
        border-right: 1px solid rgba(var(--charcoal-rgb), 0.1);
    }
    
    .value-item:last-child {
        border-right: none;
    }
}

.value-item svg {
    color: var(--accent);
    margin: 0 auto 0.75rem;
}

.value-item h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
}

.value-item p {
    font-size: 0.875rem;
    color: var(--charcoal-60);
}

/* Team Featured Section (Joanna) */
.team-featured {
    padding: 5rem 0;
    background: white;
}

@media (min-width: 1024px) {
    .team-featured {
        padding: 7rem 0;
    }
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 72rem;
    margin: 0 auto;
    align-items: center;
}

@media (min-width: 1024px) {
    .featured-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.featured-image {
    position: relative;
}

.featured-image > img {
    aspect-ratio: 3 / 4;
    width: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.featured-image .deco-box-1 {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 12rem;
    height: 12rem;
    background: rgba(var(--accent-rgb), 0.1);
    border-radius: 0.5rem;
    z-index: -1;
}

.featured-image .deco-box-2 {
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    width: 8rem;
    height: 8rem;
    border: 2px solid rgba(var(--accent-rgb), 0.3);
    border-radius: 0.5rem;
    z-index: -1;
}

.experience-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    padding: 1rem;
    text-align: center;
}

.experience-badge .years {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent);
    font-weight: 600;
    line-height: 1;
}

.experience-badge .label {
    font-size: 0.875rem;
    color: var(--charcoal-70);
}

.featured-content {
    padding: 1rem 0;
}

@media (min-width: 1024px) {
    .featured-content {
        padding-left: 2rem;
    }
}

.featured-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3rem);
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.bio-text {
    margin-bottom: 2rem;
}

.bio-text p {
    color: var(--charcoal-80);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.awards-box {
    background: var(--cream);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.awards-box h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.awards-box ul {
    list-style: none;
}

.awards-box li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--charcoal-70);
    margin-bottom: 0.5rem;
}

.awards-box li svg {
    color: var(--accent);
    flex-shrink: 0;
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.contact-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-links a:hover {
    color: var(--accent);
}

/* Team Quote Section */
.team-quote {
    padding: 4rem 0;
    background: var(--primary);
}

.quote-content {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.quote-icon {
    color: var(--accent);
    opacity: 0.5;
    margin: 0 auto 1.5rem;
}

.quote-content blockquote {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    color: white;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.quote-content cite {
    color: var(--accent);
    font-style: normal;
}

/* Team Grid Section */
.team-grid-section {
    padding: 5rem 0;
    background: var(--cream);
}

@media (min-width: 1024px) {
    .team-grid-section {
        padding: 7rem 0;
    }
}

.team-grid-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.team-grid-section .section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.875rem, 3vw, 2.5rem);
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.team-grid-section .section-header p {
    color: var(--charcoal-70);
    max-width: 40rem;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.team-card {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
}

.team-card:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.team-card-image {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.7s ease;
}

.team-card:hover .team-card-image img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(var(--primary-rgb), 0.8), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1.5rem;
}

.team-card:hover .card-overlay {
    opacity: 1;
}

.card-actions {
    display: flex;
    gap: 0.75rem;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.team-card:hover .card-actions {
    transform: translateY(0);
}

.card-actions a {
    width: 2.5rem;
    height: 2.5rem;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
}

.card-actions a:hover {
    background: var(--accent);
    color: white;
}

.team-card-content {
    padding: 1.5rem;
}

.team-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
}

.team-card-content .role {
    display: block;
    font-size: 0.875rem;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.team-card-content > p {
    font-size: 0.875rem;
    color: var(--charcoal-70);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.specialties span {
    padding: 0.25rem 0.75rem;
    background: var(--cream);
    color: var(--charcoal-70);
    font-size: 0.75rem;
    border-radius: 9999px;
}

/* Team CTA Section */
.team-cta {
    padding: 5rem 0;
    background: var(--primary);
}

.team-cta .cta-content {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.team-cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: white;
    margin-bottom: 1rem;
}

.team-cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.team-cta .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.team-cta .btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.team-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}
