/*
Theme Name: Asmanidis Real Estate
Theme URI: https://asmanidisprime.gr
Author: Asmanidis Prime Real Estate
Description: Premium luxury real estate theme for Asmanidis Prime
Version: 1.4
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --navy: #1a2744;
  --navy-deep: #0f1a30;
  --gold: #b8975a;
  --gold-light: #d4af71;
  --cream: #f5f0e8;
  --cream-dark: #ede5d4;
  --white: #ffffff;
  --gray-light: #f8f6f2;
  --text-dark: #1a1a1a;
  --text-muted: #6b6560;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', 'Helvetica Neue', sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-card: 0 20px 60px rgba(26,39,68,0.12);
  --shadow-hover: 0 30px 80px rgba(26,39,68,0.22);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--white); color: var(--text-dark); line-height: 1.7; overflow-x: hidden; }
body.splash-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =============================================
   COVER SPLASH
   ============================================= */
.cover-splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--navy-deep);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.76, 0, 0.24, 1);
}

/* Subtle radial glow behind the logo */
.cover-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 45%, rgba(184,151,90,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Animated shimmer lines */
.cover-shimmer {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, transparent 40%, rgba(184,151,90,0.04) 50%, transparent 60%),
    linear-gradient(75deg,  transparent 40%, rgba(184,151,90,0.03) 50%, transparent 60%);
  background-size: 300% 300%;
  animation: shimmer-move 6s ease infinite;
  pointer-events: none;
}
@keyframes shimmer-move {
  0%   { background-position: 200% 50%, -100% 50%; }
  100% { background-position: -100% 50%, 200% 50%; }
}

.cover-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  animation: cover-fade-in 1.2s ease 0.2s both;
}

@keyframes cover-fade-in {
  from { opacity: 0; transform: scale(0.96) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.cover-logo {
  width: min(420px, 72vw);
  height: auto;
  filter: drop-shadow(0 0 60px rgba(184,151,90,0.35)) drop-shadow(0 20px 40px rgba(0,0,0,0.5));
  animation: logo-float 4s ease-in-out infinite;
}

@keyframes logo-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.cover-tagline {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  animation: cover-fade-in 1.2s ease 0.6s both;
}

.cover-line {
  width: 50px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.cover-tagline .cover-line:last-child {
  background: linear-gradient(to left, transparent, var(--gold));
}

.cover-tagline span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
  white-space: nowrap;
}

/* Enter button */
.cover-scroll-btn {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: color 0.3s ease;
  animation: cover-fade-in 1s ease 1.2s both;
  z-index: 2;
}
.cover-scroll-btn:hover { color: var(--gold); }

.cover-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(184,151,90,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce-arrow 2s ease infinite;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.cover-scroll-btn:hover .cover-arrow {
  border-color: var(--gold);
  background: rgba(184,151,90,0.1);
}
.cover-arrow svg { width: 16px; height: 16px; }

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

/* Exit animation */
.cover-splash.cover-exit {
  opacity: 0;
  transform: scale(1.04);
  pointer-events: none;
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* =============================================
   NAVIGATION
   ============================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 5%; height: 80px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled { background: rgba(255,255,255,0.97); box-shadow: 0 2px 30px rgba(26,39,68,0.1); backdrop-filter: blur(10px); }
.site-header.hero-mode { background: transparent; }
.header-logo img { height: 56px; width: auto; }
.header-nav { display: flex; gap: 2.5rem; align-items: center; }
.header-nav a { font-family: var(--font-body); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.9); transition: color var(--transition); position: relative; }
.header-nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width var(--transition); }
.header-nav a:hover::after { width: 100%; }
.site-header.scrolled .header-nav a { color: var(--navy); }
.nav-cta { background: var(--gold) !important; color: var(--white) !important; padding: 10px 24px !important; border-radius: 2px; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--transition); }
.site-header.scrolled .hamburger span { background: var(--navy); }

/* =============================================
   HERO
   ============================================= */
.hero { position: relative; height: 100vh; min-height: 700px; display: flex; align-items: center; overflow: hidden; background: var(--navy-deep); }
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(10,18,40,0.85) 0%, rgba(26,39,68,0.7) 50%, rgba(10,18,40,0.9) 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="g" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M10 0L0 0 0 10" fill="none" stroke="rgba(184,151,90,0.08)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23g)"/></svg>');
  background-size: cover, 60px 60px;
}
.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.particle { position: absolute; width: 2px; height: 2px; background: var(--gold); border-radius: 50%; opacity: 0.4; animation: float-particle linear infinite; }
@keyframes float-particle { 0%{transform:translateY(100vh) rotate(0deg);opacity:0} 10%{opacity:0.4} 90%{opacity:0.4} 100%{transform:translateY(-10vh) rotate(360deg);opacity:0} }
.hero-content { position: relative; z-index: 2; padding: 0 8%; max-width: 700px; margin-top: 80px; }
.hero-eyebrow { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; opacity: 0; animation: slideUp 1s ease 0.5s forwards; }
.hero-eyebrow .line { width: 50px; height: 1px; background: var(--gold); flex-shrink: 0; }
.hero-eyebrow span { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 500; white-space: nowrap; }
.hero-title { font-family: var(--font-display); font-size: clamp(2.4rem, 4.5vw, 4.2rem); font-weight: 300; line-height: 1.15; color: var(--white); margin-bottom: 1.2rem; opacity: 0; animation: slideUp 1s ease 0.7s forwards; }
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-subtitle { font-size: 0.97rem; font-weight: 300; color: rgba(255,255,255,0.65); max-width: 440px; margin-bottom: 2.5rem; opacity: 0; animation: slideUp 1s ease 0.9s forwards; }
.hero-actions { display: flex; gap: 1.2rem; flex-wrap: wrap; opacity: 0; animation: slideUp 1s ease 1.1s forwards; }
@keyframes slideUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
.hero-scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.5); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; animation: pulse-scroll 2s ease infinite; }
.scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, transparent, var(--gold)); animation: extend-line 2s ease infinite; }
@keyframes pulse-scroll { 0%,100%{opacity:0.5} 50%{opacity:1} }
@keyframes extend-line { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* =============================================
   BUTTONS
   ============================================= */
.btn { display: inline-block; padding: 14px 36px; font-family: var(--font-body); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer; border: none; transition: var(--transition); position: relative; overflow: hidden; }
.btn::before { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0.1); transform: translateX(-100%); transition: transform 0.4s ease; }
.btn:hover::before { transform: translateX(0); }
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--gold-light); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-deep); }

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar { background: var(--navy); padding: 2.5rem 5%; display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; }
.stat-item { text-align: center; border-right: 1px solid rgba(255,255,255,0.08); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--font-display); font-size: 2.8rem; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 0.3rem; }
.stat-label { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.5); font-weight: 500; }

/* =============================================
   SECTIONS
   ============================================= */
.section { padding: 6rem 5%; }
.section-alt { background: var(--gray-light); }
.section-dark { background: var(--navy-deep); color: var(--white); }
.section-header { margin-bottom: 4rem; }
.section-eyebrow { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; }
.section-eyebrow .line { width: 40px; height: 1px; background: var(--gold); }
.section-eyebrow span { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.section-title { font-family: var(--font-display); font-size: clamp(2rem,4vw,3.2rem); font-weight: 300; line-height: 1.2; color: var(--navy); }
.section-dark .section-title { color: var(--white); }
.section-title em { font-style: italic; color: var(--gold); }
.section-subtitle { margin-top: 1rem; color: var(--text-muted); font-size: 1rem; font-weight: 300; max-width: 520px; }
.section-dark .section-subtitle { color: rgba(255,255,255,0.6); }

/* =============================================
   SERVICES
   ============================================= */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--cream-dark); }
.service-card { background: var(--white); padding: 3rem 2.5rem; transition: var(--transition); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 3px; background: var(--gold); transition: width 0.5s ease; }
.service-card:hover::before { width: 100%; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.service-icon { width: 56px; height: 56px; margin-bottom: 1.8rem; display: flex; align-items: center; justify-content: center; }
.service-icon svg { width: 40px; height: 40px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.service-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; color: var(--navy); margin-bottom: 0.8rem; }
.service-desc { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; font-weight: 300; }

/* =============================================
   ABOUT
   ============================================= */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-image-wrap { position: relative; }
.about-image-frame { position: relative; z-index: 1; }
.about-image-frame img { width: 100%; object-fit: cover; aspect-ratio: 3/4; object-position: center top; }
.about-image-deco { position: absolute; bottom: -2rem; right: -2rem; width: 60%; height: 60%; border: 2px solid var(--gold); opacity: 0.3; z-index: 0; }
.about-badge { position: absolute; bottom: 2rem; left: -2rem; background: var(--navy); color: var(--white); padding: 1.5rem; z-index: 2; text-align: center; min-width: 140px; }
.about-badge .num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 300; color: var(--gold); line-height: 1; }
.about-badge .lbl { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 0.3rem; }
.about-content .section-header { margin-bottom: 2rem; }
.about-text { color: var(--text-muted); font-weight: 300; margin-bottom: 1.2rem; line-height: 1.8; }
.about-values { margin: 2rem 0; display: flex; flex-direction: column; gap: 1rem; }
.about-value { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--cream-dark); }
.value-dot { width: 8px; height: 8px; min-width: 8px; background: var(--gold); border-radius: 50%; margin-top: 0.45rem; }
.value-text strong { display: block; font-size: 0.9rem; font-weight: 600; color: var(--navy); letter-spacing: 0.05em; margin-bottom: 0.2rem; }
.value-text span { font-size: 0.85rem; color: var(--text-muted); font-weight: 300; }

/* =============================================
   GOLDEN HOME
   ============================================= */
.golden-home-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.gh-banner-inner { position: relative; border-radius: 4px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.4); transition: var(--transition); }
.gh-banner-inner:hover { transform: translateY(-6px); box-shadow: 0 40px 100px rgba(0,0,0,0.5); }
.gh-banner-inner img { width: 100%; display: block; }
.gh-banner-tag { position: absolute; bottom: 1.2rem; right: 1.2rem; background: var(--gold); color: var(--white); font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; padding: 7px 16px; font-weight: 600; font-family: var(--font-body); }

/* =============================================
   PROCESS
   ============================================= */
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); position: relative; }
.process-steps::before { content: ''; position: absolute; top: 2.5rem; left: 12.5%; right: 12.5%; height: 1px; background: linear-gradient(to right, transparent, var(--gold), var(--gold), transparent); opacity: 0.3; }
.step { text-align: center; padding: 3rem 2rem; }
.step-num { width: 5rem; height: 5rem; border-radius: 50%; border: 1px solid rgba(184,151,90,0.3); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.6rem; font-weight: 300; margin: 0 auto 1.5rem; position: relative; z-index: 1; transition: var(--transition); }
.step-num-light { background: var(--white); color: var(--gold); border-color: rgba(184,151,90,0.4); }
.step-light:hover .step-num-light { background: var(--gold); color: var(--white); border-color: var(--gold); }
.step-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; margin-bottom: 0.8rem; }
.step-title-light { color: var(--navy); }
.step-desc { font-size: 0.85rem; font-weight: 300; line-height: 1.7; }
.step-desc-light { color: var(--text-muted); }

/* =============================================
   CONTACT
   ============================================= */
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }
.contact-info-item { display: flex; gap: 1.2rem; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--cream-dark); }
.contact-info-item:last-child { border-bottom: none; }
.contact-icon { width: 44px; height: 44px; min-width: 44px; background: var(--navy); display: flex; align-items: center; justify-content: center; }
.contact-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.contact-info-label { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 0.3rem; }
.contact-info-value { font-size: 0.95rem; color: var(--text-dark); }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); font-weight: 600; }
.form-control { padding: 14px 16px; border: 1px solid var(--cream-dark); background: var(--white); font-family: var(--font-body); font-size: 0.9rem; color: var(--text-dark); outline: none; transition: border-color var(--transition); border-radius: 0; -webkit-appearance: none; appearance: none; }
.form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,151,90,0.08); }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23b8975a' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; cursor: pointer; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.7); padding: 4rem 5% 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand img { height: 56px; margin-bottom: 1.2rem; }
.footer-brand p { font-size: 0.85rem; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,0.5); max-width: 260px; }
.footer-title { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 1.3rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.5); font-weight: 300; transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-socials { display: flex; gap: 1rem; }
.footer-socials a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); font-size: 0.75rem; transition: var(--transition); }
.footer-socials a:hover { border-color: var(--gold); color: var(--gold); }

/* =============================================
   MOBILE NAV
   ============================================= */
.mobile-nav { display: none; position: fixed; inset: 0; background: var(--navy-deep); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; }
.mobile-nav.open { display: flex; opacity: 1; pointer-events: all; }
.mobile-nav a { font-family: var(--font-display); font-size: 2rem; color: var(--white); font-weight: 300; }
.mobile-nav a:hover { color: var(--gold); }
.mobile-close { position: absolute; top: 2rem; right: 5%; background: none; border: none; color: rgba(255,255,255,0.5); font-size: 1.5rem; cursor: pointer; padding: 0.5rem; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1200px) {
  .hero-title { font-size: clamp(2.4rem, 4vw, 3.6rem); }
}
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .stats-bar { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .golden-home-layout { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
  .cover-logo { width: min(280px, 80vw); }
  .cover-tagline span { font-size: 0.62rem; letter-spacing: 0.18em; }
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 0 6%; margin-top: 0; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero-eyebrow span { font-size: 0.65rem; letter-spacing: 0.15em; }
  .about-layout { grid-template-columns: 1fr; gap: 3rem; }
  .about-badge { left: 1rem; }
  .services-grid { grid-template-columns: 1fr; gap: 0; }
  .process-steps { grid-template-columns: repeat(2,1fr); }
  .process-steps::before { display: none; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
}
