/* =============================================
   Next Interior — Main Stylesheet
   netinterior.ae
   ============================================= */

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

:root {
  --purple: #4B3FA0;
  --purple-light: #6B5EC8;
  --purple-deep: #2D2560;
  --purple-pale: #EAE8F7;
  --purple-mid: #9B8FD4;
  --gold: #C9A96E;
  --gold-light: #E8D5B0;
  --white: #FAFAF8;
  --off-white: #F2F0EC;
  --charcoal: #1A1A2E;
  --gray-text: #6B6B7A;
  --gray-light: #E8E6E0;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --font-ar: 'Tajawal', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
}
body.rtl { direction: rtl; font-family: var(--font-ar); }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

/* ── NAVIGATION ── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px; height: 80px;
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(75,63,160,0.08);
  transition: box-shadow 0.3s;
}
#site-header.scrolled { box-shadow: 0 2px 30px rgba(45,37,96,0.08); }

.site-logo {
  display: flex; align-items: center; gap: 10px;
}
.logo-mark {
  width: 36px; height: 36px;
  background: var(--purple);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  clip-path: polygon(0 0, 85% 0, 100% 15%, 100% 100%, 15% 100%, 0 85%);
  flex-shrink: 0;
}
.logo-mark::after {
  content: ''; position: absolute;
  width: 60%; height: 3px;
  background: var(--gold);
  transform: rotate(-35deg);
}
.logo-text { line-height: 1; }
.logo-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px; font-weight: 600;
  letter-spacing: 0.06em; color: var(--purple-deep);
}
.logo-text span {
  display: block;
  font-family: var(--font-ar);
  font-size: 11px; font-weight: 400;
  color: var(--gray-text); letter-spacing: 0.03em; margin-top: 2px;
}

#primary-navigation ul { display: flex; gap: 36px; list-style: none; }
#primary-navigation a {
  font-size: 13px; font-weight: 400; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--charcoal);
  position: relative; transition: color 0.3s;
}
#primary-navigation a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width 0.3s;
}
#primary-navigation a:hover { color: var(--purple); }
#primary-navigation a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 20px; }
.lang-toggle {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gray-text); cursor: pointer;
  border: 1px solid var(--gray-light); padding: 6px 14px; border-radius: 20px;
  transition: all 0.3s; font-family: var(--font-body); background: transparent;
}
.lang-toggle:hover { border-color: var(--purple); color: var(--purple); }
.header-cta {
  background: var(--purple); color: var(--white);
  padding: 10px 24px; border-radius: 4px;
  font-size: 13px; letter-spacing: 0.06em; transition: background 0.3s, transform 0.2s;
}
.header-cta:hover { background: var(--purple-deep); transform: translateY(-1px); }

/* ── HERO ── */
.hero-section {
  min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
  padding-top: 80px; overflow: hidden;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 60px 80px 80px;
}
.hero-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; animation: fadeUp 0.8s ease 0.2s both; }
.eyebrow-line { width: 40px; height: 1px; background: var(--gold); }
.eyebrow-text { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.hero-title { font-family: var(--font-display); font-size: clamp(52px,5.5vw,82px); font-weight: 300; line-height: 1.05; color: var(--charcoal); margin-bottom: 12px; animation: fadeUp 0.8s ease 0.35s both; }
.hero-title em { font-style: italic; color: var(--purple); }
.hero-title-ar { font-family: var(--font-ar); font-size: clamp(22px,2.2vw,32px); font-weight: 300; color: var(--purple-mid); margin-bottom: 32px; direction: rtl; animation: fadeUp 0.8s ease 0.45s both; }
.hero-divider { width: 60px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); margin-bottom: 28px; animation: fadeUp 0.8s ease 0.5s both; }
.hero-desc { font-size: 15px; line-height: 1.8; color: var(--gray-text); max-width: 420px; margin-bottom: 48px; animation: fadeUp 0.8s ease 0.55s both; }
.hero-actions { display: flex; align-items: center; gap: 24px; animation: fadeUp 0.8s ease 0.65s both; }
.btn-primary {
  background: var(--purple); color: var(--white);
  padding: 16px 36px; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 4px; transition: all 0.3s; display: inline-flex; align-items: center; gap: 10px;
}
.btn-primary:hover { background: var(--purple-deep); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(75,63,160,0.25); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-primary svg { transition: transform 0.3s; }
.btn-secondary { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--charcoal); display: flex; align-items: center; gap: 8px; transition: color 0.3s; }
.btn-secondary:hover { color: var(--purple); }
.hero-stats { display: flex; gap: 40px; margin-top: 64px; padding-top: 32px; border-top: 1px solid var(--gray-light); animation: fadeUp 0.8s ease 0.75s both; }
.stat-number { font-family: var(--font-display); font-size: 36px; font-weight: 600; color: var(--purple); line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-text); }

.hero-right { position: relative; background: var(--charcoal); overflow: hidden; animation: slideIn 1s ease 0.4s both; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, var(--purple-deep) 0%, #1a1535 40%, var(--charcoal) 100%); }
.hero-featured-image { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; opacity: 0.35; }
.hero-geo { position: absolute; inset: 0; pointer-events: none; }
.geo-circle { position: absolute; border-radius: 50%; border: 1px solid rgba(201,169,110,0.2); }
.gc1 { width: 400px; height: 400px; top: -100px; right: -100px; }
.gc2 { width: 280px; height: 280px; bottom: 80px; left: 20px; border-color: rgba(107,94,200,0.3); }
.gc3 { width: 160px; height: 160px; top: 50%; left: 50%; transform: translate(-50%,-50%); border-color: rgba(201,169,110,0.15); }
.geo-line { position: absolute; background: rgba(201,169,110,0.15); }
.gl1 { width: 1px; height: 100%; top: 0; left: 35%; }
.gl2 { width: 100%; height: 1px; top: 40%; left: 0; }
.hero-watermark { position: absolute; bottom: 48px; left: 40px; font-family: var(--font-display); font-size: 120px; font-weight: 300; color: rgba(255,255,255,0.04); line-height: 1; user-select: none; }
.hero-badge { position: absolute; top: 48px; left: 40px; background: rgba(255,255,255,0.06); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; padding: 16px 20px; }
.badge-label { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 6px; }
.badge-value { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--gold); }
.badge-sub { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 2px; }
.hero-project-card { position: absolute; bottom: 100px; left: 40px; background: rgba(250,250,248,0.08); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 16px 20px; width: 220px; }
.hpc-tag { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.hpc-title { font-family: var(--font-display); font-size: 16px; font-weight: 400; color: var(--white); margin-bottom: 4px; }
.hpc-sub { font-size: 11px; color: rgba(255,255,255,0.4); }
.hero-locations { position: absolute; bottom: 48px; right: 40px; display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }
.loc-tag { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); display: flex; align-items: center; gap: 6px; }
.loc-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

/* ── MARQUEE ── */
.marquee-section { background: var(--purple-deep); padding: 20px 0; overflow: hidden; border-top: 1px solid rgba(201,169,110,0.2); }
.marquee-track { display: flex; gap: 60px; animation: marquee 20s linear infinite; white-space: nowrap; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item { display: flex; align-items: center; gap: 20px; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); flex-shrink: 0; }
.marquee-item .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

/* ── SECTION COMMONS ── */
.section-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.eyebrow-line-s { width: 30px; height: 1px; background: var(--gold); }
.eyebrow-text-s { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.section-title { font-family: var(--font-display); font-size: clamp(36px,3.5vw,54px); font-weight: 300; line-height: 1.1; color: var(--charcoal); }
.section-title em { font-style: italic; color: var(--purple); }
.section-title-ar { font-family: var(--font-ar); font-size: 18px; font-weight: 300; color: var(--purple-mid); direction: rtl; margin-top: 8px; }
.section-desc { font-size: 15px; line-height: 1.8; color: var(--gray-text); }
.section-header { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 72px; }

/* ── SERVICES ── */
.services-section { padding: 120px 80px; max-width: 1400px; margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.service-card { background: var(--off-white); padding: 48px 40px; position: relative; overflow: hidden; cursor: pointer; transition: background 0.4s; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: var(--gold); transition: height 0.4s; }
.service-card:hover { background: var(--white); }
.service-card:hover::before { height: 100%; }
.service-num { font-family: var(--font-display); font-size: 64px; font-weight: 300; color: rgba(75,63,160,0.08); line-height: 1; margin-bottom: 24px; transition: color 0.4s; }
.service-card:hover .service-num { color: rgba(75,63,160,0.15); }
.service-icon { width: 48px; height: 48px; background: var(--purple-pale); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; transition: background 0.3s; }
.service-card:hover .service-icon { background: var(--purple); }
.service-card:hover .service-icon svg { stroke: white; }
.service-icon svg { transition: stroke 0.3s; }
.service-title { font-family: var(--font-display); font-size: 22px; font-weight: 400; color: var(--charcoal); margin-bottom: 6px; }
.service-title-ar { font-family: var(--font-ar); font-size: 14px; color: var(--purple-mid); direction: rtl; margin-bottom: 16px; }
.service-desc { font-size: 13px; line-height: 1.7; color: var(--gray-text); margin-bottom: 28px; }
.service-link { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--purple); display: flex; align-items: center; gap: 6px; transition: gap 0.3s; }
.service-link:hover { gap: 12px; }

/* ── PROJECTS ── */
.projects-section { background: var(--charcoal); padding: 120px 80px; }
.projects-section .section-title { color: var(--white); }
.projects-section .section-title em { color: var(--gold); }
.projects-section .section-title-ar { color: rgba(201,169,110,0.5); }
.projects-section .eyebrow-text-s { color: var(--gold); }
.projects-section .section-desc { color: rgba(255,255,255,0.4); }
.projects-inner { max-width: 1400px; margin: 0 auto; }
.projects-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 300px 300px; gap: 3px; margin-top: 60px; }
.project-card { position: relative; overflow: hidden; cursor: pointer; background: var(--purple-deep); }
.project-card.large { grid-row: 1/3; }
.project-bg { position: absolute; inset: 0; transition: transform 0.6s ease; }
.project-card:hover .project-bg { transform: scale(1.04); }
.project-card.has-image .project-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.p1 .project-bg:not(:has(img)) { background: linear-gradient(145deg,#2D2560 0%,#4B3FA0 60%,#1A1535 100%); }
.p2 .project-bg:not(:has(img)) { background: linear-gradient(145deg,#1a1535 0%,#3D3280 100%); }
.p3 .project-bg:not(:has(img)) { background: linear-gradient(145deg,#2a1f50 0%,#5B4DB0 100%); }
.p4 .project-bg:not(:has(img)) { background: linear-gradient(145deg,#1A1535 0%,#2D2560 100%); }
.p5 .project-bg:not(:has(img)) { background: linear-gradient(145deg,#362080 0%,#1A1535 100%); }
.project-pattern { position: absolute; inset: 0; opacity: 0.15; background-image: repeating-linear-gradient(45deg,transparent,transparent 20px,rgba(201,169,110,0.3) 20px,rgba(201,169,110,0.3) 21px); }
.project-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 32px; background: linear-gradient(transparent,rgba(15,12,40,0.92)); }
.project-tag { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.project-title { font-family: var(--font-display); font-size: 20px; font-weight: 400; color: var(--white); margin-bottom: 4px; }
.project-title-ar { font-family: var(--font-ar); font-size: 13px; color: rgba(255,255,255,0.4); direction: rtl; margin-bottom: 8px; }
.project-meta { font-size: 11px; color: rgba(255,255,255,0.35); letter-spacing: 0.05em; }
.projects-cta { text-align: center; margin-top: 56px; }
.btn-outline-gold { display: inline-flex; align-items: center; gap: 10px; border: 1px solid rgba(201,169,110,0.5); color: var(--gold); padding: 16px 36px; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; border-radius: 4px; transition: all 0.3s; }
.btn-outline-gold:hover { background: rgba(201,169,110,0.1); border-color: var(--gold); transform: translateY(-2px); }

/* ── PROCESS ── */
.process-section { padding: 120px 80px; }
.process-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.process-step { display: flex; gap: 28px; padding: 32px 0; border-bottom: 1px solid var(--gray-light); transition: padding-left 0.3s; cursor: pointer; }
.process-step:hover { padding-left: 8px; }
.process-step:last-child { border-bottom: none; }
.step-num { font-family: var(--font-display); font-size: 42px; font-weight: 300; color: var(--purple-pale); line-height: 1; min-width: 52px; transition: color 0.3s; }
.process-step:hover .step-num { color: var(--purple-mid); }
.step-title { font-family: var(--font-display); font-size: 20px; font-weight: 400; color: var(--charcoal); margin-bottom: 4px; }
.step-title-ar { font-family: var(--font-ar); font-size: 13px; color: var(--purple-mid); direction: rtl; margin-bottom: 10px; }
.step-desc { font-size: 13px; line-height: 1.7; color: var(--gray-text); }
.process-visual { background: var(--purple-pale); border-radius: 16px; padding: 60px 48px; overflow: hidden; position: relative; text-align: center; }
.pv-bg { position: absolute; inset: 0; background: linear-gradient(135deg,var(--purple-pale) 0%,#D8D3F0 100%); }
.pv-content { position: relative; z-index: 1; }
.pv-number { font-family: var(--font-display); font-size: 140px; font-weight: 300; color: rgba(75,63,160,0.12); line-height: 0.9; letter-spacing: -0.04em; }
.pv-label { font-family: var(--font-display); font-size: 28px; font-weight: 400; color: var(--purple); margin-top: -20px; }
.pv-sublabel { font-family: var(--font-ar); font-size: 14px; color: var(--purple-mid); direction: rtl; margin-top: 6px; margin-bottom: 32px; }
.pv-divider { width: 40px; height: 1px; background: var(--gold); margin: 0 auto 28px; }
.pv-stat { font-size: 13px; line-height: 1.8; color: var(--purple); }

/* ── LOCATIONS ── */
.locations-section { background: var(--off-white); padding: 100px 80px; }
.locations-inner { max-width: 1400px; margin: 0 auto; }
.locations-grid { display: flex; gap: 3px; margin-top: 60px; }
.location-card { flex: 1; background: var(--white); padding: 40px 32px; border-bottom: 3px solid transparent; transition: border-color 0.3s, transform 0.3s; cursor: pointer; }
.location-card:hover { border-color: var(--gold); transform: translateY(-6px); }
.location-flag { font-size: 28px; margin-bottom: 16px; }
.location-name { font-family: var(--font-display); font-size: 24px; font-weight: 400; color: var(--charcoal); margin-bottom: 4px; }
.location-name-ar { font-family: var(--font-ar); font-size: 14px; color: var(--purple-mid); direction: rtl; margin-bottom: 16px; }
.location-projects { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.location-desc { font-size: 13px; line-height: 1.7; color: var(--gray-text); }

/* ── TESTIMONIALS ── */
.testimonials-section { padding: 120px 80px; }
.testimonials-inner { max-width: 1400px; margin: 0 auto; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-top: 64px; }
.testimonial-card { padding: 40px 36px; border: 1px solid var(--gray-light); border-radius: 8px; transition: border-color 0.3s, box-shadow 0.3s; }
.testimonial-card:hover { border-color: var(--purple-mid); box-shadow: 0 8px 40px rgba(75,63,160,0.08); }
.testimonial-quote { font-family: var(--font-display); font-size: 48px; line-height: 1; color: var(--gold); margin-bottom: 20px; opacity: 0.5; }
.testimonial-text { font-size: 14px; line-height: 1.8; color: var(--gray-text); font-style: italic; margin-bottom: 28px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--purple-pale); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 18px; color: var(--purple); }
.author-info { display: flex; align-items: center; gap: 14px; }
.author-name { font-size: 14px; font-weight: 500; color: var(--charcoal); margin-bottom: 2px; }
.author-role { font-size: 12px; color: var(--gray-text); }

/* ── CTA BANNER ── */
.cta-section { background: linear-gradient(135deg,var(--purple-deep) 0%,var(--purple) 60%,var(--purple-light) 100%); padding: 100px 80px; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(-45deg,transparent,transparent 40px,rgba(255,255,255,0.02) 40px,rgba(255,255,255,0.02) 41px); }
.cta-eyebrow { font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.cta-title { font-family: var(--font-display); font-size: clamp(36px,4vw,58px); font-weight: 300; color: var(--white); line-height: 1.1; margin-bottom: 10px; }
.cta-title em { font-style: italic; color: var(--gold); }
.cta-title-ar { font-family: var(--font-ar); font-size: clamp(16px,1.8vw,24px); font-weight: 300; color: rgba(255,255,255,0.4); direction: rtl; margin-bottom: 40px; }
.cta-actions { display: flex; justify-content: center; gap: 20px; position: relative; z-index: 1; }
.btn-white { background: var(--white); color: var(--purple-deep); padding: 16px 36px; font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 4px; transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(0,0,0,0.2); }
.btn-outline-white { border: 1px solid rgba(255,255,255,0.4); color: var(--white); padding: 16px 36px; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 4px; transition: all 0.3s; }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

/* ── FOOTER ── */
#site-footer { background: var(--charcoal); padding: 80px 80px 40px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 40px; }
.footer-logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.footer-logo-mark { width: 32px; height: 32px; background: var(--purple); clip-path: polygon(0 0,85% 0,100% 15%,100% 100%,15% 100%,0 85%); position: relative; display: flex; align-items: center; justify-content: center; }
.footer-logo-mark::after { content: ''; position: absolute; width: 55%; height: 2px; background: var(--gold); transform: rotate(-35deg); }
.footer-logo-text { font-family: var(--font-display); font-size: 16px; font-weight: 600; letter-spacing: 0.06em; color: var(--white); }
.footer-desc { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,0.35); margin-bottom: 16px; max-width: 280px; }
.footer-contact a { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 8px; transition: color 0.3s; }
.footer-contact a:hover { color: var(--gold); }
.footer-contact svg { flex-shrink: 0; }
.footer-col-title { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 20px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.45); transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.2); }
.footer-socials { display: flex; gap: 16px; }
.footer-social { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s; cursor: pointer; }
.footer-social:hover { border-color: var(--gold); background: rgba(201,169,110,0.1); }
.footer-social svg { stroke: rgba(255,255,255,0.35); transition: stroke 0.3s; }
.footer-social:hover svg { stroke: var(--gold); }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float { position: fixed; bottom: 32px; right: 32px; z-index: 200; width: 56px; height: 56px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(37,211,102,0.35); transition: transform 0.3s, box-shadow 0.3s; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(37,211,102,0.45); }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideIn { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }

/* ── GUTENBERG / WP DEFAULTS RESET ── */
.wp-block-image img { border-radius: 8px; }
.alignwide { max-width: 1200px; margin-left: auto; margin-right: auto; }
.alignfull { width: 100%; max-width: none; }
p { line-height: 1.8; }
h1,h2,h3,h4,h5,h6 { line-height: 1.2; }

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  #site-header { padding: 0 32px; }
  .hero-left { padding: 60px 40px 60px 40px; }
  .services-section, .testimonials-section { padding: 80px 40px; }
}
@media (max-width: 1024px) {
  #primary-navigation { display: none; }
  .hero-section { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { height: 460px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .projects-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .project-card.large { grid-row: auto; }
  .process-inner { grid-template-columns: 1fr; }
  .process-visual { display: none; }
  .locations-grid { flex-wrap: wrap; }
  .location-card { min-width: calc(50% - 2px); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .section-header { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
}
@media (max-width: 768px) {
  #site-header { padding: 0 20px; }
  .hero-left { padding: 48px 20px; }
  .services-section, .projects-section, .locations-section, .testimonials-section, .process-section, .cta-section { padding: 64px 20px; }
  #site-footer { padding: 60px 20px 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .locations-grid { flex-direction: column; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
