/* ============================================
   FTF Building & Landscaping - Main Stylesheet
   Design System: Orange #FF9500 | Dark #2C2C2C
   Mobile-First, Clean Flat Design
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  --orange: #FF9500;
  --orange-hover: #e68600;
  --dark: #2C2C2C;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --radius-sm: 0.75rem;
  --radius: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-2xl: 2.5rem;
  --radius-3xl: 3rem;
  --transition: all 0.3s ease;
  --transition-fast: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #ffffff;
  color: var(--gray-900);
  line-height: 1.6;
}

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

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background-color: var(--orange); border-radius: 6px; border: 2px solid #f1f1f1; }
::-webkit-scrollbar-thumb:hover { background-color: var(--orange-hover); }
* { scrollbar-color: var(--orange) #f1f1f1; scrollbar-width: thin; }

/* ---------- Layout Utilities ---------- */
.container {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 640px) {
  .container { padding-left: 2rem; padding-right: 2rem; }
}

@media (min-width: 1024px) {
  .container { padding-left: 3rem; padding-right: 3rem; }
}

.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }

/* ---------- Scroll Animations (replaces Framer Motion) ---------- */
.anim-fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.anim-fade-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.anim-fade-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.anim-visible {
  opacity: 1 !important;
  transform: none !important;
}

.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }
.anim-delay-4 { transition-delay: 0.4s; }
.anim-delay-5 { transition-delay: 0.5s; }

/* Hero section loads immediately - no delay needed */
.hero-content {
  animation: heroFadeIn 0.9s ease forwards;
}

.hero-item-1 { animation: heroItemIn 0.8s ease 0.1s both; }
.hero-item-2 { animation: heroItemIn 0.8s ease 0.3s both; }
.hero-item-3 { animation: heroItemIn 0.8s ease 0.5s both; }

@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes heroItemIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Header ---------- */
.site-header {
  position: relative;
  background: #fff;
  width: 100%;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4rem;
  padding: 1rem 1.5rem;
  position: relative;
}

@media (min-width: 768px) {
  .header-inner {
    min-height: 5rem;
    padding: 1.25rem 2rem;
  }
}

@media (min-width: 1024px) {
  .header-inner { padding: 1.25rem 3rem; }
}

.header-logo img {
  height: 2.5rem;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .header-logo img { height: 3rem; }
}

.header-logo:hover img { transform: scale(1.05); }

/* Desktop Nav - centered */
.desktop-nav {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@media (min-width: 768px) {
  .desktop-nav { display: flex; }
}

.desktop-nav nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}

@media (min-width: 1024px) {
  .desktop-nav nav { gap: 1rem; }
}

.nav-link {
  padding: 0.5rem 0.75rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gray-700);
  transition: var(--transition-fast);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .nav-link { padding: 0.5rem 1rem; font-size: 1rem; }
}

.nav-link:hover { background: var(--gray-100); }

.nav-link.active {
  background: var(--dark);
  color: #fff;
}

/* Dropdown — open/close controlled entirely by JS (see initDropdowns in main.js) */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: 16rem;
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  padding: 0.5rem 0;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  max-height: 80vh;
  overflow-y: auto;
}

.nav-dropdown-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown.open .chevron {
  transform: rotate(180deg);
}

.dropdown-item {
  display: block;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-50);
  transition: var(--transition-fast);
}

.dropdown-item:last-child { border-bottom: none; }

.dropdown-item:hover {
  background: var(--gray-50);
  color: var(--orange);
}

.chevron {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.nav-dropdown:hover .chevron { transform: rotate(180deg); }

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 20;
}

.btn-phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--orange);
  color: var(--dark);
  font-weight: 700;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  transition: var(--transition-fast);
  white-space: nowrap;
}

@media (min-width: 768px) { .btn-phone { display: flex; } }
@media (min-width: 1024px) { .btn-phone { padding: 0.75rem 1.25rem; font-size: 1rem; } }

.btn-phone:hover { background: var(--orange-hover); transform: scale(1.05); }

.btn-quote-header {
  display: none;
  padding: 0.5rem 1.25rem;
  background: var(--dark);
  color: #fff;
  font-weight: 700;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  transition: var(--transition-fast);
  white-space: nowrap;
}

@media (min-width: 768px) { .btn-quote-header { display: block; } }
@media (min-width: 1024px) { .btn-quote-header { padding: 0.75rem 1.5rem; font-size: 1rem; } }

.btn-quote-header:hover { background: rgba(44,44,44,0.85); transform: scale(1.05); }

/* Mobile phone button */
.btn-phone-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  transition: var(--transition-fast);
}

@media (min-width: 768px) { .btn-phone-mobile { display: none; } }
.btn-phone-mobile:hover { background: var(--orange-hover); }

/* Hamburger */
.btn-hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--dark);
  color: #fff;
  border-radius: 50%;
  transition: var(--transition-fast);
}

@media (min-width: 768px) { .btn-hamburger { display: none; } }
.btn-hamburger:hover { background: #000; }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--gray-100);
  z-index: 40;
  max-height: 90vh;
  overflow-y: auto;
}

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

@media (min-width: 768px) { .mobile-menu { display: none !important; } }

.mobile-menu-inner {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: 0.75rem;
  transition: var(--transition-fast);
}

.mobile-nav-link:hover { background: var(--gray-50); }

.mobile-dropdown-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: 0.75rem;
  transition: var(--transition-fast);
  text-align: left;
}

.mobile-dropdown-btn:hover { background: var(--gray-50); }
.mobile-dropdown-btn.active { color: var(--orange); }
.mobile-dropdown-btn.active .chevron { transform: rotate(180deg); color: var(--orange); }

.mobile-submenu {
  display: none;
  padding-left: 1rem;
  border-left: 2px solid var(--gray-100);
  margin-left: 0.5rem;
  padding-bottom: 0.5rem;
}

.mobile-submenu.open { display: block; }

.mobile-submenu-link {
  display: block;
  padding: 0.5rem 0.5rem;
  font-size: 1rem;
  color: var(--gray-600);
  border-radius: 0.5rem;
  transition: var(--transition-fast);
}

.mobile-submenu-link:hover { color: var(--orange); background: var(--gray-50); }

.mobile-menu-actions {
  padding-top: 1.5rem;
  margin-top: 1rem;
  border-top: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: 0.75rem;
  transition: var(--transition-fast);
  white-space: nowrap;
  justify-content: center;
}

.btn-primary:hover {
  background: var(--orange-hover);
  transform: scale(1.05);
}

.btn-primary:active { transform: scale(0.95); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: 0.75rem;
  transition: var(--transition-fast);
  justify-content: center;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.3);
  transform: scale(1.05);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: #fff;
  border: 2px solid var(--gray-900);
  color: var(--gray-900);
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: 50px;
  transition: var(--transition);
  justify-content: center;
}

.btn-outline-dark:hover {
  background: var(--gray-900);
  color: #fff;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: var(--dark);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 0.5rem;
  transition: var(--transition-fast);
  justify-content: center;
}

.btn-dark:hover { background: rgba(44,44,44,0.85); }

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .btn-icon { width: 3.5rem; height: 3.5rem; }
}

.btn-icon-inactive {
  background: var(--gray-50);
  border-color: var(--gray-100);
  color: var(--gray-300);
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-icon-left {
  background: var(--gray-100);
  border-color: var(--gray-200);
  color: var(--gray-800);
}

.btn-icon-left:hover {
  background: var(--gray-200);
  transform: scale(1.05);
}

.btn-icon-right {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.btn-icon-right:hover {
  background: var(--orange-hover);
  transform: scale(1.05);
}

/* ---------- Section Header ---------- */
.section-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 10;
}

.section-header.center {
  align-items: center;
  text-align: center;
}

.section-header.left {
  align-items: flex-start;
  text-align: left;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  background: #fff7ed;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 50px;
  border: 1px solid rgba(255,149,0,0.2);
}

.section-label svg {
  width: 0.875rem;
  height: 0.875rem;
}

.section-title-wrap {
  position: relative;
}

.section-title-glow {
  display: none;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--gray-900);
}

.section-title.white { color: #fff; }

.section-subtitle {
  max-width: 48rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--gray-600);
  line-height: 1.7;
}

.section-subtitle.white { color: var(--gray-200); }

/* ---------- Hero Section ---------- */
.hero-section {
  position: relative;
  height: 60vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
  background: #fff;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero-section {
    height: 100vh;
    min-height: 600px;
    padding: 3rem 0;
  }
}

.hero-bg-wrap {
  position: absolute;
  inset: 1rem;
  border-radius: var(--radius-3xl);
  overflow: hidden;
  background: #1a1a1a;
}

@media (min-width: 768px) {
  .hero-bg-wrap { inset: 2rem; border-radius: var(--radius-2xl); }
}

@media (min-width: 1024px) {
  .hero-bg-wrap { inset: 3rem; }
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay-1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.4), rgba(0,0,0,0.7));
}

.hero-overlay-2 {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
  mix-blend-mode: multiply;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2.5rem 1.5rem 2rem;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .hero-content { padding: 5rem 2rem 0; }
}

.hero-title {
  font-size: clamp(2.25rem, 8vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) { .hero-title { margin-bottom: 2rem; } }
@media (min-width: 1024px) { .hero-title { font-size: clamp(3rem, 6vw, 5rem); } }

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

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.875rem);
  color: #f3f4f6;
  max-width: 56rem;
  margin: 0 auto 2rem;
  font-weight: 500;
  line-height: 1.6;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

@media (min-width: 768px) { .hero-subtitle { margin-bottom: 3rem; } }

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

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

.hero-btn-primary {
  min-width: 13.75rem;
}

.hero-btn-secondary {
  display: none;
  min-width: 13.75rem;
}

@media (min-width: 640px) { .hero-btn-secondary { display: inline-flex; } }

/* ---------- Badge / Pulse ---------- */
.badge-orange {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255,149,0,0.1);
  border: 1px solid rgba(255,149,0,0.2);
  border-radius: 50px;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.pulse-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s infinite ease-in-out;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ---------- Gallery Section ---------- */
.gallery-section {
  padding: 3rem 0 4rem;
  background: #fff;
  overflow: hidden;
}

@media (min-width: 1024px) { .gallery-section { padding: 4rem 0 5rem; } }

.slider-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .slider-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
  }
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  align-self: flex-end;
}

@media (min-width: 768px) { .slider-controls { align-self: auto; } }

/* Horizontal Scroll Container */
.h-scroll {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.h-scroll::-webkit-scrollbar { display: none; }

/* Gallery Cards */
.gallery-card {
  flex: none;
  width: 85vw;
  scroll-snap-align: center;
  border-radius: var(--radius-2xl);
  background: #fff;
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

@media (min-width: 768px) {
  .gallery-card { width: calc(50% - 1rem); }
}

@media (min-width: 1024px) {
  .gallery-card { width: calc(33.333% - 1.35rem); }
}

.gallery-card:hover { border-color: rgba(255,149,0,0.5); }

.gallery-card-img {
  position: relative;
  height: 16rem;
  overflow: hidden;
  background: var(--gray-200);
  flex-shrink: 0;
  border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

@media (min-width: 1024px) { .gallery-card-img { height: 18rem; } }

.gallery-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  will-change: transform;
  transform: translateZ(0);
}

.gallery-card:hover .gallery-card-img img { transform: translateZ(0) scale(1.05); }

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  opacity: 0.8;
  pointer-events: none;
  transform: translateZ(0);
}

.gallery-card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  border-radius: 0 0 var(--radius-2xl) var(--radius-2xl);
}

.gallery-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
  line-height: 1.3;
}

@media (min-width: 1024px) { .gallery-card-title { font-size: 1.875rem; } }

.gallery-card:hover .gallery-card-title { color: var(--orange); }

.gallery-card-desc {
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.7;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---------- Services List Section ---------- */
.services-section {
  padding: 3rem 0 5rem;
  background: #fff;
}

@media (min-width: 768px) { .services-section { padding: 5rem 0; } }

.services-list {
  max-width: 56rem;
  margin: 3rem auto 0;
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: 1rem;
  overflow: hidden;
  divide-y: var(--gray-100);
}

.service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--gray-100);
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.service-item:last-child { border-bottom: none; }

.service-item:hover { background: rgba(255,149,0,0.03); }

.service-item-text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.service-item:hover .service-item-text h3 { color: var(--orange); }

.service-item-text p {
  display: none;
}

.service-arrow {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.service-item:hover .service-arrow {
  background: var(--orange);
  color: #fff;
}

.service-arrow svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
}

.service-item:hover .service-arrow svg { transform: translateX(2px); }

/* ---------- Projects Slider ---------- */
.projects-section {
  padding: 4rem 0;
  background: #fff;
  overflow: hidden;
}

.project-card {
  flex: none;
  width: 85vw;
  scroll-snap-align: center;
  border-radius: 0.75rem;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  position: relative;
  background: var(--gray-200);
  border: 1px solid var(--gray-100);
  transition: box-shadow 0.3s ease;
}

@media (min-width: 640px) {
  .project-card { width: calc(50% - 1rem); }
}

@media (min-width: 1024px) {
  .project-card { width: calc(33.333% - 1.35rem); }
}

.project-card:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.15); }

.project-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  will-change: transform;
  transform: translateZ(0);
}

.project-card:hover .project-card-img { transform: translateZ(0) scale(1.05); }

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.3), rgba(0,0,0,0.1));
  opacity: 0.8;
  pointer-events: none;
  transform: translateZ(0);
}

.project-card:hover .project-overlay { opacity: 0.8; }

.project-category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.25rem 0.75rem;
  background: var(--orange);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 50px;
}

.project-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.project-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 768px) { .project-card-title { font-size: 1.5rem; } }

.project-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: var(--orange);
  color: var(--dark);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 0.5rem;
  transition: background 0.2s ease;
  width: fit-content;
}

.project-card-btn:hover { background: var(--orange-hover); }

/* ---------- Testimonials Section ---------- */
.testimonials-section {
  padding: 6rem 0;
  background: #fff;
  overflow: hidden;
  position: relative;
}

.testimonials-bg-1 {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 50%;
  height: 50%;
  background: rgba(255,149,0,0.1);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.testimonials-bg-2 {
  position: absolute;
  bottom: 10%;
  right: 10%;
  width: 40%;
  height: 40%;
  background: rgba(59,130,246,0.1);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.testimonial-card {
  flex: none;
  width: 85vw;
  scroll-snap-align: center;
  border-radius: 0.75rem;
  background: #fff;
  border: 1px solid var(--gray-200);
  padding: 3.5rem 2.5rem 2rem;
  position: relative;
  transition: border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 12.5rem;
}

@media (min-width: 640px) { .testimonial-card { width: 20rem; } }
@media (min-width: 768px) { .testimonial-card { width: 22.5rem; } }

.testimonial-card:hover { border-color: var(--orange); }

.testimonial-source-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.75rem 0.25rem 0.25rem;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  backdrop-filter: blur(4px);
}

.testimonial-source-icon {
  padding: 0.375rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-source-icon.google { background: var(--gray-50); }
.testimonial-source-icon.facebook { background: rgba(24,119,242,0.1); }
.testimonial-source-icon.nextdoor { background: transparent; }

.testimonial-source-badge span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-600);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-right: 3rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
}

.testimonial-stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.375rem;
}

.star-filled { color: var(--orange); fill: var(--orange); }
.star-empty { color: var(--gray-400); fill: var(--gray-400); }

.testimonial-text {
  font-size: 1rem;
  color: var(--gray-800);
  line-height: 1.7;
  font-style: italic;
  font-weight: 500;
  flex: 1;
}

.testimonial-project-link {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
  display: flex;
  justify-content: flex-end;
}

.testimonial-project-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--orange);
  transition: color 0.2s ease;
}

.testimonial-project-link a:hover { color: var(--orange-hover); }

/* ---------- Contact Section ---------- */
.contact-section {
  padding-bottom: 5rem;
  padding-top: 1.5rem;
  background: #fff;
}

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

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

.contact-dark-card {
  background: var(--dark);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (min-width: 768px) { .contact-dark-card { padding: 2.5rem; } }

.contact-dark-card-bg-1 {
  position: absolute;
  top: 0; right: 0;
  width: 16rem; height: 16rem;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  margin: -4rem -4rem 0 0;
}

.contact-dark-card-bg-2 {
  position: absolute;
  bottom: 0; left: 0;
  width: 12rem; height: 12rem;
  background: rgba(255,149,0,0.1);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  margin: 0 0 -2.5rem -2.5rem;
}

.contact-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

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

.contact-feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255,149,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.contact-feature:hover .contact-feature-icon { background: var(--orange); }
.contact-feature:hover .contact-feature-icon svg { color: #fff !important; }

.contact-feature-text {
  font-weight: 500;
  color: var(--gray-200);
  transition: color 0.3s ease;
}

.contact-feature:hover .contact-feature-text { color: #fff; }

.contact-contact-info {
  position: relative;
  z-index: 10;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.contact-contact-info a {
  display: block;
  transition: color 0.2s ease;
}

.contact-phone-link {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
}

@media (min-width: 768px) { .contact-phone-link { font-size: 2.5rem; } }

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

.contact-email-link {
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  color: var(--gray-400);
  font-size: 0.9375rem;
}

.contact-email-link:hover { color: #fff; }

/* Contact Form Card */
.contact-form-card {
  background: #fff;
  border-radius: var(--radius-2xl);
  padding: 2rem;
  border: 1px solid var(--gray-100);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

@media (min-width: 768px) { .contact-form-card { padding: 3rem; } }

/* Form Elements */
.form-group { margin-bottom: 1.25rem; }

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: 0.625rem;
  font-size: 1rem;
  font-family: inherit;
  color: var(--gray-900);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,149,0,0.12);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--gray-400);
}

.form-textarea { resize: vertical; min-height: 7rem; }

.form-row {
  display: grid;
  gap: 1.25rem;
}

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

/* Quick Actions */
.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.quick-action-btn {
  padding: 0.5rem 1rem;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  cursor: pointer;
  transition: var(--transition-fast);
}

.quick-action-btn:hover,
.quick-action-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

/* Form success */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 1rem;
  margin-top: 1rem;
}

.form-success.show { display: block; }

.form-success svg {
  width: 3rem;
  height: 3rem;
  color: #16a34a;
  margin: 0 auto 1rem;
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 0 0 3rem;
  background: #fff;
  overflow: hidden;
  position: relative;
}

.footer-bg-1 {
  position: absolute;
  top: 10%;
  right: -10%;
  width: 31rem;
  height: 31rem;
  background: #fff7ed;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
  pointer-events: none;
}

.footer-bg-2 {
  position: absolute;
  bottom: 10%;
  left: -5%;
  width: 18.75rem;
  height: 18.75rem;
  background: var(--gray-100);
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
  pointer-events: none;
}

.footer-inner {
  background: var(--dark);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,0.05);
}

@media (min-width: 768px) { .footer-inner { padding: 3rem; } }
@media (min-width: 1024px) { .footer-inner { padding: 4rem; } }

.footer-dots {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
  background-image: radial-gradient(#ffffff 1px, transparent 1px);
  background-size: 32px 32px;
}

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

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

.footer-title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
}

.footer-desc {
  color: #cbd5e1;
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 36rem;
}

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

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-contact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-contact-label {
  color: #94a3b8;
  font-size: 0.625rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.footer-contact-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  transition: color 0.2s ease;
}

.footer-contact-value:hover { color: var(--orange); }

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

@media (min-width: 640px) {
  .footer-cta-buttons {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }
}

@media (min-width: 1024px) {
  .footer-cta-buttons { justify-content: flex-end; }
}

.btn-footer-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  border-radius: 0.75rem;
  transition: var(--transition-fast);
  font-size: 1rem;
  white-space: nowrap;
}

.btn-footer-primary:hover { background: var(--orange-hover); transform: scale(1.02); }

.btn-footer-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-weight: 700;
  border-radius: 0.75rem;
  backdrop-filter: blur(4px);
  transition: var(--transition-fast);
  font-size: 1rem;
}

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

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  font-size: 0.875rem;
  color: var(--gray-500);
  text-align: center;
}

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

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: var(--gray-500);
  transition: color 0.2s ease;
}

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

/* ---------- Page Hero (Inner Pages) ---------- */
.page-hero {
  background: #fff;
  padding: 2rem 0 4rem;
  text-align: center;
}

.page-hero-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: #fff7ed;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.page-hero-title {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.page-hero-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 40rem;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- Info Cards ---------- */
.info-card {
  background: #fff;
  border-radius: var(--radius-2xl);
  padding: 2rem;
  border: 1px solid var(--gray-100);
}

.info-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.info-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.info-card-text {
  color: var(--gray-600);
  line-height: 1.7;
}

.tag-pill {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 50px;
}

/* ---------- 404 Page ---------- */
.not-found-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  text-align: center;
  background: #fff;
}

.not-found-title {
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* ---------- SVG Icons (inline) ---------- */
svg {
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

/* ---------- Utility classes ---------- */
.text-orange { color: var(--orange); }
.text-dark { color: var(--dark); }
.bg-orange { background: var(--orange); }
.bg-dark { background: var(--dark); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.relative { position: relative; }
.overflow-hidden { overflow: hidden; }

/* Content divider dots pattern */
.dot-pattern {
  background-image: radial-gradient(var(--gray-200) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* Explore all button spacer */
.explore-all-wrap {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

/* ---------- Responsive: hide desktop on mobile ---------- */
@media (max-width: 767px) {
  .hidden-mobile { display: none !important; }
}

@media (min-width: 768px) {
  .hidden-desktop { display: none !important; }
}
