/* ==========================================================================
   WOODLAND COMPUTER REPAIR - CUSTOM STYLESHEET (REBUILD 2026)
   Cozy, premium, local town feel matching "City of Trees" theme.
   ========================================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Lora:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap');

/* --- Root & Custom Tokens --- */
:root {
  /* Color Palette */
  --primary-green: #1a4231;        /* Deep Forest/Moss Green */
  --primary-green-dark: #0f2b20;   /* Rich Pine Black */
  --primary-green-light: #2c634a;  /* Fresh Foliage Green */
  --accent-gold: #d4a373;          /* Cozy Honey Oak / Amber Gold */
  --accent-gold-hover: #c39262;    /* Darkened Oak Gold */
  --accent-gold-light: #f3e9dc;    /* Pale Warm Gold Tone */
  --bg-cream: #faf7f2;             /* Cozy Off-white Paper Tone */
  --bg-cream-dark: #f2ede2;        /* Shaded Card Background */
  --text-dark: #202422;            /* Warm Soft Charcoal */
  --text-muted: #57605b;           /* Muted Sage Grey */
  --text-light: #f8f9fa;           /* Off-white Text */
  --white: #ffffff;
  --error-color: #d62828;

  /* Typography */
  --font-serif: 'Lora', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --container-width: 1140px;
  --header-height: 90px;
  --header-shrink-height: 70px;

  /* Utilities */
  --shadow-sm: 0 4px 6px rgba(26, 66, 49, 0.03);
  --shadow-md: 0 8px 16px rgba(26, 66, 49, 0.06);
  --shadow-lg: 0 16px 32px rgba(26, 66, 49, 0.1);
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Typography Overrides */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--primary-green);
  line-height: 1.25;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

h2.decorated::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--accent-gold);
  margin-top: 10px;
  border-radius: 2px;
}

h2.decorated.center::after {
  margin-left: auto;
  margin-right: auto;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.25rem;
  color: var(--text-muted);
}

a {
  color: var(--primary-green-light);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--accent-gold);
}

/* --- Layout Grid/Containers --- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 90px 0;
}

.bg-cream-dark {
  background-color: var(--bg-cream-dark);
}

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-smooth);
  cursor: pointer;
  border: 2px solid transparent;
  font-family: var(--font-sans);
}

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

.btn-primary:hover {
  background-color: var(--accent-gold-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 163, 115, 0.3);
}

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

.btn-outline:hover {
  background-color: var(--primary-green);
  color: var(--bg-cream);
  transform: translateY(-2px);
}

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

.btn-white:hover {
  background-color: var(--accent-gold);
  color: var(--primary-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* --- Navigation Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(23, 10, 2, 0.0); /* Transparent starting color (matching hero overlay) */
  transition: var(--transition-smooth);
}

/* Header state on scroll or secondary pages */
.site-header.scrolled,
.site-header.secondary-page {
  background-color: var(--primary-green); /* Forest green used for header & footer */
  box-shadow: var(--shadow-md);
  border-bottom: 2px solid var(--accent-gold);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  transition: var(--transition-smooth);
}

.site-header.scrolled .container,
.site-header.secondary-page .container {
  height: var(--header-shrink-height);
}

/* Branding Logo */
.logo-container {
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 48px;
  width: auto;
  transition: var(--transition-smooth);
}

.site-header.scrolled .logo-img,
.site-header.secondary-page .logo-img {
  height: 40px;
}

.logo-text {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: var(--transition-smooth);
}

.logo-text .gold-text {
  color: var(--accent-gold);
}

/* Desktop Menu Navigation */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-item a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 8px 0;
}

.nav-item a::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: var(--transition-smooth);
}

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

.nav-item a:hover::after,
.nav-item a.active::after {
  width: 100%;
}

.nav-item a.active {
  color: var(--accent-gold);
}

/* Navigation Social Icons widget */
.header-socials {
  display: flex;
  gap: 12px;
  margin-left: 20px;
  align-items: center;
}

.header-socials a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition-smooth);
}

.header-socials a:hover {
  color: var(--primary-green-dark);
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
}

/* Mobile Hamburger Menu Toggle Button */
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 1010;
}

.hamburger-btn span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--white);
  border-radius: 2px;
  position: absolute;
  transition: var(--transition-smooth);
}

.hamburger-btn span:nth-child(1) { top: 0; }
.hamburger-btn span:nth-child(2) { top: 10px; }
.hamburger-btn span:nth-child(3) { top: 20px; }

/* Open state hamburger animation */
.hamburger-btn.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}

.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 10px;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--primary-green-dark);
  z-index: 1005;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateY(-100%);
  transition: transform 0.5s ease-in-out;
}

.mobile-nav-overlay.active {
  transform: translateY(0);
}

.mobile-nav-menu {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.mobile-nav-item a {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--white);
  font-weight: 700;
}

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

.mobile-socials {
  display: flex;
  gap: 20px;
}

.mobile-socials a {
  color: var(--accent-gold);
  font-size: 1.5rem;
}

/* --- Hero Section with Background Video --- */
.hero-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(23, 10, 2, 0.75) 0%, rgba(23, 10, 2, 0.55) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: var(--white);
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-family: var(--font-serif);
  color: var(--accent-gold);
  font-weight: 500;
  margin-bottom: 30px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.8;
  animation: bounce 2s infinite;
}

.scroll-indicator span {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
  40% { transform: translate(-50%, -10px); }
  60% { transform: translate(-50%, -5px); }
}

/* --- Secondary Page Banner --- */
.page-banner {
  height: 40vh;
  min-height: 300px;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: var(--white);
  margin-top: 0;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(15, 43, 32, 0.9) 0%, rgba(27, 66, 49, 0.5) 100%);
  z-index: 1;
}

.page-banner-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: var(--header-height);
}

.page-banner h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 10px;
}

.page-breadcrumbs {
  font-size: 0.85rem;
  color: var(--accent-gold);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-breadcrumbs a {
  color: rgba(255, 255, 255, 0.7);
}

.page-breadcrumbs a:hover {
  color: var(--accent-gold);
}

/* --- Features Grid (Why Us / Homepage) --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  background-color: var(--bg-cream);
  border: 1px solid var(--bg-cream-dark);
  padding: 40px 30px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-lg);
}

.feature-icon-wrapper {
  width: 64px;
  height: 64px;
  background-color: var(--accent-gold-light);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  border-radius: 50%;
  margin-bottom: 25px;
}

.feature-card h3 {
  color: var(--primary-green);
  font-family: var(--font-serif);
  font-weight: 600;
  margin-bottom: 15px;
}

/* --- Home Services Overview Section --- */
.services-highlight {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.service-highlight-card {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  border: 1px solid rgba(26, 66, 49, 0.05);
}

.service-highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-gold);
}

.service-highlight-content {
  padding: 30px;
}

.service-highlight-content h3 {
  font-family: var(--font-serif);
  color: var(--primary-green);
  margin-bottom: 15px;
}

.service-highlight-card .btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-green);
  margin-top: 15px;
}

.service-highlight-card .btn-link:hover {
  color: var(--accent-gold);
}

/* --- Services Page Layout --- */
.services-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.service-detail-card {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(26, 66, 49, 0.05);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.service-detail-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-md);
}

.service-detail-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.service-detail-icon {
  width: 50px;
  height: 50px;
  background-color: var(--bg-cream);
  color: var(--primary-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-sm);
  font-size: 1.4rem;
  border: 1px solid var(--accent-gold-light);
}

.service-detail-card h2 {
  font-size: 1.5rem;
  color: var(--primary-green);
  margin-bottom: 0;
}

/* Rates Table Section */
.rates-box {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  padding: 50px;
  margin: 60px 0;
  border-top: 5px solid var(--accent-gold);
  position: relative;
  overflow: hidden;
}

.rates-box::after {
  content: '‡';
  position: absolute;
  right: 20px;
  bottom: 0px;
  font-size: 12rem;
  color: rgba(212, 163, 115, 0.05);
  font-family: var(--font-serif);
  line-height: 1;
}

.rates-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
}

.rates-main h3 {
  font-size: 2.2rem;
  color: var(--primary-green-dark);
  margin-bottom: 20px;
}

.rates-value-card {
  background-color: var(--bg-cream);
  padding: 30px;
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(212, 163, 115, 0.3);
  text-align: center;
}

.rates-price {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-green);
  line-height: 1;
  margin-bottom: 10px;
  font-family: var(--font-serif);
}

.rates-price span {
  font-size: 1rem;
  font-family: var(--font-sans);
  color: var(--text-muted);
  font-weight: 500;
}

/* Local Woodland Video frame styles */
.video-section-holder {
  max-width: 800px;
  margin: 60px auto 0;
}

.wood-frame {
  border: 18px solid #3d2314; /* Cozy dark wooden border */
  border-image: linear-gradient(to bottom right, #5c3a21, #301b0f, #5c3a21) 1;
  box-shadow: 
    inset 0 0 0 2px #d4a373, /* Inner gold bevel line */
    0 12px 30px rgba(26, 66, 49, 0.15); /* Soft drop shadow */
  padding: 10px;
  background-color: #faf7f2; /* Picture matte background */
  border-radius: 4px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* --- About Page & Timeline --- */
.storefront-holder {
  text-align: center;
  margin-bottom: 60px;
}

.storefront-img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}

/* Scroll-triggered Animated Timeline */
.timeline-holder {
  position: relative;
  max-width: 1100px;
  margin: 60px auto 0;
  padding: 40px 0;
}

/* The central timeline line */
.timeline-holder::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: var(--bg-cream-dark);
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-row {
  display: grid;
  grid-template-columns: 1fr 190px 1fr;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
}

.timeline-row:last-child {
  margin-bottom: 0;
}

.timeline-cell {
  position: relative;
}

/* Alternating text cell layouts */
.timeline-cell.left {
  text-align: right;
  padding-right: 40px;
}

.timeline-cell.right {
  text-align: left;
  padding-left: 40px;
}

.timeline-cell .time-tag {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-green);
  line-height: 1;
  display: inline-block;
  margin-bottom: 10px;
}

.timeline-cell .subtitle {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent-gold-hover);
  margin-bottom: 15px;
  font-style: italic;
}

/* Central circular image styles */
.timeline-img-cell {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.timeline-img-wrapper {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 4px solid var(--accent-gold);
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.timeline-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.timeline-row:hover .timeline-img-wrapper {
  border-color: var(--primary-green);
  transform: scale(1.1);
  box-shadow: var(--shadow-md);
}


/* Timeline Stagger Animations (Initial State) */
@media (min-width: 1150px) {
  .timeline-cell.left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .timeline-cell.right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .timeline-img-cell {
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Triggered visible state */
  .timeline-row.visible .timeline-cell.left,
  .timeline-row.visible .timeline-cell.right {
    opacity: 1;
    transform: translateX(0);
  }

  .timeline-row.visible .timeline-img-cell {
    opacity: 1;
    transform: scale(1);
  }


}

/* --- Contact Page Layout --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 60px;
}

.contact-info {
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26, 66, 49, 0.05);
}

.contact-info h3 {
  margin-bottom: 25px;
  border-bottom: 2px solid var(--bg-cream-dark);
  padding-bottom: 10px;
}

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  width: 44px;
  height: 44px;
  background-color: var(--accent-gold-light);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.info-text h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--primary-green-dark);
}

.info-text p {
  margin-bottom: 0;
}

/* Contact Form */
.contact-form-wrapper {
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26, 66, 49, 0.05);
}

.contact-form-wrapper h3 {
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--bg-cream-dark);
  border-radius: var(--border-radius-sm);
  background-color: var(--bg-cream);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-gold);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Google Map Iframe Card */
.map-card {
  background-color: var(--white);
  padding: 10px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(26, 66, 49, 0.05);
  margin-top: 40px;
}

.map-card iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: var(--border-radius-sm);
  display: block;
}

/* --- Privacy Policy Page Styles --- */
.privacy-holder {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  padding: 50px;
  box-shadow: var(--shadow-sm);
}

.privacy-holder h2 {
  font-size: 1.6rem;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--primary-green);
}

.privacy-holder h2:first-of-type {
  margin-top: 0;
}

.privacy-holder p {
  font-size: 1rem;
  margin-bottom: 20px;
}

/* --- Shared Footer --- */
.site-footer {
  background-color: var(--primary-green); /* Forest green used for header & footer */
  color: var(--text-light);
  padding: 80px 0 30px;
  border-top: 4px solid var(--accent-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1.3fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-widget h3 {
  color: var(--accent-gold);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 25px;
  font-weight: 600;
}

.footer-widget p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

/* Quick links styling */
.footer-links {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 5px;
}

/* Social icons list */
.footer-socials-widget {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-socials-widget a {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition-smooth);
  font-size: 1.1rem;
}

.footer-socials-widget a:hover {
  background-color: var(--accent-gold);
  color: var(--primary-green-dark);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  margin-left: 20px;
}

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

/* --- Scroll to Top Button --- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background-color: var(--accent-gold);
  color: var(--primary-green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-smooth);
  z-index: 99;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--primary-green);
  color: var(--white);
  transform: translateY(-3px);
}

/* --- Responsive Media Queries --- */

@media (max-width: 1150px) {
  .timeline-holder::before {
    left: 40px;
  }

  .timeline-row {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
  }

  .timeline-cell.left,
  .timeline-cell.right {
    text-align: left;
    padding-left: 80px;
    padding-right: 0;
  }

  .timeline-cell.left .time-header {
    justify-content: flex-start;
  }

  .timeline-img-cell {
    grid-row: 1; /* Circular images always load first */
    justify-content: flex-start;
    padding-left: 40px;
    transform: translateX(-60px); /* Center circle on left vertical line */
  }

  .timeline-img-wrapper {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 992px) {
  .section-padding {
    padding: 70px 0;
  }

  /* Hamburger Menu Toggle Displayed */
  .hamburger-btn {
    display: block;
  }

  .nav-menu,
  .header-socials {
    display: none;
  }

  .features-grid,
  .services-highlight {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-list-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .rates-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }

  .features-grid,
  .services-highlight {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .rates-box {
    padding: 30px 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links a {
    margin: 0 10px;
  }
}

/* --- Header Actions and Search Bar --- */
.header-actions {
  display: none;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 1010;
}

@media (max-width: 992px) {
  .header-actions {
    display: flex;
  }
}

/* --- Workspace Showcase Section --- */
.workspace-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.workspace-image-container {
  position: relative;
  border: 6px solid var(--white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.workspace-image-container:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-gold-light);
}

.workspace-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.workspace-text {
  padding-right: 20px;
}

.workspace-text h2 {
  margin-bottom: 20px;
}

.workspace-text p {
  font-size: 1.1rem;
  line-height: 1.8;
}

@media (max-width: 992px) {
  .workspace-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .workspace-text {
    padding-right: 0;
    text-align: center;
  }
}

/* --- Internal Search System Overlay --- */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(23, 10, 2, 0.97); /* Rich warm brown overlay */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 10vh;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-container {
  width: 100%;
  max-width: 700px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
}

.search-header {
  position: relative;
  margin-bottom: 40px;
}

.search-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 3px solid rgba(212, 163, 115, 0.3);
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--white);
  padding: 15px 0;
  text-align: center;
  transition: var(--transition-smooth);
}

.search-input:focus {
  outline: none;
  border-color: var(--accent-gold);
}

.search-close-btn {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition-smooth);
}

.search-close-btn:hover {
  color: var(--accent-gold);
  transform: rotate(90deg);
}

.search-info-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin-top: 12px;
  letter-spacing: 1px;
  font-family: var(--font-sans);
}

.search-results-holder {
  max-height: 55vh;
  overflow-y: auto;
  padding-right: 10px;
}

/* Custom scrollbar for search results */
.search-results-holder::-webkit-scrollbar {
  width: 6px;
}
.search-results-holder::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}
.search-results-holder::-webkit-scrollbar-thumb {
  background: var(--accent-gold);
  border-radius: 3px;
}

.search-result-item {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-sm);
  padding: 20px;
  margin-bottom: 15px;
  transition: var(--transition-smooth);
}

.search-result-item:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

.search-result-item h3 {
  font-size: 1.2rem;
  color: var(--accent-gold);
  margin-bottom: 5px;
  font-family: var(--font-serif);
}

.search-result-item p {
  color: rgba(255, 255, 255, 0.70);
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.5;
  font-family: var(--font-sans);
}

.search-result-item p mark {
  background-color: rgba(212, 163, 115, 0.35);
  color: var(--white);
  padding: 0 4px;
  border-radius: 2px;
}

.search-no-results {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-serif);
  font-size: 1.3rem;
  padding: 40px 0;
}

/* Search navigation toggle button in header */
.search-toggle-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.search-toggle-btn:hover {
  color: var(--accent-gold);
  transform: scale(1.1);
}

.mobile-search-btn {
  color: var(--white);
}
  .footer-bottom-links a {
    margin: 0 10px;
  }
}

/* Spinner Animation for AJAX Form sending status */
@keyframes spin {
  to { transform: rotate(360deg); }
}
