/* Import Premium Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* CSS Variables & Design Token System */
:root {
  /* Zimbabwe-inspired Color System (Accessible & Premium) */
  --primary-green: hsl(152, 60%, 11%);       /* #0b2b1c - Deep Trustworthy Green */
  --primary-green-light: hsl(152, 45%, 18%); /* #1a422f - Subtle highlights */
  --primary-green-dark: hsl(152, 70%, 7%);   /* #03140e - Deep background blocks */
  --primary-green-rgb: 11, 43, 28;
  
  --gold: hsl(44, 67%, 46%);                 /* #c59b27 - Warm African Gold */
  --gold-light: hsl(44, 75%, 55%);           /* #e0b438 - Hover states */
  --gold-dark: hsl(44, 75%, 33%);            /* #936e15 - Accessible gold on white */
  --gold-rgb: 197, 155, 39;
  
  --sunset-orange: hsl(28, 85%, 48%);        /* #df5c16 - Warm Accent tag */
  --sunset-orange-hover: hsl(28, 95%, 40%);  /* #c4470b */
  
  /* State Tokens (Semantic & Consistent) */
  --state-success: hsl(145, 63%, 35%);       /* #209153 */
  --state-error: hsl(6, 68%, 42%);           /* #b4291e */
  --state-warning: hsl(38, 85%, 44%);         /* #cf7f13 */
  
  /* Great Zimbabwe Granite Grayscale Palette */
  --stone-beige: hsl(45, 18%, 96%);          /* #f5f4ef - Background panels */
  --stone-beige-dark: hsl(45, 12%, 86%);     /* #e1ded3 - Dividers & borders */
  
  --charcoal: hsl(150, 8%, 11%);             /* #191c1a - Dark surfaces */
  --charcoal-light: hsl(150, 6%, 16%);       /* #262927 - Interactive dark cards */
  
  /* Text Styles */
  --text-dark: hsl(150, 10%, 13%);           /* #1e2320 - Crisp reading copy */
  --text-muted: hsl(150, 6%, 42%);           /* #626c67 - Accessible subtext */
  --text-light: hsl(60, 10%, 98%);           /* #fafaf9 - Light background text */
  --white: #ffffff;
  
  /* Layout, Shadows & Transitions */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 4.5rem;
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-round: 50%;
  
  --shadow-sm: 0 2px 4px rgba(11, 43, 28, 0.03);
  --shadow-md: 0 8px 16px rgba(11, 43, 28, 0.05);
  --shadow-lg: 0 16px 32px rgba(11, 43, 28, 0.08);
  --shadow-premium: 0 32px 64px rgba(11, 43, 28, 0.12);
  
  --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-normal: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (min-width: 768px) {
  :root {
    --space-xxl: 6.5rem;
  }
}

@media (min-width: 1200px) {
  :root {
    --space-xxl: 7.5rem;
  }
}

/* Modern Design System - Decorative Elements & Motion */

/* 1. Performance Scroll Reveal Animations (Subtle & Elegant) */
/* Animation classes removed to ensure instant loading and clean print-brochure rhythm */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.25;
  color: var(--primary-green);
  letter-spacing: -0.01em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

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

ul {
  list-style: none;
}

/* Custom Styled Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--stone-beige);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-green-light);
  border-radius: var(--radius-sm);
  border: 1px solid var(--stone-beige);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* Great Zimbabwe Chevron Divider Accent (Cultural motif) */
.chevron-divider {
  height: 9px;
  background-image: radial-gradient(circle, var(--gold-dark) 2px, transparent 3px);
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  width: 120px;
  margin: 1.5rem auto;
}

.chevron-divider::before,
.chevron-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 45px;
  height: 1px;
  background-color: var(--stone-beige-dark);
}

.chevron-divider::before {
  left: 0;
}

.chevron-divider::after {
  right: 0;
}

.chevron-divider.left {
  margin: 1.5rem 0;
  background-position: 6px center;
}

.chevron-divider.left::before {
  display: none;
}

.chevron-divider.left::after {
  left: 16px;
  width: 104px;
}

/* Header & Navigation (White Header Constraint) */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--stone-beige-dark);
  transition: var(--transition-normal);
}

.header-scrolled {
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid transparent;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--primary-green);
  font-size: 1.15rem;
  line-height: 1;
  letter-spacing: 0.5px;
}

.brand-name span {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold-dark);
  letter-spacing: 1.5px;
}

.header-cta {
  display: none;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-light);
  background: var(--primary-green);
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--primary-green);
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.header-cta:hover {
  background: var(--primary-green-light);
  border-color: var(--primary-green-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

@media (min-width: 1100px) {
  .header-cta {
    display: inline-block;
  }
}

/* Desktop Navigation Menu */
.desktop-nav {
  display: none;
}

.nav-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-green);
  opacity: 0.9;
  padding: 0.5rem 0.85rem;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  opacity: 1;
  color: var(--gold-dark); /* Refined accessible color (5.05:1 contrast) */
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.85rem;
  right: 0.85rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition-fast);
  transform-origin: center;
}

.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
}

/* Mobile Nav Toggle & Menu Drawer */
.hamburger-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1002;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: var(--primary-green);
  border-radius: 2px;
  transition: var(--transition-normal);
}

.hamburger-toggle.active .line-1 {
  transform: translateY(8px) rotate(45deg);
  background-color: var(--text-light);
}

.hamburger-toggle.active .line-2 {
  opacity: 0;
}

.hamburger-toggle.active .line-3 {
  transform: translateY(-8px) rotate(-45deg);
  background-color: var(--text-light);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(11, 43, 28, 0.98); /* Proposed design variable */
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  transform: translateY(-100%);
  transition: var(--transition-slow);
  visibility: hidden;
  pointer-events: none;
}

.mobile-menu-overlay.active {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-light);
  padding: 0.5rem 2rem;
  display: block;
  text-align: center;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--gold);
}

@media (min-width: 992px) {
  .hamburger-toggle {
    display: none;
  }
  
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
}

/* Buttons System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-normal);
  gap: 0.5rem;
  border: 1.5px solid transparent;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--gold);
  color: var(--primary-green-dark);
}

.btn-primary:hover {
  background-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 15px rgba(197, 155, 39, 0.25);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-light);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--text-light);
  transform: translateY(-1px);
}

.btn-outline-green {
  background-color: transparent;
  color: var(--primary-green);
  border-color: var(--primary-green);
}

.btn-outline-green:hover {
  background-color: var(--primary-green);
  color: var(--text-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Sections Layout & Utilities */
.section {
  padding: var(--space-xxl) 1.5rem;
  position: relative;
}

.bg-stone {
  background-color: var(--stone-beige);
}

.bg-dark {
  background-color: var(--charcoal);
  color: var(--text-light);
}

.bg-dark h2, .bg-dark h3 {
  color: var(--white);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  border-left: 1px solid var(--stone-beige-dark);
  border-right: 1px solid var(--stone-beige-dark);
  padding-left: 2rem;
  padding-right: 2rem;
}

@media (max-width: 768px) {
  .container {
    border-left: none;
    border-right: none;
    padding-left: 0;
    padding-right: 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
  display: block;
}

.bg-dark .section-tag {
  color: var(--gold);
}

.section-title {
  font-size: 2.1rem;
  margin-bottom: 0.75rem;
  color: var(--primary-green-dark);
}

.bg-dark .section-title {
  color: var(--white);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.6rem;
  }
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.bg-dark .section-desc {
  color: rgba(255, 255, 255, 0.75);
}

/* 1. Hero Section Styling (Full-Bleed Photographic Hero) */
.hero-section {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  background-image: url('../images/hero/hero_property.webp');
  background-size: cover;
  background-position: center;
  padding: 10rem 1.5rem 6rem 1.5rem;
}

@media (min-width: 768px) {
  .hero-section {
    min-height: 90vh;
  }
}

.hero-section .container {
  border-left: none;
  border-right: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.hero-content-card {
  background: var(--white);
  padding: 3.5rem;
  max-width: 620px;
  border: 1px solid var(--stone-beige-dark);
  box-shadow: var(--shadow-premium);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 5;
}

@media (max-width: 768px) {
  .hero-content-card {
    padding: 2.25rem 1.75rem;
    max-width: 100%;
  }
}

.hero-meta {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 2px;
  margin-bottom: 1.25rem;
  display: block;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--primary-green-dark);
}

.hero-title span {
  color: var(--gold-dark);
  font-style: italic;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.8rem;
  }
}

@media (min-width: 1200px) {
  .hero-title {
    font-size: 4.4rem;
  }
}

.hero-description {
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 480px) {
  .hero-ctas {
    flex-direction: row;
  }
}

.hero-section .btn-secondary {
  color: var(--primary-green);
  border-color: var(--primary-green);
  background-color: transparent;
}

.hero-section .btn-secondary:hover {
  background-color: rgba(11, 43, 28, 0.05);
  border-color: var(--primary-green-light);
}

/* Compliance Sticky Ribbon */
.compliance-ribbon {
  background-color: var(--stone-beige-dark);
  color: var(--primary-green-dark);
  padding: 0.65rem 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(11, 43, 28, 0.05);
  letter-spacing: 0.5px;
}

/* 2. About Section Styling */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: flex-start;
}

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr 1.1fr;
  }
}

.about-image-wrapper {
  border: 1px solid var(--stone-beige-dark);
  padding: 10px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.about-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.about-content-txt {
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.7;
}

.about-content-txt p {
  margin-bottom: 1.5rem;
}

/* Mission & Vision Columns */
.mv-editorial {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
  border-top: 1px solid var(--stone-beige-dark);
  padding-top: 2.5rem;
}

@media (min-width: 576px) {
  .mv-editorial {
    grid-template-columns: 1fr 1fr;
  }
}

.mv-column h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary-green-dark);
  margin-bottom: 0.75rem;
}

.mv-column p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* /* Core Values (Clean Typography-driven layout) */
.values-container {
  margin-top: 6rem;
  border-top: 1px solid var(--stone-beige-dark);
  padding-top: 4rem;
}

.values-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 3.5rem;
  color: var(--primary-green-dark);
}

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

@media (min-width: 768px) {
  .values-editorial-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

.value-editorial-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.value-editorial-item strong {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--gold-dark);
  border-bottom: 1px solid var(--stone-beige-dark);
  padding-bottom: 0.5rem;
}

.value-editorial-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* 3. Services Section Styling */
.services-editorial-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: flex-start;
}

@media (min-width: 992px) {
  .services-editorial-layout {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.services-editorial-list {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.service-editorial-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

@media (max-width: 480px) {
  .service-editorial-item {
    flex-direction: column;
    gap: 0.75rem;
  }
}

.service-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--gold-dark);
  line-height: 1;
}

.service-details h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--primary-green-dark);
  margin-bottom: 0.75rem;
}

.service-details p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.service-bullets {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

@media (min-width: 576px) {
  .service-bullets {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
}

.service-bullets li {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding-left: 1.25rem;
}

.service-bullets li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold-dark);
}

.services-visual {
  position: sticky;
  top: 120px;
  border: 1px solid var(--stone-beige-dark);
  padding: 10px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.services-visual-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

/* 4. Properties Showcase Section Styling */
.properties-catalog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 576px) {
  .properties-catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem;
  }
}

.property-catalog-item {
  display: flex;
  flex-direction: column;
  background-color: transparent;
}

.property-catalog-image-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--stone-beige-dark);
  padding: 8px;
  background-color: var(--white);
  margin-bottom: 1.5rem;
}

.property-catalog-img {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.property-catalog-item:hover .property-catalog-img {
  transform: scale(1.02);
}

.property-catalog-body {
  padding: 0 0.5rem;
}

.property-catalog-meta {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.property-catalog-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary-green-dark);
  margin-bottom: 0.75rem;
}

.property-catalog-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* 5. Why Choose Us Section Styling */
.why-editorial-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 992px) {
  .why-editorial-layout {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.why-image-column {
  border: 1px solid var(--stone-beige-dark);
  padding: 10px;
  background-color: var(--white);
  box-shadow: var(--shadow-md);
}

.why-editorial-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.why-text-column {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.why-editorial-point h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--primary-green-dark);
  margin-bottom: 0.5rem;
}

.why-editorial-point p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Compliance Typography Bar */
.compliance-typography-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 4rem;
  padding: 1.5rem;
  border-top: 1px solid var(--stone-beige-dark);
  border-bottom: 1px solid var(--stone-beige-dark);
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-green-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.bar-separator {
  color: var(--gold-dark);
  font-weight: 400;
}

/* Directors & Consultants section */
.directors-editorial-section {
  margin-top: 6rem;
}

.editorial-subheading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  color: var(--primary-green-dark);
  text-align: center;
  margin-bottom: 3.5rem;
}

.directors-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.director-profile-item {
  border-bottom: 1px solid var(--stone-beige-dark);
  padding-bottom: 2rem;
}

.director-profile-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.director-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-baseline;
  gap: 1.5rem;
  margin-bottom: 0.75rem;
}

@media (max-width: 600px) {
  .director-header {
    flex-direction: column;
    gap: 0.25rem;
  }
}

.director-header h4 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--primary-green-dark);
}

.director-role {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.director-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* 6. Bulawayo Local Market Section (Landscape Full-Bleed Editorial Banner) */
.market-editorial-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  background-image: url('../images/locations/bulawayo_skyline.webp');
  background-size: cover;
  background-position: center;
  padding: 6rem 1.5rem;
}

.market-editorial-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  border-left: none;
  border-right: none;
}

.market-editorial-card {
  background: var(--white);
  padding: 3.5rem;
  max-width: 600px;
  border: 1px solid var(--stone-beige-dark);
  box-shadow: var(--shadow-premium);
  text-align: left;
  color: var(--text-dark);
  position: relative;
  z-index: 5;
}

@media (max-width: 768px) {
  .market-editorial-card {
    padding: 2.25rem 1.75rem;
    max-width: 100%;
  }
}

.market-editorial-card .market-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--primary-green-dark);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.market-editorial-card .market-title span {
  color: var(--gold-dark);
  font-style: italic;
}

.market-editorial-card .market-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 2rem;
  color: var(--text-muted);
}

//* 7. Contact Section Styling */
.contact-editorial-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: flex-start;
}

@media (min-width: 992px) {
  .contact-editorial-layout {
    grid-template-columns: 0.95fr 1.05fr;
  }
}

.contact-editorial-details h3, .contact-editorial-form-block h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--primary-green-dark);
  margin-bottom: 1rem;
}

.contact-editorial-lead, .form-editorial-lead {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

.contact-editorial-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 3rem;
}

.contact-info-list-item strong {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 0.35rem;
}

.contact-info-list-item p, .contact-info-list-item a {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.contact-info-list-item a:hover {
  color: var(--gold-dark);
}

.contact-reception-frame {
  border: 1px solid var(--stone-beige-dark);
  padding: 8px;
  background-color: var(--white);
}

.contact-reception-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

/* Form block */
.contact-editorial-form-block {
  background-color: var(--stone-beige);
  padding: 3rem 2.5rem;
  border: 1px solid var(--stone-beige-dark);
}

@media (max-width: 480px) {
  .contact-editorial-form-block {
    padding: 2rem 1.5rem;
  }
}

.form-editorial-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

@media (min-width: 576px) {
  .form-editorial-row {
    grid-template-columns: 1fr 1fr;
  }
}

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

.form-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-green-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Elegant Underline Controls */
.form-input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.6rem 0;
  border: none;
  border-bottom: 1.5px solid var(--stone-beige-dark);
  background-color: transparent;
  color: var(--text-dark);
  border-radius: 0;
  transition: border-color var(--transition-fast);
  outline: none;
}

.form-input:focus {
  border-bottom-color: var(--primary-green);
}

.form-input::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

/* Form validation status indicators */
.form-input:user-valid {
  border-bottom-color: var(--state-success);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23209153' width='16px' height='16px'%3E%3Cpath d='M0 0h24v24H0V0z' fill='none'/%3E%3Cpath d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 16px;
  padding-right: 1.5rem;
}

.form-input:user-invalid {
  border-bottom-color: var(--state-error);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23b4291e' width='16px' height='16px'%3E%3Cpath d='M11 15h2v2h-2zm0-8h2v6h-2zm.99-5C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 16px;
  padding-right: 1.5rem;
}

select.form-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230b2b1c' width='16px' height='16px'%3E%3Cpath d='M24 24H0V0h24v24z' fill='none'/%3E%3Cpath d='M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 16px;
  padding-right: 1.5rem;
}

.form-submit-btn {
  width: 100%;
  margin-top: 1rem;
  background-color: var(--primary-green);
  color: var(--text-light);
  border: none;
  font-size: 0.95rem;
  cursor: pointer;
  padding: 1rem 2rem;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: background-color var(--transition-fast);
}

.form-submit-btn:hover {
  background-color: var(--primary-green-light);
}

/* Custom Alert Dialog for Form Submissions */
.dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-normal);
}

.dialog-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.dialog-box {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  max-width: 440px;
  width: 90%;
  box-shadow: var(--shadow-lg);
  text-align: center;
  border-top: 5px solid var(--gold);
  transform: scale(0.92);
  transition: var(--transition-normal);
}

.dialog-overlay.active .dialog-box {
  transform: scale(1);
}

.dialog-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(32, 145, 83, 0.15);
  border-radius: var(--radius-round);
  color: var(--state-success);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.dialog-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary-green);
}

.dialog-msg {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

/* 8. Footer Section Styling */
.main-footer {
  background-color: var(--stone-beige);
  color: var(--text-dark);
  border-top: 4px solid var(--primary-green);
  padding: 4.5rem 1.5rem 2rem 1.5rem;
}

@media (min-width: 768px) {
  .main-footer {
    padding: 5.5rem 4rem 2rem 4rem;
  }
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

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

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 1fr;
  }
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo-wrapper {
  background: var(--white);
  border: 1px solid var(--stone-beige-dark);
  padding: 6px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  border-radius: var(--radius-sm);
  margin-right: 0.5rem;
}

.footer-logo {
  height: 30px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-round);
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  transition: var(--transition-fast);
  border: 1px solid var(--stone-beige-dark);
}

.social-icon:hover {
  background-color: var(--primary-green);
  color: var(--white);
  border-color: var(--primary-green);
  transform: translateY(-2px);
}

.footer-links-col h4, .footer-contact-col h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--primary-green);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.4rem;
}

.footer-links-col h4::after, .footer-contact-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--gold-dark);
}

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

.footer-link {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-link:hover {
  color: var(--primary-green);
  padding-left: 0.2rem;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-size: 0.85rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.65rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.footer-contact-item svg {
  color: var(--gold-dark);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.footer-eacz-link {
  display: inline-flex;
  flex-shrink: 0;
  border-radius: 50%;
}

.footer-eacz-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex-shrink: 0;
  background: var(--white);
  border-radius: 50%;
  padding: 3px;
  margin-top: 0.1rem;
}

.footer-eacz-link:hover .footer-eacz-logo,
.footer-eacz-link:focus-visible .footer-eacz-logo {
  box-shadow: 0 0 0 3px rgba(197, 155, 39, 0.35);
}

.footer-contact-item span {
  opacity: 0.8;
}

.footer-compliance-item span a {
  color: var(--primary-green);
}

.footer-compliance-item span a:hover {
  color: var(--gold-dark);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid var(--stone-beige-dark);
  padding-top: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

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

.footer-legal-links {
  display: flex;
  gap: 1.25rem;
}

.footer-legal-link:hover {
  color: var(--primary-green);
}
