/*
Theme Name: Allday Premium
Theme URI: https://allday.fr
Author: Allday
Author URI: https://allday.fr
Description: Thème premium sombre pour Allday - Bureaux opérés à Paris
Version: 5.7.0
License: Private
Text Domain: allday-premium
*/

/* ====================================
   ALLDAY - PREMIUM DARK WEBSITE CSS
   Complete styling for all pages
   ==================================== */

/* ==================== CSS VARIABLES ==================== */
:root {
  --black: #080808;
  --off-black: #111111;
  --dark: #1a1a1a;
  --gold: #C9A96E;
  --gold-light: #E8D5B0;
  --gold-pale: #F5EDD8;
  --white: #FAFAF8;
  --gray: #888880;
  --gray-light: #DDDDD8;
  --border: rgba(201, 169, 110, 0.2);
}

/* ==================== WORDPRESS & ELEMENTOR OVERRIDES ==================== */
/* Reset WordPress defaults */
body.wp-custom-logo,
body.elementor-default,
body.elementor-page,
body.page-template,
body.page-template-default {
  background-color: #080808 !important;
  color: #FAFAF8 !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Override WordPress admin bar push */
html { margin-top: 0 !important; }
body.admin-bar { padding-top: 0; }
body.admin-bar nav { top: 32px; }
@media screen and (max-width: 782px) {
  body.admin-bar nav { top: 46px; }
}

/* Kill Elementor defaults */
.elementor-page .elementor,
.elementor-page .elementor-inner,
.elementor-page .elementor-section,
.elementor-page .elementor-container,
.elementor-page .elementor-column,
.elementor-page .elementor-widget-wrap,
.elementor-page .elementor-widget {
  all: unset !important;
  display: block !important;
}

/* Kill Hello Elementor theme remnants */
.site-header,
.site-footer,
.site-navigation,
.elementor-location-header,
.elementor-location-footer,
#masthead,
.hfe-header,
.hfe-footer {
  display: none !important;
}

/* Ensure our body and html styles win */
html, body {
  background-color: #080808 !important;
  color: #FAFAF8 !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  overflow-x: hidden !important;
}

/* Reset all links */
a { color: inherit; text-decoration: none; }
a:hover { color: inherit; }

/* Reset WordPress default widget/block styles */
.wp-block-group,
.wp-block-columns,
.wp-site-blocks {
  padding: 0 !important;
  margin: 0 !important;
}

/* ==================== RESET & GLOBAL ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ==================== CUSTOM CURSOR ==================== */
#cursor {
  width: 8px;
  height: 8px;
  background-color: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  display: block;
}

#cursor-ring {
  width: 32px;
  height: 32px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  display: block;
}

@media (hover: none) {
  #cursor,
  #cursor-ring {
    display: none !important;
  }
  * {
    cursor: auto;
  }
}

/* ==================== NAVIGATION ==================== */
body > nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background-color: rgba(8, 8, 8, 0.4);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

body > nav.nav-scrolled {
  background-color: rgba(8, 8, 8, 0.8);
}

.nav-logo {
  font-size: 26px;
  font-weight: 300;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-links a {
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(250, 250, 248, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.nav-cta {
  background-color: var(--gold);
  color: var(--black);
  padding: 10px 22px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-cta:hover {
  background-color: var(--gold-light);
  color: var(--black);
}

/* ==================== HAMBURGER MENU ==================== */
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background-color: var(--white);
  margin: 6px 0;
  transition: all 0.3s ease;
}

body.nav-open .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

body.nav-open .hamburger span:nth-child(2) {
  opacity: 0;
}

body.nav-open .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(10px, -10px);
}

/* ==================== MOBILE NAV OVERLAY ==================== */
body.nav-open .nav-links {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(8, 8, 8, 0.95);
  justify-content: center;
  align-items: center;
  gap: 40px;
  z-index: 999;
  padding-top: 72px;
}

/* ==================== KEYFRAMES ==================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gridMove {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(80px);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--black) 0%, var(--dark) 100%);
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      0deg,
      rgba(201, 169, 110, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(201, 169, 110, 0.03) 1px,
      transparent 1px
    );
  background-size: 80px 80px;
  animation: gridMove 20s linear infinite;
  z-index: 1;
}

.hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(201, 169, 110, 0.15) 0%,
    transparent 70%
  );
  top: -200px;
  right: -100px;
  z-index: 1;
}

.hero-glow2 {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(201, 169, 110, 0.1) 0%,
    transparent 70%
  );
  bottom: -300px;
  left: 10%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px 100px 60px;
  max-width: 900px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background-color: var(--gold);
}

.hero-eyebrow span {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.hero h1 {
  font-size: clamp(46px, 5.5vw, 78px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}

.hero p {
  font-size: 18px;
  font-weight: 400;
  color: rgba(250, 250, 248, 0.8);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 40px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.hero-btns {
  display: flex;
  gap: 16px;
  margin-bottom: 80px;
}

.btn-gold {
  background-color: var(--gold);
  color: var(--black);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 16px 36px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background-color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 16px 36px;
  border-radius: 2px;
  border: 1px solid rgba(250, 250, 248, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-stats {
  position: absolute;
  right: 60px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-stat-num {
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-stat-num span {
  color: var(--gold);
}

.hero-stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(250, 250, 248, 0.6);
  margin-top: 4px;
}

/* ==================== PAGE HERO (SUBPAGES) ==================== */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  position: relative;
  background: linear-gradient(135deg, var(--off-black) 0%, var(--dark) 100%);
  margin-top: 72px;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
  max-width: 900px;
}

.page-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.page-hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background-color: var(--gold);
}

.page-hero-eyebrow span {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.page-hero h1 {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}

.page-hero p {
  font-size: 15px;
  font-weight: 400;
  color: rgba(250, 250, 248, 0.55);
  max-width: 480px;
  line-height: 1.8;
}

/* ==================== MARQUEE ==================== */
.marquee-wrap {
  background-color: var(--gold);
  padding: 14px 0;
  overflow: hidden;
  margin: 60px 0;
}

.marquee {
  display: flex;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}

.marquee-item {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--black);
  padding: 0 40px;
  flex-shrink: 0;
}

/* ==================== SECTIONS ==================== */
.section {
  padding: 120px 60px;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.section-line {
  width: 30px;
  height: 1px;
  background-color: var(--gold);
}

.section-eyebrow span {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.section-title {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(250, 250, 248, 0.5);
  max-width: 480px;
  line-height: 1.8;
}

/* ==================== ABOUT SECTION ==================== */
.about {
  background-color: var(--off-black);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-img {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--dark) 0%, var(--off-black) 100%);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.about-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: rgba(201, 169, 110, 0.3);
}

.about-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background-color: var(--gold);
  color: var(--black);
  padding: 28px 24px;
  border-radius: 2px;
  text-align: center;
}

.about-badge-num {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.about-badge-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.about-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
}

.about-content p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(250, 250, 248, 0.55);
  line-height: 1.8;
  margin-bottom: 24px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px;
}

.about-feature {
  display: flex;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: border-color 0.3s ease;
}

.about-feature:hover {
  border-color: var(--gold);
}

.about-feature-icon {
  font-size: 24px;
  color: var(--gold);
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-feature-content h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.about-feature-content p {
  font-size: 12px;
  font-weight: 300;
  color: rgba(250, 250, 248, 0.45);
  line-height: 1.6;
  margin: 0;
}

/* ==================== SPACES SECTION ==================== */
.spaces {
  background-color: var(--black);
}

.spaces-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}

.spaces-header-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
}

.spaces-header-content p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(250, 250, 248, 0.5);
  max-width: 480px;
  line-height: 1.8;
}

.spaces-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background-color: rgba(201, 169, 110, 0.2);
}

.space-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background-color: var(--dark);
  cursor: pointer;
}

.space-card-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark) 0%, var(--off-black) 100%);
  transition: transform 0.6s ease;
}

.space-card:hover .space-card-img {
  transform: scale(1.05);
}

.space-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 8, 8, 1) 0%,
    rgba(8, 8, 8, 0.5) 40%,
    transparent 100%
  );
  z-index: 1;
}

.space-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  z-index: 2;
}

.space-tag {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 4px 10px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 12px;
}

.space-name {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 4px;
}

.space-address {
  font-size: 12px;
  font-weight: 300;
  color: rgba(250, 250, 248, 0.5);
  margin-bottom: 16px;
}

.space-cta {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.space-card:hover .space-cta {
  opacity: 1;
}

.space-available {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--gold);
  color: var(--black);
  padding: 6px 12px;
  border-radius: 2px;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  z-index: 3;
}

/* ==================== SPACE DETAIL (ESPACES PAGE) ==================== */
.space-detail {
  padding: 80px 60px;
}

.space-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.space-detail-card:nth-child(even) {
  direction: rtl;
}

.space-detail-card:nth-child(even) > * {
  direction: ltr;
}

.space-detail-card.active {
  border-color: var(--gold);
  background-color: rgba(201, 169, 110, 0.02);
}

.space-detail-img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--dark) 0%, var(--off-black) 100%);
  border-radius: 2px;
}

.space-detail-card h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
}

.space-detail-address {
  font-size: 14px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 16px;
}

.space-detail-tag {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 4px 10px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 20px;
}

.space-detail-desc {
  font-size: 15px;
  font-weight: 300;
  color: rgba(250, 250, 248, 0.6);
  line-height: 1.8;
  margin: 20px 0;
}

.space-detail-features {
  display: flex;
  gap: 24px;
  margin: 24px 0;
}

.space-detail-features .feature {
  text-align: center;
}

.space-detail-features .feature-num {
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}

.space-detail-features .feature-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(250, 250, 248, 0.4);
}

/* ==================== SERVICES SECTION ==================== */
.services {
  background-color: var(--off-black);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 60px;
  border: 1px solid var(--border);
  background-color: rgba(201, 169, 110, 0.1);
}

.service-item {
  padding: 36px 28px;
  border-right: 1px solid var(--border);
  transition: background-color 0.3s ease;
}

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

.service-item:hover {
  background-color: rgba(201, 169, 110, 0.03);
}

.service-num {
  font-size: 32px;
  font-weight: 800;
  color: rgba(201, 169, 110, 0.2);
  margin-bottom: 12px;
}

.service-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.service-text {
  font-size: 12px;
  font-weight: 300;
  color: rgba(250, 250, 248, 0.45);
  line-height: 1.7;
}

/* ==================== SERVICES PAGE (DETAIL) ==================== */
.services-detail {
  padding: 0 60px;
}

.service-block {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.service-block-num {
  font-size: 48px;
  font-weight: 800;
  color: rgba(201, 169, 110, 0.15);
}

.service-block-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-block-text {
  font-size: 15px;
  font-weight: 300;
  color: rgba(250, 250, 248, 0.55);
  line-height: 1.8;
  max-width: 600px;
}

/* ==================== COMPARISON TABLE ==================== */
.comparison {
  padding: 80px 60px;
}

.comparison-table {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
}

.comparison-header {
  padding: 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
  background-color: rgba(201, 169, 110, 0.05);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.comparison-header:last-child {
  border-right: none;
}

.comparison-header.gold {
  background-color: var(--gold);
  color: var(--black);
}

.comparison-row {
  display: contents;
}

.comparison-cell {
  padding: 16px 20px;
  font-size: 13px;
  font-weight: 300;
  text-align: center;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.comparison-cell:last-child {
  border-right: none;
}

.comparison-cell.highlight {
  color: var(--gold);
  font-weight: 600;
}

/* ==================== CLIENTS SECTION ==================== */
.clients {
  background-color: var(--black);
  padding: 80px 60px;
}

.clients-title {
  font-size: 22px;
  font-weight: 600;
  color: rgba(250, 250, 248, 0.4);
  text-align: center;
  margin-bottom: 12px;
}

.clients-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(250, 250, 248, 0.3);
  text-align: center;
  margin-bottom: 60px;
}

.clients-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  opacity: 0.6;
}

.clients-item {
  font-size: 14px;
  font-weight: 600;
  color: rgba(250, 250, 248, 0.4);
}

/* ==================== PROMISE SECTION ==================== */
.promise {
  background-color: var(--gold);
  padding: 100px 60px;
}

.promise-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.promise h2 {
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 800;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 24px;
}

.promise h2 em {
  font-style: italic;
  font-weight: 300;
}

.promise p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(8, 8, 8, 0.6);
  line-height: 1.8;
  margin-bottom: 40px;
}

.btn-dark {
  background-color: var(--black);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 16px 36px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-dark:hover {
  background-color: var(--off-black);
  transform: translateY(-2px);
}

/* ==================== ABOUT PAGE ==================== */
.story {
  padding: 80px 60px;
  max-width: 900px;
  margin: 0 auto;
}

.story p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(250, 250, 248, 0.6);
  line-height: 1.9;
  margin-bottom: 24px;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  padding: 80px 60px;
  background-color: rgba(201, 169, 110, 0.05);
  margin: 80px 0;
}

.number-card {
  background-color: var(--off-black);
  padding: 48px 32px;
  text-align: center;
  border: 1px solid var(--border);
}

.number-card-num {
  font-size: 48px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 8px;
}

.number-card-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(250, 250, 248, 0.4);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 60px;
  margin: 80px 0;
}

.value-card {
  padding: 40px 32px;
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: border-color 0.3s ease;
}

.value-card:hover {
  border-color: var(--gold);
}

.value-card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.value-card-text {
  font-size: 14px;
  font-weight: 300;
  color: rgba(250, 250, 248, 0.5);
  line-height: 1.7;
}

.ownership {
  padding: 80px 60px;
  background-color: var(--off-black);
}

.ownership-inner {
  max-width: 700px;
  margin: 0 auto;
}

.ownership-inner h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 24px;
}

.ownership-inner p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(250, 250, 248, 0.6);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ==================== CONTACT PAGE ==================== */
.contact {
  background-color: var(--off-black);
  padding: 120px 60px;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.contact-info h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 40px;
}

.contact-phone {
  font-size: 34px;
  font-weight: 700;
  color: var(--gold);
  margin: 32px 0 8px 0;
  letter-spacing: 0.05em;
}

.contact-email {
  font-size: 14px;
  font-weight: 300;
  color: rgba(250, 250, 248, 0.4);
}

.contact-email a {
  color: var(--gold);
  text-decoration: none;
  transition: text-decoration 0.3s ease;
}

.contact-email a:hover {
  text-decoration: underline;
}

.contact-address {
  font-size: 14px;
  font-weight: 300;
  color: rgba(250, 250, 248, 0.4);
  margin-top: 20px;
  line-height: 1.8;
}

.contact-promise {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: 2px;
  margin-top: 40px;
}

.contact-promise-dot {
  width: 8px;
  height: 8px;
  background-color: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

.contact-promise p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(250, 250, 248, 0.6);
  margin: 0;
}

/* ==================== FORM ELEMENTS ==================== */
.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(250, 250, 248, 0.4);
  margin-bottom: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background-color: rgba(250, 250, 248, 0.04);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--white);
  transition: all 0.3s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(250, 250, 248, 0.25);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background-color: rgba(201, 169, 110, 0.05);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  width: 100%;
  background-color: var(--gold);
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 16px 36px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.form-submit:hover {
  background-color: var(--gold-light);
  transform: translateY(-2px);
}

/* ==================== MAP SECTION ==================== */
.map-section {
  padding: 0 60px 80px 60px;
}

#map {
  width: 100%;
  height: 500px;
  border: 1px solid var(--border);
  border-radius: 2px;
}

.leaflet-popup-content-wrapper {
  background-color: var(--dark) !important;
  color: var(--white) !important;
  border-radius: 4px !important;
  border: 1px solid var(--border) !important;
}

.leaflet-popup-tip {
  background-color: var(--dark) !important;
}

.leaflet-popup-content {
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin: 13px 19px !important;
}

.map-popup-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.map-popup-address {
  font-size: 12px;
  color: rgba(250, 250, 248, 0.5);
  margin-bottom: 8px;
}

.map-popup-postes {
  font-size: 11px;
  color: rgba(250, 250, 248, 0.6);
  margin-bottom: 8px;
}

.map-popup-postes span {
  color: var(--gold);
  font-weight: 600;
}

.map-popup-link {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-decoration: none;
  transition: text-decoration 0.3s ease;
}

.map-popup-link:hover {
  text-decoration: underline;
}

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

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(250,250,248,0.5);
}

.footer-col p a {
  color: rgba(250,250,248,0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col p a:hover {
  color: var(--gold);
}

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

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

.footer-col ul li a {
  font-size: 14px;
  color: rgba(250,250,248,0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  max-width: 1200px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-end;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(250,250,248,0.25);
  margin-top: 40px;
}

/* ==================== FADE IN ANIMATION ==================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 900px) {
  .footer { padding: 60px 24px 32px; }
  .footer-content { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { justify-content: center; }

  body > nav {
    padding: 0 24px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-content {
    padding: 0 24px 80px 24px;
  }

  .hero-stats {
    display: none;
  }

  .section {
    padding: 80px 24px;
  }

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

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

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

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .space-detail-card {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .space-detail-card:nth-child(even) {
    direction: ltr;
  }

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 60px 24px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }

  .comparison-table {
    grid-template-columns: 1fr;
  }

  .comparison-header {
    border-right: none;
  }

  .comparison-cell {
    border-right: none;
  }


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

  .page-hero {
    min-height: 40vh;
  }

  .page-hero-content {
    padding: 0 24px;
  }

  .map-section {
    padding: 0 24px 60px 24px;
  }

  #map {
    height: 350px;
  }

  .service-block {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .spaces-header {
    flex-direction: column;
  }

  .spaces-detail {
    padding: 60px 24px;
  }

  .space-detail {
    padding: 60px 24px;
  }

  .services-detail {
    padding: 0 24px;
  }

  .story {
    padding: 60px 24px;
  }

  .ownership {
    padding: 60px 24px;
  }

  .contact {
    padding: 80px 24px;
  }
}

@media (max-width: 600px) {
  .footer-content { grid-template-columns: 1fr; gap: 24px; }

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

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

  .hero h1 {
    font-size: clamp(32px, 7vw, 48px);
  }

  .section-title {
    font-size: clamp(24px, 6vw, 36px);
  }

  .promise h2 {
    font-size: clamp(28px, 6vw, 44px);
  }

  .page-hero h1 {
    font-size: clamp(28px, 6vw, 40px);
  }

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

  .btn-gold,
  .btn-outline,
  .btn-dark {
    width: 100%;
    text-align: center;
  }

  .space-detail-features {
    flex-direction: column;
  }

  .comparison-table {
    overflow-x: auto;
  }
}
