/* ============================================
   INFINI PAYSAGE - Desktop Override (1024px+)
   Light theme, green from logo
   ============================================ */

/* --- LAYOUT --- */
.container { padding: 0 60px; }
.section { padding: 100px 0; }

/* --- HEADER DESKTOP --- */
.header-inner { padding: 0 60px; height: 72px; }

.logo img { height: 48px; }

.nav-toggle { display: none; }
.nav-menu { display: none !important; }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-desktop a {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-light);
  transition: color var(--transition-fast);
  position: relative;
  padding: 4px 0;
}

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

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--green-dark);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--green-primary);
  transition: color var(--transition-fast);
}

.header-phone:hover {
  color: var(--green-dark);
}

.header-phone svg {
  width: 18px;
  height: 18px;
  stroke: var(--green-primary);
  fill: none;
  stroke-width: 2;
}

/* Hide mobile CTA bar on desktop */
.mobile-cta-bar { display: none; }
body { padding-bottom: 0; }

/* --- HERO DESKTOP --- */
.hero { min-height: 100vh; }

.hero-content {
  padding: 0 60px 80px;
  max-width: 800px;
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
}

.hero-badge {
  font-size: 0.8rem;
  padding: 10px 28px;
}

.hero-subtitle {
  font-size: 1.15rem;
  margin-bottom: 40px;
}

.hero-actions {
  flex-direction: row;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  gap: 48px;
}

.hero-stat-value {
  font-size: 2.2rem;
}

.hero-stat-label {
  font-size: 0.75rem;
}

/* Scroll indicator desktop */
.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.hero-scroll span {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--green-light), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; height: 40px; }
  50% { opacity: 0.4; height: 25px; }
}

/* --- SERVICES DESKTOP --- */
.services-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  padding: 36px 30px;
}

.service-icon {
  width: 56px;
  height: 56px;
}

/* --- ABOUT PREVIEW DESKTOP --- */
.about-grid {
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.about-image img {
  height: 100%;
  min-height: 450px;
}

.about-text {
  max-width: 540px;
}

/* --- GALLERY DESKTOP --- */
.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-grid.gallery-full {
  grid-template-columns: repeat(4, 1fr);
}

/* --- REVIEWS DESKTOP --- */
.reviews-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  padding: 36px 30px;
}

/* --- ZONE DESKTOP --- */
.zone-grid {
  grid-template-columns: 1.3fr 0.7fr;
  gap: 50px;
  align-items: start;
}

.zone-map {
  aspect-ratio: auto;
  height: 450px;
}

.cities-list {
  grid-template-columns: 1fr;
}

/* --- CTA BANNER DESKTOP --- */
.cta-banner {
  padding: 80px 0;
}

.cta-banner h2 {
  font-size: 2.2rem;
}

/* --- CONTACT DESKTOP --- */
.contact-grid {
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
}

.contact-form-wrapper {
  padding: 40px 36px;
}

/* --- FOOTER DESKTOP --- */
.site-footer {
  padding: 70px 0 0;
}

.footer-grid {
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
}

.footer-bottom {
  flex-direction: row;
  justify-content: space-between;
}

/* --- PAGE HEADER DESKTOP --- */
.page-header {
  padding: 140px 0 60px;
}

.page-header h1 {
  font-size: 2.8rem;
}

/* --- SERVICE DETAIL DESKTOP --- */
.service-detail {
  grid-template-columns: 2fr 3fr;
  gap: 60px;
  padding: 60px 0;
  align-items: center;
}

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

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

.service-detail-image {
  min-height: 350px;
  aspect-ratio: auto;
}

.service-detail-image img {
  height: 100%;
  min-height: 350px;
}

.service-detail-content h2 {
  font-size: 1.6rem;
}

/* --- ABOUT PAGE DESKTOP --- */
.about-story {
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.about-story-image {
  min-height: 450px;
  aspect-ratio: auto;
}

.values-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  padding: 36px 28px;
}

/* --- CONTACT PAGE DESKTOP --- */
.contact-page-grid {
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
}

/* --- GALLERY FILTERS DESKTOP --- */
.gallery-filters {
  gap: 10px;
  margin-bottom: 40px;
}

.gallery-filter-btn {
  padding: 10px 28px;
  font-size: 0.78rem;
}

/* --- ENHANCED HOVER EFFECTS DESKTOP --- */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(26,92,40,0.12);
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(26,92,40,0.1);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(26,92,40,0.1);
}

/* --- GLOW EFFECT ON CTA DESKTOP --- */
.btn-primary {
  position: relative;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, var(--green-light), var(--green-dark));
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-base);
  filter: blur(12px);
}

.btn-primary:hover::after {
  opacity: 0.4;
}

/* --- SECTION HEADERS --- */
.section-header h2 {
  font-size: 2.2rem;
}

/* --- LEGAL PAGE DESKTOP --- */
.legal-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  max-width: 1100px;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 100px;
  flex-direction: column;
  gap: 4px;
  padding: 24px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.legal-toc-title {
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-100);
}

.legal-toc-link {
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.78rem;
}

.legal-card {
  padding: 36px 32px;
}

.legal-card:hover {
  transform: translateY(-3px);
}

.legal-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
}

.legal-card-icon svg {
  width: 26px;
  height: 26px;
}

.legal-data-grid {
  grid-template-columns: repeat(4, 1fr);
}

/* --- 1440px+ --- */
@media (min-width: 1440px) {
  .container { max-width: 1400px; padding: 0 80px; }
  .header-inner { padding: 0 80px; }
  .hero-content { max-width: 850px; padding: 0 80px 80px; }
  .services-grid { gap: 28px; }
  .reviews-grid { gap: 28px; }
  .gallery-grid { gap: 14px; }
}
