/* =================================
   3PMECA - Premium Dark Theme CSS
   ================================= */

/* CSS Variables */
:root {
  /* 3PMECA Premium Dark Theme - Exact oklch values from original */
  /* background: oklch(0.08 0 0) */
  --background: #121212;
  /* foreground: oklch(0.95 0 0) */
  --foreground: #f0f0f0;
  /* card: oklch(0.10 0 0) */
  --card: #191919;
  --card-foreground: #f0f0f0;
  /* popover: oklch(0.10 0 0) */
  --popover: #191919;
  --popover-foreground: #f0f0f0;
  /* Primary: oklch(0.55 0.20 25) - Signature Red */
  --primary: #c93b3b;
  --primary-foreground: #ffffff;
  /* Secondary: oklch(0.12 0 0) */
  --secondary: #1e1e1e;
  --secondary-foreground: #f0f0f0;
  /* muted: oklch(0.15 0 0) */
  --muted: #262626;
  /* muted-foreground: oklch(0.55 0 0) */
  --muted-foreground: #8c8c8c;
  /* accent: oklch(0.55 0.20 25) */
  --accent: #c93b3b;
  --accent-foreground: #ffffff;
  --destructive: #c93b3b;
  --destructive-foreground: #ffffff;
  /* border: oklch(0.18 0 0) */
  --border: #2e2e2e;
  /* input: oklch(0.15 0 0) */
  --input: #262626;
  --ring: #c93b3b;
  /* radius: 0rem - Sharp edges, no rounded corners */
  --radius: 0;
}

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

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  letter-spacing: -0.02em;
  font-weight: 300;
}

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

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

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

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.text-primary {
  color: var(--primary);
}

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

.hidden {
  display: none !important;
}

/* Section common styles */
.section-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 6rem;
  background: linear-gradient(to bottom, transparent, var(--border));
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--primary);
  font-weight: 300;
}

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

.section-title {
  margin-top: 1.5rem;
  font-size: 2.25rem;
  font-weight: 200;
  letter-spacing: -0.025em;
  color: var(--foreground);
}

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

.section-title-left {
  margin-top: 1.5rem;
  font-size: 2.25rem;
  font-weight: 200;
  letter-spacing: -0.025em;
  color: var(--foreground);
  text-align: left;
}

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

.section-subtitle {
  margin-top: 1.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted-foreground);
  font-weight: 300;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 300;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  letter-spacing: 0.2em;
  background-color: #b33535;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background-color: transparent;
  color: var(--foreground);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 300;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--foreground);
  letter-spacing: 0.2em;
}

/* Premium button transitions */
.btn-premium {
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease-out;
}

.btn-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(100%);
  transition: transform 0.5s ease-out;
}

.btn-premium:hover::before {
  transform: translateY(0);
}

/* Line animation */
.line-reveal {
  position: relative;
}

.line-reveal::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary);
  transition: width 0.5s ease-out;
}

.line-reveal:hover::after {
  width: 100%;
}

/* Dot indicator */
.dot {
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background-color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.5rem;
}

/* =================================
   HEADER
   ================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s ease;
  background-color: transparent;
}

.header.scrolled {
  background-color: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

@media (min-width: 1024px) {
  .header-container {
    padding: 0 2rem;
  }
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: -0.025em;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.7;
}

/* Logo SVG image */
.logo-img {
  height: 2.25rem;
  width: auto;
  display: block;
}

/* Fallback texte si logo SVG absent */
.logo-3 {
  color: var(--foreground);
}

.logo-p {
  color: var(--primary);
}

.logo-meca {
  color: var(--foreground);
}

/* Desktop Navigation */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 3rem;
}

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

.nav-link {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: color 0.3s ease;
}

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

/* Header CTA */
.header-cta {
  display: none;
  align-items: center;
}

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

.phone-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--foreground);
  transition: all 0.3s ease;
}

.phone-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.phone-link:hover .phone-icon {
  border-color: var(--primary);
  background-color: var(--primary);
}

.phone-link:hover .phone-icon svg {
  color: var(--primary-foreground);
}

.phone-number {
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  text-transform: uppercase;
}

/* Mobile Menu Button */
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground);
}

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

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 5rem 0 0 0;
  background-color: rgba(20, 20, 20, 0.5);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  min-height: calc(100vh - 5rem);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

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

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: calc(100vh - 5rem);
  gap: 2rem;
  padding-top: 3rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.mobile-nav-link {
  font-size: 1.25rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--foreground);
  transition: all 0.3s ease;
}

@media (min-width: 640px) {
  .mobile-nav-link {
    font-size: 1.5rem;
  }
}

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

.mobile-phone-link {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--primary);
  transition: opacity 0.3s ease;
}

.mobile-phone-link:hover {
  opacity: 0.7;
}

.mobile-phone-link span {
  font-size: 1.125rem;
  letter-spacing: 0.1em;
}

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

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
}

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

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 100px 100px;
}

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

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

.hero-tagline {
  margin-bottom: 2rem;
}

.hero-tagline span {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--primary);
  font-weight: 300;
}

.hero-title {
  font-size: 3rem;
  font-weight: 200;
  letter-spacing: -0.025em;
  line-height: 0.9;
  margin-bottom: 2rem;
}

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

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

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

.hero-title-line {
  display: block;
  color: var(--foreground);
}

.hero-title-line + .hero-title-line {
  margin-top: 0.5rem;
}

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

.hero-subtitle {
  max-width: 36rem;
  margin: 0 auto 3rem;
  color: var(--muted-foreground);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.75;
}

@media (min-width: 640px) {
  .hero-subtitle {
    font-size: 1.125rem;
  }
}

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

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

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--muted-foreground);
}

.bounce {
  animation: bounce 1s infinite;
}

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

/* Side text */
.side-text {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

@media (min-width: 1024px) {
  .side-text {
    display: block;
  }
}

.side-text span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(115, 115, 115, 0.5);
  font-weight: 300;
}

.side-text-left {
  left: 2rem;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;
}

.side-text-right {
  right: 2rem;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
}

/* =================================
   BRANDS SECTION
   ================================= */
.brands {
  position: relative;
  padding: 6rem 0;
  background-color: rgba(38, 38, 38, 0.3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.brands-carousel-wrapper {
  margin-bottom: 4rem;
  overflow: hidden;
}

.brands-carousel {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  will-change: transform;
}

.brand-item {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background-color: var(--background);
  transition: all 0.3s ease;
}

.brand-item:hover {
  border-color: var(--primary);
}

.brand-item span {
  font-weight: 300;
  font-size: 1.125rem;
  color: var(--foreground);
  transition: color 0.3s ease;
}

.brand-item:hover span {
  color: var(--primary);
}

/* Brands Grid */
.brands-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.brand-card {
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 2rem;
  background-color: var(--background);
  transition: border-color 0.3s ease;
}

.brand-card:hover {
  border-color: var(--primary);
}

.brand-card-title {
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--primary);
  margin-bottom: 1rem;
}

.brand-card-subtitle {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted-foreground);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.brand-card-list {
  list-style: none;
}

.brand-card-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.brand-card-list li:last-child {
  border-bottom: none;
}

.brand-card-list li span:first-child {
  font-weight: 300;
  color: var(--foreground);
}

.badge {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  background-color: rgba(201, 59, 59, 0.1);
  color: var(--primary);
  border-radius: 0.25rem;
  font-weight: 300;
}

.brand-card-content {
  font-size: 0.875rem;
}

.brand-card-content p {
  font-weight: 300;
  margin-bottom: 0.5rem;
}

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

.brand-card-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.brand-card-item span:last-child {
  font-weight: 300;
  color: var(--foreground);
}

.text-primary-link {
  color: var(--primary);
  font-weight: 500;
  transition: text-decoration 0.3s ease;
}

.text-primary-link:hover {
  text-decoration: underline;
}

/* =================================
   SERVICES SECTION
   ================================= */
.services {
  position: relative;
  padding: 8rem 0;
  background-color: var(--background);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1.5rem;
  background-color: var(--background);
  transition: all 0.5s ease;
}

@media (min-width: 640px) {
  .service-card {
    padding: 2.5rem 3rem;
  }
}

.service-card:hover {
  border-color: var(--primary);
  background-color: rgba(38, 38, 38, 0.3);
}

.service-number {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 0.75rem;
  color: rgba(115, 115, 115, 0.3);
  font-weight: 300;
}

.service-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 0.25rem;
  margin-bottom: 2rem;
  transition: all 0.5s ease;
}

.service-icon svg {
  color: var(--muted-foreground);
  transition: color 0.5s ease;
}

.service-card:hover .service-icon {
  border-color: var(--primary);
  background-color: var(--primary);
}

.service-card:hover .service-icon svg {
  color: var(--primary-foreground);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.service-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-item h4 {
  font-weight: 300;
  color: var(--foreground);
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.service-item ul {
  list-style: none;
}

.service-item li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.service-hover-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary);
  transition: width 0.5s ease;
}

.service-card:hover .service-hover-line {
  width: 100%;
}

.services-note {
  margin-top: 4rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background-color: rgba(38, 38, 38, 0.2);
  text-align: center;
}

.services-note p {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--muted-foreground);
}

/* =================================
   GALLERY SECTION
   ================================= */
.gallery {
  position: relative;
  padding: 8rem 0;
  background-color: var(--background);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background-color: var(--border);
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  position: relative;
  background-color: var(--background);
  overflow: hidden;
  height: 24rem;
  cursor: pointer;
}

.gallery-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background-color: transparent;
  transition: background-color 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  background-color: rgba(0, 0, 0, 0.4);
}

.gallery-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent, transparent);
}

.gallery-content > div {
  transform: translateY(1rem);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-content > div {
  transform: translateY(0);
}

.gallery-content h3 {
  font-size: 1.125rem;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.gallery-content p {
  font-size: 0.875rem;
  color: rgba(209, 213, 219, 0.8);
  font-weight: 300;
}

.gallery-count {
  font-size: 0.75rem;
  color: rgba(209, 213, 219, 0.8);
  font-weight: 300;
  margin-top: 0.5rem;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox.open {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
}

.lightbox-container {
  position: relative;
  max-width: 64rem;
  width: 100%;
  height: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.lightbox-close {
  position: absolute;
  top: -3rem;
  right: 0;
  z-index: 10;
  padding: 0.5rem;
  color: #ffffff;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

@media (min-width: 768px) {
  .lightbox-close {
    position: relative;
    top: 0;
    right: -3rem;
  }
}

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

.lightbox-content {
  position: relative;
  width: 100%;
  height: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
}

.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  padding: 0.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.lightbox-nav:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

.lightbox-counter {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 1rem;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 9999px;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 300;
}

.lightbox-info {
  background-color: rgba(245, 245, 245, 0.05);
  padding: 1.5rem;
  border-top: 1px solid var(--border);
}

.lightbox-info h3 {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.lightbox-info p {
  color: var(--muted-foreground);
  font-weight: 300;
}

/* =================================
   ABOUT SECTION
   ================================= */
.about {
  position: relative;
  padding: 8rem 0;
  background-color: rgba(38, 38, 38, 0.3);
}

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

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

.about-title {
  margin-top: 1.5rem;
  font-size: 2.25rem;
  font-weight: 200;
  letter-spacing: -0.025em;
  color: var(--foreground);
  line-height: 1.2;
}

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

.about-text {
  margin-top: 2.5rem;
}

.about-text p {
  color: var(--muted-foreground);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.about-text strong {
  font-weight: 700;
  color: var(--foreground);
}

.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--foreground);
  font-weight: 300;
}

.about-cta svg {
  transition: transform 0.3s ease;
}

.about-cta:hover svg {
  transform: translateX(0.5rem);
}

/* Stats */
.about-stats {
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background-color: var(--border);
}

.stat-item {
  background-color: var(--background);
  padding: 1.25rem 1rem;
  text-align: center;
}

@media (min-width: 640px) {
  .stat-item {
    padding: 2rem 2.5rem;
  }
}

.stat-value {
  font-size: 1.875rem;
  font-weight: 200;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
  .stat-value {
    font-size: 2.25rem;
  }
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted-foreground);
  font-weight: 300;
}

/* Quote */
.about-quote {
  margin-top: 1px;
  background-color: var(--background);
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .about-quote {
    padding: 2.5rem 3rem;
  }
}

.about-quote blockquote {
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--foreground);
  line-height: 1.75;
  font-style: italic;
}

.quote-author {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.quote-line {
  width: 3rem;
  height: 1px;
  background-color: var(--primary);
}

.quote-author span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted-foreground);
}

/* =================================
   REVIEWS SECTION
   ================================= */
.reviews {
  position: relative;
  padding: 8rem 0;
  background-color: var(--background);
}

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

@media (min-width: 1024px) {
  .reviews-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.reviews-rating {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.rating-number {
  text-align: right;
}

.rating-value {
  font-size: 1.875rem;
  font-weight: 200;
  color: var(--foreground);
}

.rating-max {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

.rating-stars {
  display: flex;
  gap: 0.25rem;
}

.star {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background-color: var(--border);
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background-color: var(--background);
  padding: 1.5rem;
  transition: all 0.5s ease;
}

@media (min-width: 640px) {
  .review-card {
    padding: 2.5rem 3rem;
  }
}

.review-card:hover {
  background-color: rgba(38, 38, 38, 0.3);
}

.review-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 2rem;
}

.star-small {
  width: 0.75rem;
  height: 0.75rem;
  color: var(--primary);
}

.review-text {
  color: var(--foreground);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.review-author {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.author-name {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--foreground);
}

.reviews-cta {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

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

.reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-foreground);
  font-weight: 300;
  transition: color 0.3s ease;
}

.reviews-link:hover {
  color: var(--foreground);
}

.reviews-link svg {
  transition: transform 0.3s ease;
}

.reviews-link:hover svg {
  transform: translate(2px, -2px);
}

/* =================================
   CONTACT SECTION
   ================================= */
.contact {
  position: relative;
  padding: 8rem 0;
  background-color: rgba(38, 38, 38, 0.3);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background-color: var(--border);
}

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

.contact-map {
  background-color: var(--background);
  padding: 1px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: 0;
  filter: grayscale(100%) invert(92%) contrast(90%);
}

.contact-info {
  background-color: var(--background);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  transition: background-color 0.3s ease;
}

@media (min-width: 640px) {
  .contact-item {
    padding: 2.5rem 3rem;
  }
}

.contact-item:hover {
  background-color: rgba(38, 38, 38, 0.3);
}

.contact-icon {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact-item-content {
  flex: 1;
}

.contact-item-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

.contact-item-value {
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--foreground);
}

.contact-item-secondary {
  color: var(--muted-foreground);
  font-weight: 300;
}

.contact-arrow {
  color: var(--muted-foreground);
  opacity: 0;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-arrow {
  opacity: 1;
  transform: translate(2px, -2px);
}

.contact-hours {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .contact-hours {
    padding: 2.5rem 3rem;
  }
}

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

.hours-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
}

.hours-item span:first-child {
  color: var(--muted-foreground);
  font-weight: 300;
}

.hours-item span:last-child {
  color: var(--foreground);
  font-weight: 300;
}

.contact-actions {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

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

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-foreground);
  font-weight: 300;
  transition: color 0.3s ease;
}

.instagram-link:hover {
  color: var(--foreground);
}

.instagram-link svg:last-child {
  transition: transform 0.3s ease;
}

.instagram-link:hover svg:last-child {
  transform: translate(2px, -2px);
}

/* =================================
   FOOTER
   ================================= */
.footer {
  background-color: var(--background);
  border-top: 1px solid var(--border);
}

.footer-main {
  padding: 5rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

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

.footer-brand .logo {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.footer-description {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted-foreground);
  max-width: 20rem;
}

.footer-nav-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.footer-nav nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-nav nav a {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(245, 245, 245, 0.7);
  transition: color 0.3s ease;
}

.footer-nav nav a:hover {
  color: var(--foreground);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.875rem;
  font-weight: 300;
}

.footer-contact-info p {
  color: rgba(245, 245, 245, 0.7);
}

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

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

.footer-social {
  margin-top: 2rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.social-link:hover {
  border-color: var(--primary);
  background-color: var(--primary);
}

.social-link svg {
  color: var(--foreground);
  transition: color 0.3s ease;
}

.social-link:hover svg {
  color: var(--primary-foreground);
}

.footer-bottom {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

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

.footer-bottom > p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-weight: 300;
}

.campaign-link {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}

.campaign-link:hover {
  letter-spacing: 0.15em;
  transform: translateY(-2px);
  color: var(--primary);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-weight: 300;
}

.footer-legal a {
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--foreground);
}

.footer-legal .separator {
  color: var(--border);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 4px;
}

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

::-webkit-scrollbar-thumb {
  background: #404040;
}

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

/* Selection */
::selection {
  background: rgba(201, 59, 59, 0.3);
}
