:root {
  /* Scottish Seasons Theme
     Spring: soft sage & blossom blush
     Summer: deep highland green
     Autumn: amber, rust & bracken
     Winter: slate stone & mist */
  --background: oklch(0.97 0.008 100);          /* warm parchment */
  --foreground: oklch(0.22 0.02 60);             /* dark peaty brown */
  --card: oklch(0.99 0.004 90);                  /* soft warm white */
  --card-foreground: oklch(0.22 0.02 60);
  --primary: oklch(0.38 0.1 165);                /* deep highland green */
  --primary-foreground: oklch(0.98 0 0);
  --secondary: oklch(0.92 0.02 100);             /* warm stone */
  --secondary-foreground: oklch(0.32 0.04 65);
  --accent: oklch(0.68 0.14 55);                 /* autumn amber */
  --accent-foreground: oklch(0.15 0.02 50);
  --muted: oklch(0.93 0.01 100);
  --muted-foreground: oklch(0.48 0.03 80);
  --border: oklch(0.87 0.015 100);               /* warm stone border */
  --ring: oklch(0.38 0.1 165);
  --radius: 0.625rem;
  --font-heading: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--foreground);
  background-color: var(--background);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

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

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

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

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

.section {
  padding: 5rem 0;
  background: var(--background);
}

.section-alt {
  background: linear-gradient(
    to bottom,
    var(--secondary) 0%,
    var(--background) 100%
  );
  position: relative;
}

.section-alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 25px 25px,
      oklch(0.38 0.1 165 / 0.03) 2%,
      transparent 0%
    ),
    radial-gradient(
      circle at 75px 75px,
      oklch(0.68 0.14 55 / 0.025) 2%,
      transparent 0%
    );
  background-size: 100px 100px;
  pointer-events: none;
}

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

.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: oklch(0.38 0.1 165 / 0.08);
  color: var(--primary);
  border: 1px solid oklch(0.38 0.1 165 / 0.15);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.section-title.text-left {
  text-align: left;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.8;
}

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

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-2-lg {
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3-footer {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  border-radius: calc(var(--radius) * 1.5);
}

.btn-full {
  width: 100%;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 4px 12px oklch(0.38 0.1 165 / 0.25);
}

.btn-primary:hover {
  background: oklch(0.32 0.1 165);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px oklch(0.38 0.1 165 / 0.35);
}

.btn-accent {
  background: var(--accent);
  color: var(--accent-foreground);
  box-shadow: 0 10px 15px -3px oklch(0.68 0.14 55 / 0.3);
}

.btn-accent:hover {
  background: oklch(0.62 0.15 52);
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px oklch(0.68 0.14 55 / 0.4);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.nav.scrolled .logo-icon {
  background: var(--primary);
}

.logo-icon i {
  font-size: 1.5rem;
  color: white;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  transition: color 0.3s ease;
}

.nav.scrolled .logo-text {
  color: var(--foreground);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav.scrolled .nav-link {
  color: var(--foreground);
}

.nav-link:hover {
  color: var(--primary);
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn i {
  font-size: 1.75rem;
  color: white;
  transition: color 0.3s ease;
}

.nav.scrolled .mobile-menu-btn i {
  color: var(--foreground);
}

/* Quote button: white/outlined on transparent nav, green once scrolled */
#quote-btn {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  box-shadow: none;
}

#quote-btn:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
  box-shadow: none;
}

.nav.scrolled #quote-btn {
  background: var(--primary);
  color: var(--primary-foreground);
  border: none;
  box-shadow: 0 4px 12px oklch(0.38 0.1 165 / 0.25);
}

.nav.scrolled #quote-btn:hover {
  background: oklch(0.32 0.1 165);
  box-shadow: 0 8px 20px oklch(0.38 0.1 165 / 0.35);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: var(--background);
  display: none;
  flex-direction: column;
  opacity: 0;
  animation: fadeIn 0.3s ease forwards;
}

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

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.mobile-menu-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: var(--foreground);
  font-size: 1.5rem;
  transition: background 0.2s ease;
}

.mobile-menu-close:hover {
  background: var(--secondary);
}

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

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 2rem 1.5rem;
  overflow-y: auto;
}

.mobile-menu-link {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
  transition: color 0.3s ease;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 0.6rem 0;
  width: 100%;
  animation: slideUp 0.3s ease backwards;
}

.mobile-menu-link:nth-child(1) {
  animation-delay: 0s;
}
.mobile-menu-link:nth-child(2) {
  animation-delay: 0.1s;
}
.mobile-menu-link:nth-child(3) {
  animation-delay: 0.2s;
}
.mobile-menu-link:nth-child(4) {
  animation-delay: 0.3s;
}
.mobile-menu-link:nth-child(5) {
  animation-delay: 0.4s;
}
.mobile-menu-link:nth-child(6) {
  animation-delay: 0.5s;
}

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

.mobile-menu-link:hover {
  color: var(--primary);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.carousel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
}

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

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

.carousel-overlay-image {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    oklch(0.22 0.06 155 / 0.15) 0%,
    oklch(0.22 0.06 155 / 0.4) 50%,
    oklch(0.18 0.06 155 / 0.6) 100%
  );
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 20;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
  left: 1.5rem;
}

.carousel-btn-next {
  right: 1.5rem;
}

.carousel-btn i {
  font-size: 1.5rem;
}

.carousel-indicators {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 20;
}

.carousel-indicator {
  width: 0.75rem;
  height: 0.75rem;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-indicator.active {
  width: 3rem;
  background: white;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.carousel-indicator:not(.active):hover {
  background: rgba(255, 255, 255, 0.5);
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  text-align: center;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .hero-content {
    text-align: left;
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .hero-content .hero-title,
  .hero-content .hero-subtitle,
  .hero-content .hero-buttons {
    max-width: 56%;
  }

  .hero-buttons {
    justify-content: flex-start;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(1.75rem, 7vw, 3.5rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  word-break: break-word;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  max-width: 38rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 64rem;
  margin: 0 auto;
  width: 100%;
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: clamp(1.75rem, 6vw, 3rem);
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

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

.mouse {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 9999px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0.5rem;
}

.mouse-wheel {
  width: 0.375rem;
  height: 0.75rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 9999px;
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}
.delay-2 {
  animation-delay: 0.2s;
}
.delay-3 {
  animation-delay: 0.3s;
}
.delay-4 {
  animation-delay: 0.8s;
}

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

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 2);
  transition: all 0.3s ease;
  height: 100%;
}

.card:hover {
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  transform: translateY(-8px);
}

.card-content {
  padding: 1.5rem;
}

.card-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: oklch(0.38 0.1 165 / 0.08);
  border-radius: calc(var(--radius) * 1.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.card:hover .card-icon {
  background: oklch(0.68 0.14 55 / 0.15);
}

.card:hover .card-icon i {
  color: oklch(0.5 0.14 50);
}

.card-icon i {
  font-size: 1.75rem;
  color: var(--primary);
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.card-description {
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.feature-list li span {
  width: 0.375rem;
  height: 0.375rem;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

.portfolio-card {
  cursor: pointer;
}

.portfolio-image {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: calc(var(--radius) * 2);
  overflow: hidden;
  margin-bottom: 1rem;
}

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

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

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

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

.portfolio-badge {
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: var(--accent-foreground);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
}

.portfolio-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.portfolio-card:hover .portfolio-title {
  color: var(--primary);
}

.portfolio-description {
  color: var(--muted-foreground);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.about-content {
  position: relative;
  z-index: 1;
}

.text-lg {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  background: oklch(0.38 0.1 165 / 0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 1.5rem;
  color: var(--primary);
}

.feature-item h4 {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.feature-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

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

.about-image {
  position: relative;
  border-radius: calc(var(--radius) * 2);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

.about-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

.about-stat-card {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  background: var(--accent);
  color: var(--accent-foreground);
  padding: 2rem;
  border-radius: calc(var(--radius) * 2);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.about-stat-value {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.about-stat-label {
  font-size: 0.875rem;
  font-weight: 500;
}

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

.about-strip-stat {
  text-align: center;
}

.about-strip-value {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.about-strip-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 2);
  padding: 1.5rem;
  transition: box-shadow 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

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

.testimonial-text {
  color: var(--foreground);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}

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

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 600;
  color: var(--foreground);
}

.testimonial-location {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.testimonial-project {
  font-size: 0.75rem;
  color: var(--primary);
  margin-top: 0.25rem;
}

.testimonials-second-row {
  max-width: 64rem;
  margin: 2rem auto 0;
}

.contact-form-wrapper {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 2);
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.contact-form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

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

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

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

.form-group label {
  font-weight: 500;
  color: var(--foreground);
  font-size: 0.875rem;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  color: var(--foreground);
  background: var(--background);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--ring);
  box-shadow: 0 0 0 3px oklch(0.38 0.1 165 / 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-info-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-icon {
  width: 3rem;
  height: 3rem;
  background: oklch(0.38 0.1 165 / 0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon i {
  font-size: 1.5rem;
  color: var(--primary);
}

.contact-info-label {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.contact-info-value {
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

a.contact-info-value:hover {
  color: var(--primary);
}

.contact-action-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.6rem;
}

.contact-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 600;
  background: oklch(0.38 0.1 165 / 0.08);
  color: var(--primary);
  border: 1px solid oklch(0.38 0.1 165 / 0.2);
  transition: all 0.2s ease;
  text-decoration: none;
}

.contact-action-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.contact-action-btn--whatsapp {
  background: oklch(0.72 0.18 145 / 0.1);
  color: oklch(0.45 0.18 145);
  border-color: oklch(0.72 0.18 145 / 0.3);
}

.contact-action-btn--whatsapp:hover {
  background: oklch(0.45 0.18 145);
  color: white;
  border-color: oklch(0.45 0.18 145);
}

.contact-social {
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: oklch(0.38 0.1 165 / 0.08);
  color: var(--primary);
  border: 1px solid oklch(0.38 0.1 165 / 0.2);
  font-size: 1.2rem;
  transition: all 0.2s ease;
  text-decoration: none;
}

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

.contact-info-subtext {
  font-size: 0.875rem;
  display: block;
  margin-top: 0.25rem;
}

.contact-benefits {
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 2);
  padding: 2rem;
}

.contact-benefits h4 {
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.contact-benefits ul {
  list-style: none;
}

.contact-benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

.contact-benefits li span {
  width: 0.375rem;
  height: 0.375rem;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.footer {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 3rem 0;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-icon i {
  font-size: 1.5rem;
  color: var(--accent-foreground);
}

.footer-logo span {
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-text {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.footer-heading {
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links button {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-size: 1rem;
}

.footer-links button:hover {
  color: white;
}

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

.footer-links a:hover {
  color: white;
}

/* ── Service Areas ───────────────────────────────────── */
.grid-4-areas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.area-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 2);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.area-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.08);
  border-color: oklch(0.38 0.1 165 / 0.3);
}

.area-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: oklch(0.38 0.1 165 / 0.08);
  border-radius: calc(var(--radius) * 1.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.area-icon i {
  font-size: 1.75rem;
  color: var(--primary);
}

.area-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.area-text {
  font-size: 0.9rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* ── FAQ ─────────────────────────────────────────────── */
.faq-list {
  max-width: 52rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.5);
  overflow: hidden;
  background: var(--card);
  transition: box-shadow 0.3s ease;
}

.faq-item:has(.faq-answer.open) {
  box-shadow: 0 4px 20px rgb(0 0 0 / 0.06);
  border-color: oklch(0.38 0.1 165 / 0.25);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

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

.faq-icon {
  font-size: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

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

.faq-answer.open {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
  color: var(--muted-foreground);
  line-height: 1.8;
  font-size: 0.95rem;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.footer-contact {
  list-style: none;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact li a:hover {
  color: white;
}

.footer-social {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.footer-social-link {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-social-link:hover {
  background: rgba(255, 255, 255, 0.25);
  color: white;
  transform: translateY(-2px);
}

.footer-contact li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  animation: fadeIn 0.3s ease;
}

.modal-content {
  position: relative;
  background: var(--background);
  border-radius: calc(var(--radius) * 2);
  max-width: 48rem;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  animation: slideUp 0.3s ease;
  z-index: 1;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: var(--muted);
  transform: scale(1.1);
}

.modal-close i {
  font-size: 1.25rem;
  color: var(--foreground);
}

.modal-header {
  margin-bottom: 1.5rem;
}

.modal-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.modal-category {
  color: var(--muted-foreground);
}

.modal-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: calc(var(--radius) * 1.5);
  margin-bottom: 1.5rem;
}

/* Modal image slider */
.modal-slider {
  position: relative;
  width: 100%;
  height: 320px;
  border-radius: calc(var(--radius) * 1.5);
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: var(--secondary);
}

.modal-slides {
  width: 100%;
  height: 100%;
}

.modal-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.modal-slide-img.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  z-index: 2;
  transition: background 0.2s ease;
}

.modal-slide-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

.modal-slide-prev { left: 0.6rem; }
.modal-slide-next { right: 0.6rem; }

.modal-slide-dots {
  position: absolute;
  bottom: 0.65rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  z-index: 2;
}

.modal-slide-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.modal-slide-dot.active {
  background: #fff;
  transform: scale(1.25);
}

.modal-section {
  margin-bottom: 1.5rem;
}

.modal-section-title {
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.modal-section-text {
  color: var(--muted-foreground);
  line-height: 1.8;
}

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

.modal-tag {
  padding: 0.5rem 1rem;
  background: var(--secondary);
  color: var(--secondary-foreground);
  border-radius: var(--radius);
  font-size: 0.875rem;
}

.toast {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background: var(--foreground);
  color: var(--background);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.3);
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 10000;
  max-width: 400px;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.toast.success {
  background: oklch(0.55 0.15 145);
  color: white;
}

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

  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .mobile-menu-btn {
    display: none;
  }

  .hero-title {
    font-size: 4.5rem;
  }

  .section {
    padding: 8rem 0;
  }

  .grid-2-lg {
    grid-template-columns: 1fr 1fr;
  }

  .carousel-btn-prev {
    left: 3rem;
  }

  .carousel-btn-next {
    right: 3rem;
  }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .carousel-btn {
    display: none;
  }

  .scroll-indicator {
    display: none;
  }

  .about-stat-card {
    position: static;
    margin-top: 1rem;
  }

  .about-image img {
    height: 400px;
  }
}
