/*
Theme Name: Big Blakes Landscapes
Theme URI: https://bigblakeslandscapes.com.au
Author: Big Blakes Landscapes
Author URI: https://bigblakeslandscapes.com.au
Description: Custom theme for Big Blakes Landscapes - Professional landscaping services.
Version: 8.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bigblakes
*/

/* ========================================
   CSS VARIABLES & RESET
   ======================================== */
:root {
  --color-bg: #0a0f0a;
  --color-bg-alt: #121a12;
  --color-bg-card: #1a261a;
  --color-primary: #4a7c59;
  --color-primary-light: #5d9e6f;
  --color-primary-bright: #7bc47f;
  --color-accent: #c8a45c;
  --color-accent-light: #dbb86e;
  --color-text: #e8e8e8;
  --color-text-muted: #9ca89c;
  --color-text-dark: #1a1a1a;
  --color-white: #ffffff;
  --color-border: rgba(74, 124, 89, 0.2);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', 'Segoe UI', sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;
  --max-width: 1280px;
  --section-pad: 30px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

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

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

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

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.3rem); }

p {
  margin-bottom: 1.2em;
  color: var(--color-text-muted);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

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

.btn-primary:hover {
  background: var(--color-primary-light);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(74, 124, 89, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-primary);
}

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

.btn-accent {
  background: var(--color-accent);
  color: var(--color-text-dark);
}

.btn-accent:hover {
  background: var(--color-accent-light);
  color: var(--color-text-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 164, 92, 0.3);
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 10px 0;
  transition: all 0.4s ease;
  background: rgba(10, 15, 10, 0.95);
  border-bottom: 1px solid var(--color-border);
}

.site-header.scrolled {
  background: rgba(10, 15, 10, 0.98);
  backdrop-filter: blur(20px);
  padding: 5px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.site-header.scrolled .site-logo img {
  height: 70px !important;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-right: 40px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.02em;
}

.site-logo .logo-text {
  color: var(--color-primary-light);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.site-logo .logo-text span {
  display: block;
  color: var(--color-primary-light);
  font-weight: 400;
  font-size: 1rem;
}

.site-logo img {
  height: 160px !important;
  width: auto !important;
  max-width: 600px !important;
  max-height: none !important;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-menu a {
  color: var(--color-text);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary-light);
  transition: width var(--transition);
}

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

.nav-menu a:hover {
  color: var(--color-white);
}

.nav-cta .btn {
  padding: 12px 28px;
  font-size: 0.85rem;
  white-space: nowrap;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--color-white);
  margin: 6px 0;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 15, 10, 0.85) 0%,
    rgba(10, 15, 10, 0.6) 40%,
    rgba(10, 15, 10, 0.4) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: var(--section-pad) 0;
}

.hero-label {
  font-family: var(--font-accent);
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--color-accent);
  font-style: italic;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  display: block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero h1 {
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--color-primary-bright);
}

.hero-desc {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--color-text);
  margin-bottom: 36px;
  max-width: 560px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s 0.9s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: scrollFadeIn 0.8s 1.2s forwards;
}

.hero-scroll span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
}

.hero-scroll .scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--color-primary-light), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollFadeIn {
  to {
    opacity: 1;
  }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ========================================
   SECTION STYLES
   ======================================== */
.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section-label {
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--color-accent);
  font-style: italic;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  margin-bottom: 20px;
}

.section-desc {
  max-width: 600px;
  font-size: 1.05rem;
  margin-bottom: 48px;
}

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

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

.section-green h2,
.section-green h3,
.section-green p {
  color: var(--color-white);
}

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

/* Decorative line */
.decor-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--color-primary), var(--color-accent));
  margin-bottom: 24px;
}

/* ========================================
   MEET THE TEAM
   ======================================== */

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  justify-items: center;
}

.team-card {
  text-align: center;
  max-width: 320px;
}

.team-photo {
  width: 220px;
  height: 220px;
  margin: 0 auto 24px;
  border-radius: 8px;
  overflow: hidden;
  border: 3px solid var(--color-primary);
  transition: all var(--transition);
}

.team-card:hover .team-photo {
  border-color: var(--color-accent);
  transform: scale(1.05);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-photo-placeholder {
  width: 100%;
  height: 100%;
  background: var(--color-bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-photo-placeholder span {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--color-primary-light);
}

.team-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 6px;
  color: var(--color-white);
}

.team-role {
  display: block;
  font-size: 0.85rem;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 16px;
}

.team-info p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .team-photo {
    width: 160px;
    height: 160px;
  }
}

/* ========================================
   SERVICES GRID
   ======================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--color-bg-card);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid var(--color-border);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--color-primary), var(--color-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  border-color: var(--color-primary);
}

.service-icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
  color: var(--color-primary-light);
}

.service-card h3 {
  margin-bottom: 14px;
}

.service-card p {
  font-size: 0.95rem;
}

.service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary-light);
}

.service-card .service-link:hover {
  color: var(--color-accent);
  gap: 14px;
}

/* ========================================
   ABOUT / INTRO SECTION
   ======================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 3px solid var(--color-primary);
  z-index: -1;
}

.about-content .section-title {
  margin-bottom: 24px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
}

.stat-item h4 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--color-primary-bright);
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}

/* ========================================
   PROCESS SECTION
   ======================================== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  counter-reset: step;
}

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

.process-step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--color-primary-light);
  opacity: 0.5;
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}

.process-step h4 {
  margin-bottom: 12px;
}

.process-step p {
  font-size: 0.9rem;
}

/* ========================================
   GALLERY SLIDESHOW
   ======================================== */

.slideshow-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--color-border);
  background: var(--color-bg-card);
  min-height: 300px;
}

.slideshow-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slideshow-slide.active {
  opacity: 1;
}

.slideshow-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slideshow-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
}

.slideshow-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s;
  z-index: 2;
}

.slideshow-arrow:hover {
  background: rgba(0,0,0,0.8);
}

.slideshow-prev { left: 16px; }
.slideshow-next { right: 16px; }

.slideshow-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.slideshow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.3s;
}

.slideshow-dot.active {
  background: #fff;
}

.gallery-view-all {
  cursor: pointer;
}

/* ========================================
   BEFORE & AFTER SLIDERS
   ======================================== */

.ba-heading {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 32px;
  color: var(--color-white);
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 4px;
  cursor: col-resize;
  user-select: none;
  border: 1px solid var(--color-border);
}

.ba-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-img-before {
  z-index: 1;
  clip-path: inset(0 50% 0 0);
}

.ba-img-after {
  z-index: 0;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  z-index: 3;
  transform: translateX(-50%);
  pointer-events: none;
}

.ba-handle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

.ba-handle::after {
  content: '\25C2  \25B8';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #0a0f0a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  z-index: 4;
  white-space: nowrap;
}

.ba-label {
  position: absolute;
  bottom: 12px;
  z-index: 2;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ba-label-before { left: 12px; }
.ba-label-after { right: 12px; }

.ba-title {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-top: 12px;
}

/* ========================================
   LIGHTBOX
   ======================================== */

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10001;
  line-height: 1;
  padding: 8px;
  transition: color 0.3s;
}

.lightbox-close:hover {
  color: var(--color-accent);
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
}

.lightbox-caption {
  color: #fff;
  font-size: 1rem;
  margin-top: 16px;
  text-align: center;
  font-family: var(--font-body);
}

.lightbox-counter {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin-top: 8px;
  text-align: center;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s;
}

.lightbox-arrow:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

@media (max-width: 768px) {
  .lightbox-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}

/* ========================================
   REVIEWS
   ======================================== */
.reviews-carousel {
  display: flex;
  align-items: center;
  gap: 16px;
}

.carousel-viewport {
  flex: 1;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}

.review-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--color-bg-card);
  padding: 36px;
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-primary);
  box-sizing: border-box;
}

.review-stars {
  color: #f5c518;
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-card blockquote {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 20px;
}

.review-author {
  font-weight: 600;
  color: var(--color-white);
  font-size: 0.9rem;
}

.review-author span {
  color: var(--color-text-muted);
  font-weight: 400;
}

.carousel-arrow {
  width: 50px;
  height: 50px;
  border: 1px solid var(--color-border);
  background: var(--color-bg-card);
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--transition);
}

.carousel-arrow:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, #2d5a3a 100%);
  text-align: center;
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}

.cta-banner h2 {
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 36px;
  font-size: 1.1rem;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-list {
  max-width: 800px;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-white);
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--color-primary-light);
}

.faq-question .icon {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
  color: var(--color-primary-light);
}

.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

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

.contact-info-item .icon {
  width: 50px;
  height: 50px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--color-primary-light);
  flex-shrink: 0;
}

.contact-info-item h4 {
  margin-bottom: 4px;
}

.contact-info-item p {
  margin-bottom: 0;
}

/* ========================================
   SOCIALS SECTION
   ======================================== */
.socials-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 400px;
  margin: 0 auto;
}

.social-card {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: 100%;
  padding: 16px 28px;
  background: var(--color-bg-card);
  border: 2px solid rgba(255,255,255,0.15) !important;
  border-radius: 8px;
  text-decoration: none;
  gap: 16px;
  transition: all var(--transition);
}

.social-card-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
  transition: all var(--transition);
}

.social-card-icon svg {
  width: 24px;
  height: 24px;
  transition: all var(--transition);
}

.social-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--color-white);
}

.social-card p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.social-card:hover {
  transform: translateX(6px);
}

.social-facebook { color: var(--color-text-muted); }
.social-facebook .social-card-icon { color: var(--color-primary-light); }
.social-facebook:hover {
  background: #1877F2;
  border-color: #1877F2;
  box-shadow: 0 20px 50px rgba(24, 119, 242, 0.3);
}
.social-facebook:hover .social-card-icon { background: rgba(255,255,255,0.15); color: #fff; }
.social-facebook:hover h3, .social-facebook:hover p { color: #fff; }

.social-instagram { color: var(--color-text-muted); }
.social-instagram .social-card-icon { color: var(--color-primary-light); }
.social-instagram:hover {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  border-color: #E4405F;
  box-shadow: 0 20px 50px rgba(228, 64, 95, 0.3);
}
.social-instagram:hover .social-card-icon { background: rgba(255,255,255,0.15); color: #fff; }
.social-instagram:hover h3, .social-instagram:hover p { color: #fff; }

.social-tiktok { color: var(--color-text-muted); }
.social-tiktok .social-card-icon { color: var(--color-primary-light); }
.social-tiktok:hover {
  background: #000;
  border-color: #00f2ea;
  box-shadow: 0 20px 50px rgba(0, 242, 234, 0.2);
}
.social-tiktok:hover .social-card-icon { background: rgba(0, 242, 234, 0.1); color: #00f2ea; }
.social-tiktok:hover h3 { color: #fff; }
.social-tiktok:hover p { color: #00f2ea; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  margin-bottom: 16px;
  transition: border-color var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-primary-light);
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

/* Contact Form 7 Styles */
.wpcf7 label,
.wpcf7-form label {
  display: block;
  color: var(--color-text-muted) !important;
  font-family: var(--font-body) !important;
  font-size: 0.85rem !important;
  margin-bottom: 4px;
  letter-spacing: 0.03em;
}

.wpcf7-form-control.wpcf7-text,
.wpcf7-form-control.wpcf7-email,
.wpcf7-form-control.wpcf7-tel,
.wpcf7-form-control.wpcf7-textarea,
.wpcf7 input:not([type="submit"]),
.wpcf7 textarea {
  width: 100% !important;
  padding: 16px 20px !important;
  background: #1a2a1a !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 0 !important;
  color: #e8e4dc !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.95rem !important;
  margin-bottom: 16px !important;
  box-sizing: border-box !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

.wpcf7-form-control.wpcf7-text:focus,
.wpcf7-form-control.wpcf7-email:focus,
.wpcf7-form-control.wpcf7-tel:focus,
.wpcf7-form-control.wpcf7-textarea:focus,
.wpcf7 input:not([type="submit"]):focus,
.wpcf7 textarea:focus {
  outline: none !important;
  border-color: rgba(180,160,100,0.5) !important;
}

.wpcf7-form-control.wpcf7-textarea,
.wpcf7 textarea {
  min-height: 160px !important;
  resize: vertical;
}

.wpcf7-form-control.wpcf7-submit,
.wpcf7 input[type="submit"] {
  width: 100% !important;
  padding: 18px 36px !important;
  background: #c9a84c !important;
  color: #0d1a0d !important;
  border: none !important;
  border-radius: 0 !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

.wpcf7-form-control.wpcf7-submit:hover,
.wpcf7 input[type="submit"]:hover {
  background: #d4a948 !important;
}

.wpcf7-response-output {
  border-color: rgba(180,160,100,0.5) !important;
  color: #e8e4dc !important;
  margin: 16px 0 0 !important;
  padding: 12px 20px !important;
}

.wpcf7 .wpcf7-not-valid-tip {
  color: #e74c3c;
  font-size: 0.85rem;
}

.wpcf7-form .wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 0;
}

.wpcf7-form p {
  margin-bottom: 0 !important;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .site-logo {
  margin-bottom: 16px;
  display: inline-block;
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.footer-col ul a:hover {
  color: var(--color-primary-light);
}

.footer-mobile {
  display: none;
  text-align: center;
  padding-bottom: 24px;
}

.footer-mobile .site-logo img {
  height: 100px;
  max-width: 300px;
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  margin-bottom: 0;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--color-text-muted);
  transition: all var(--transition);
}

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

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    display: none;
  }

  .about-image::after {
    display: none;
  }

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

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--color-bg-alt);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 24px;
    transition: right 0.4s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
  }

  .nav-menu.active {
    right: 0;
  }

  .site-logo img {
    height: 120px !important;
    max-width: 350px !important;
    transition: height 0.4s ease;
  }

  .site-header.scrolled .site-logo img {
    height: 45px !important;
  }

  .site-logo {
    margin-right: 0;
  }

  .hero-content {
    padding-top: 140px;
  }

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

  .service-card {
    padding: 24px 20px;
  }

  .service-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }

  .service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  .service-card p {
    font-size: 0.85rem;
  }

  .service-card .service-link {
    margin-top: 12px;
    font-size: 0.8rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .review-card {
    flex: 0 0 calc(100% - 16px) !important;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
  }

  .footer-desktop {
    display: none;
  }

  .footer-mobile {
    display: block;
  }

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

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

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

  .section-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }

  .hero h1 {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .socials-grid {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .site-logo img {
    height: 130px !important;
    max-width: 350px !important;
  }

  .site-header.scrolled .site-logo img {
    height: 40px !important;
    max-width: 150px !important;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .about-stats {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .review-card {
    padding: 24px;
  }

  .contact-info-item {
    flex-direction: row;
  }
}

/* ========================================
   WORDPRESS SPECIFIC
   ======================================== */
.wp-block-image img {
  max-width: 100%;
  height: auto;
}

.alignfull {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.alignwide {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* WordPress admin bar spacing */
body.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

/* Default page/post content */
.entry-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--section-pad) 0;
}

.entry-content h1,
.entry-content h2,
.entry-content h3 {
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

.entry-content p {
  margin-bottom: 1.5em;
}

.entry-content ul,
.entry-content ol {
  margin-bottom: 1.5em;
  padding-left: 1.5em;
  color: var(--color-text-muted);
}

.page-header {
  padding: 160px 0 60px;
  background: var(--color-bg-alt);
  text-align: center;
}
