/* ============================================================
   FAAG RÉNOVATION — Design System
   Premium dark theme : Navy + Chrome + Gold
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ─── Variables ─────────────────────────────────────────────── */
:root {
  --navy-950: #05090F;
  --navy-900: #0A1120;
  --navy-800: #0F1923;
  --navy-700: #152133;
  --navy-600: #1E2E45;
  --navy-500: #253550;
  --chrome-100: #F5F5F7;
  --chrome-200: #E8E9EC;
  --chrome-300: #D1D3D8;
  --chrome-400: #B8BCC8;
  --chrome-500: #9FA3B0;
  --gold-400: #E2C16F;
  --gold-500: #C9A84C;
  --gold-600: #A8853A;
  --white: #FFFFFF;
  --text-light: #E8E9EC;
  --text-muted: #9FA3B0;
  --primary: var(--navy-800);
  --accent: var(--gold-500);
  --accent-hover: var(--gold-400);
  --surface: var(--navy-700);
  --surface-light: rgba(255,255,255,0.04);
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(201,168,76,0.4);
  --font-head: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --gap-xs: 0.5rem; --gap-sm: 1rem; --gap-md: 1.5rem;
  --gap-lg: 2.5rem; --gap-xl: 4rem; --gap-2xl: 6rem;
  --radius-sm: 6px; --radius-md: 12px; --radius-lg: 20px; --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
  --shadow-gold: 0 0 30px rgba(201,168,76,0.2);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.15s ease;
  --max-width: 1240px;
  --max-width-sm: 780px;
}

/* ─── Reset ─────────────────────────────────────────────────── */
*, *::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(--navy-950); color: var(--text-light); line-height: 1.7; min-height: 100vh; overflow-x: hidden; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition-fast); }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; }

/* ─── Typography ────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
p { color: var(--text-muted); }
p + p { margin-top: 1em; }
strong { color: var(--text-light); font-weight: 600; }

/* ─── Layout ────────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.container--sm { max-width: var(--max-width-sm); }
.section { padding: var(--gap-2xl) 0; }
.section--sm { padding: var(--gap-xl) 0; }
.section--alt { background: var(--navy-900); }
.section--light { background: var(--navy-800); }

/* ─── Buttons ───────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.85rem 2rem; font-family: var(--font-head); font-size: 0.95rem; font-weight: 600; letter-spacing: 0.02em; border-radius: var(--radius-sm); border: 2px solid transparent; transition: all var(--transition); white-space: nowrap; cursor: pointer; }
.btn-primary { background: linear-gradient(135deg, var(--gold-500), var(--gold-400)); color: var(--navy-900); border-color: var(--gold-500); box-shadow: 0 4px 20px rgba(201,168,76,0.3); }
.btn-primary:hover { background: linear-gradient(135deg, var(--gold-400), #EDD080); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,168,76,0.45); color: var(--navy-900); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--border); backdrop-filter: blur(10px); }
.btn-outline:hover { border-color: var(--gold-500); color: var(--gold-500); background: rgba(201,168,76,0.08); }
.btn-ghost { background: transparent; color: var(--text-muted); border: none; padding: 0.5rem 1rem; }
.btn-ghost:hover { color: var(--gold-500); }
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.85rem; }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.05rem; }

/* ─── Cards ─────────────────────────────────────────────────── */
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; transition: all var(--transition); }
.card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-body { padding: var(--gap-md); }

/* ─── Badge ─────────────────────────────────────────────────── */
.badge { display: inline-block; padding: 0.3rem 0.8rem; border-radius: 100px; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.badge-gold { background: rgba(201,168,76,0.15); color: var(--gold-400); border: 1px solid rgba(201,168,76,0.3); }
.badge-green { background: rgba(34,197,94,0.1); color: #4ade80; border: 1px solid rgba(34,197,94,0.2); }

/* ─── Section header ─────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: var(--gap-lg); }
.section-label { display: inline-block; color: var(--gold-500); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 0.75rem; }
.section-header h2 { color: var(--white); margin-bottom: 1rem; }
.section-header p { max-width: 600px; margin: 0 auto; }
.divider-gold { width: 60px; height: 3px; background: linear-gradient(to right, var(--gold-500), var(--gold-400)); border-radius: 2px; margin: 1rem auto; }

/* ─── HEADER ────────────────────────────────────────────────── */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 0 1.5rem; transition: all var(--transition); }
.site-header.scrolled { background: rgba(10,17,32,0.95); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.header-inner { max-width: var(--max-width); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 80px; }
.logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.logo img { height: 50px; width: auto; }
.logo-text { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--white); }
.main-nav { display: flex; align-items: center; gap: 0.25rem; }
.main-nav a { padding: 0.5rem 0.9rem; font-size: 0.9rem; font-weight: 500; color: var(--chrome-300); border-radius: var(--radius-sm); transition: all var(--transition-fast); }
.main-nav a:hover, .main-nav a.active { color: var(--white); background: var(--surface-light); }
.header-cta { display: flex; align-items: center; gap: 0.75rem; }
.header-phone { display: flex; align-items: center; gap: 0.4rem; font-weight: 600; font-size: 0.9rem; color: var(--chrome-300); transition: color var(--transition-fast); }
.header-phone:hover { color: var(--gold-500); }
.menu-toggle { display: none; background: none; border: 1px solid var(--border); color: var(--white); width: 42px; height: 42px; border-radius: var(--radius-sm); font-size: 1.2rem; align-items: center; justify-content: center; }
.mobile-menu { display: none; position: fixed; top: 80px; left: 0; right: 0; background: rgba(10,17,32,0.98); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); padding: 1.5rem; z-index: 999; }
.mobile-menu.open { display: block; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 0.5rem; }
.mobile-menu nav a { padding: 0.85rem 1rem; font-size: 1rem; font-weight: 500; color: var(--text-light); border-radius: var(--radius-sm); border: 1px solid var(--border); }
.mobile-menu .btn-primary { margin-top: 0.5rem; width: 100%; justify-content: center; }

/* ─── HERO ──────────────────────────────────────────────────── */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 80px; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-800) 60%, #1a2d4a 100%); }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 25% 50%, rgba(201,168,76,0.06) 0%, transparent 60%), radial-gradient(ellipse at 75% 30%, rgba(59,130,246,0.04) 0%, transparent 50%); }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%); }
.hero-content { position: relative; z-index: 1; text-align: center; max-width: 900px; margin: 0 auto; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 0.75rem; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.25); padding: 0.5rem 1.25rem; border-radius: 100px; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-400); margin-bottom: 1.5rem; }
.hero h1 { font-size: clamp(2.2rem, 6vw, 4.2rem); font-weight: 900; color: var(--white); margin-bottom: 1.25rem; letter-spacing: -0.03em; }
.hero h1 span { background: linear-gradient(135deg, var(--gold-400), var(--gold-500)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--text-muted); max-width: 650px; margin: 0 auto 2.5rem; line-height: 1.8; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 2.5rem; justify-content: center; flex-wrap: wrap; padding-top: 2rem; border-top: 1px solid var(--border); }
.hero-stat-value { font-size: 2rem; font-weight: 800; color: var(--white); font-family: var(--font-head); }
.hero-stat-value span { color: var(--gold-500); }
.hero-stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }

/* ─── Services ──────────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }
.service-card { position: relative; background: var(--navy-700); border: 1px solid var(--border); border-radius: var(--radius-md); padding: var(--gap-md); text-decoration: none; transition: all var(--transition); overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(to right, var(--gold-500), var(--gold-400)); transform: scaleX(0); transform-origin: left; transition: transform var(--transition); }
.service-card:hover { border-color: var(--border-hover); transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.service-card h3 { color: var(--white); margin-bottom: 0.5rem; font-size: 1.1rem; }
.service-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1rem; }
.service-link { font-size: 0.85rem; color: var(--gold-500); font-weight: 600; display: flex; align-items: center; gap: 0.4rem; }
.service-link::after { content: '→'; transition: transform var(--transition-fast); }
.service-card:hover .service-link::after { transform: translateX(4px); }

/* ─── Features ──────────────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem; }
.feature-item { text-align: center; padding: 2rem 1rem; }
.feature-icon { width: 70px; height: 70px; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.75rem; margin: 0 auto 1.25rem; transition: all var(--transition); }
.feature-item:hover .feature-icon { background: rgba(201,168,76,0.2); transform: scale(1.1); box-shadow: var(--shadow-gold); }
.feature-item h4 { color: var(--white); margin-bottom: 0.5rem; }
.feature-item p { font-size: 0.9rem; }

/* ─── Portfolio ─────────────────────────────────────────────── */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.portfolio-card { position: relative; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3; cursor: pointer; background: var(--navy-700); border: 1px solid var(--border); transition: all var(--transition); }
.portfolio-card img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.portfolio-card:hover img { transform: scale(1.08); }
.portfolio-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,9,15,0.9) 0%, transparent 60%); padding: 1.5rem; display: flex; flex-direction: column; justify-content: flex-end; opacity: 0.8; transition: opacity var(--transition); }
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h4 { color: var(--white); font-size: 1rem; margin-bottom: 0.25rem; }
.portfolio-overlay p { font-size: 0.8rem; color: var(--chrome-400); }
.portfolio-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--navy-700), var(--navy-600)); display: flex; align-items: center; justify-content: center; font-size: 3rem; opacity: 0.4; }

/* ─── Stats ─────────────────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }
.stat-item { text-align: center; }
.stat-number { font-family: var(--font-head); font-size: 3.5rem; font-weight: 900; background: linear-gradient(135deg, var(--gold-400), var(--gold-500)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.stat-label { font-size: 0.9rem; color: var(--text-muted); margin-top: 0.5rem; }

/* ─── Testimonials ──────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.testimonial-card { background: var(--navy-700); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.75rem; }
.testimonial-stars { color: var(--gold-400); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text { font-size: 0.95rem; color: var(--chrome-300); font-style: italic; margin-bottom: 1.25rem; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-500), var(--gold-400)); display: flex; align-items: center; justify-content: center; font-weight: 800; color: var(--navy-900); }
.testimonial-name { font-weight: 600; color: var(--white); font-size: 0.9rem; }
.testimonial-location { font-size: 0.8rem; color: var(--text-muted); }

/* ─── Blog ──────────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }
.blog-card { background: var(--navy-700); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; transition: all var(--transition); }
.blog-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--navy-600); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-placeholder { display: flex; align-items: center; justify-content: center; height: 100%; font-size: 2.5rem; }
.blog-card-body { padding: 1.5rem; }
.blog-card-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.75rem; font-size: 0.8rem; color: var(--text-muted); }
.blog-card h3 { font-size: 1.1rem; color: var(--white); margin-bottom: 0.5rem; line-height: 1.4; }
.blog-card h3 a:hover { color: var(--gold-500); }
.blog-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
.blog-read-more { display: inline-flex; align-items: center; gap: 0.3rem; color: var(--gold-500); font-size: 0.85rem; font-weight: 600; margin-top: 1rem; transition: gap var(--transition-fast); }
.blog-read-more:hover { gap: 0.6rem; }

/* ─── FAQ ───────────────────────────────────────────────────── */
.faq-item { background: var(--navy-700); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; margin-bottom: 0.75rem; transition: border-color var(--transition); }
.faq-item.open { border-color: var(--border-hover); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 1.5rem; background: none; border: none; text-align: left; cursor: pointer; color: var(--white); font-size: 1rem; font-weight: 600; font-family: var(--font-head); transition: color var(--transition-fast); }
.faq-question:hover { color: var(--gold-400); }
.faq-icon { font-size: 1.25rem; color: var(--gold-500); flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 1.5rem 1.25rem; color: var(--text-muted); line-height: 1.8; font-size: 0.95rem; }
.faq-item.open .faq-answer { display: block; }

/* ─── Cities ────────────────────────────────────────────────── */
.cities-grid { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; }
.city-tag { background: var(--navy-700); border: 1px solid var(--border); padding: 0.4rem 0.9rem; border-radius: 100px; font-size: 0.82rem; color: var(--chrome-400); text-decoration: none; transition: all var(--transition-fast); }
.city-tag:hover { border-color: var(--gold-500); color: var(--gold-400); background: rgba(201,168,76,0.08); }

/* ─── Form ──────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; margin-bottom: 0.5rem; font-size: 0.88rem; font-weight: 600; color: var(--chrome-300); }
.form-control { width: 100%; padding: 0.85rem 1rem; background: var(--navy-700); border: 1px solid var(--border); border-radius: var(--radius-sm); color: var(--white); font-size: 0.95rem; transition: border-color var(--transition-fast); outline: none; appearance: none; }
.form-control:focus { border-color: var(--gold-500); background: var(--navy-600); }
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-alert { padding: 1rem 1.25rem; border-radius: var(--radius-sm); font-size: 0.9rem; margin-bottom: 1rem; }
.form-alert-success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.2); color: #4ade80; }
.form-alert-error { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.2); color: #f87171; }

/* ─── Breadcrumb ────────────────────────────────────────────── */
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: var(--text-muted); padding: 1rem 0; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-muted); transition: color var(--transition-fast); }
.breadcrumb a:hover { color: var(--gold-400); }
.breadcrumb span { color: var(--chrome-300); }
.breadcrumb-sep { opacity: 0.5; }

/* ─── Inner pages hero ──────────────────────────────────────── */
.page-hero { padding: 120px 0 60px; background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%); border-bottom: 1px solid var(--border); text-align: center; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { max-width: 600px; margin: 0 auto; }

/* ─── FOOTER ────────────────────────────────────────────────── */
.site-footer { background: var(--navy-950); border-top: 1px solid var(--border); padding: var(--gap-xl) 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; text-decoration: none; }
.footer-logo img { height: 44px; }
.footer-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; max-width: 300px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.75rem; font-size: 0.88rem; color: var(--text-muted); }
.footer-contact-item a { color: var(--chrome-300); transition: color var(--transition-fast); }
.footer-contact-item a:hover { color: var(--gold-400); }
.footer-col h4 { color: var(--white); font-size: 0.9rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.88rem; color: var(--text-muted); transition: color var(--transition-fast); }
.footer-links a:hover { color: var(--gold-400); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-top: 2rem; border-top: 1px solid var(--border); font-size: 0.82rem; color: var(--text-muted); }
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--gold-400); }
.social-links { display: flex; gap: 0.75rem; }
.social-link { width: 38px; height: 38px; border: 1px solid var(--border); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--text-muted); transition: all var(--transition-fast); text-decoration: none; }
.social-link:hover { border-color: var(--gold-500); color: var(--gold-500); background: rgba(201,168,76,0.08); }

/* ─── CTA section ───────────────────────────────────────────── */
.cta-section { background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-800) 100%); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 4rem 3rem; text-align: center; position: relative; overflow: hidden; margin: var(--gap-2xl) 0; }
.cta-section::before { content: ''; position: absolute; top: -50%; left: -20%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(201,168,76,0.08), transparent 70%); pointer-events: none; }
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { max-width: 500px; margin: 0 auto 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── Pagination ────────────────────────────────────────────── */
.pagination { display: flex; gap: 0.5rem; justify-content: center; margin-top: 3rem; flex-wrap: wrap; }
.pagination a, .pagination span { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 0.9rem; font-weight: 500; transition: all var(--transition-fast); text-decoration: none; color: var(--text-muted); }
.pagination a:hover { border-color: var(--gold-500); color: var(--gold-500); }
.pagination span.active { background: var(--gold-500); border-color: var(--gold-500); color: var(--navy-900); font-weight: 700; }

/* ─── Lightbox ──────────────────────────────────────────────── */
.lightbox { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.95); align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-inner img { max-width: 100%; max-height: 90vh; object-fit: contain; border-radius: var(--radius-md); }
.lightbox-close { position: absolute; top: -50px; right: 0; background: none; border: 1px solid var(--border); color: var(--white); width: 40px; height: 40px; border-radius: 50%; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; cursor: pointer; }

/* ─── Scroll & Back to top ──────────────────────────────────── */
#scroll-progress { position: fixed; top: 0; left: 0; height: 3px; z-index: 9999; background: linear-gradient(to right, var(--gold-500), var(--gold-400)); width: 0%; transition: width 0.1s; }
#back-to-top { position: fixed; bottom: 2rem; right: 2rem; z-index: 500; width: 46px; height: 46px; background: var(--gold-500); color: var(--navy-900); border: none; border-radius: 50%; font-size: 1.2rem; cursor: pointer; box-shadow: 0 4px 20px rgba(201,168,76,0.4); transition: all var(--transition); opacity: 0; pointer-events: none; display: flex; align-items: center; justify-content: center; }
#back-to-top.visible { opacity: 1; pointer-events: all; }
#back-to-top:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(201,168,76,0.5); }

/* ─── Animations ────────────────────────────────────────────── */
@keyframes fadeInUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn   { from { opacity:0; } to { opacity:1; } }
.animate-fade-in-up { animation: fadeInUp 0.7s ease both; }
[data-animate] { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-animate].animated { opacity: 1; transform: none; }
.delay-100 { transition-delay: 0.1s; } .delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; } .delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } .form-row { grid-template-columns: 1fr; } }
@media (max-width: 768px) {
  :root { --gap-2xl: 4rem; --gap-xl: 2.5rem; }
  .main-nav, .header-phone { display: none; }
  .menu-toggle { display: flex; }
  .hero-stats { gap: 1.5rem; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-section { padding: 2.5rem 1.5rem; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
