/* ═══════════════════════════════════════════════════
   MaintenanceTech Qc – Style ComFact-inspired
   ═══════════════════════════════════════════════════ */

:root {
  --navy:      #0D3F57;
  --navy-dk:   #092E42;
  --navy-lt:   #1A5F7A;
  --gold:      #C9A55A;
  --gold-dk:   #B08835;
  --gold-lt:   #F5ECD7;
  --cream:     #F5F0E8;
  --input-bg:  #E8F4F8;
  --white:     #FFFFFF;
  --text:      #333333;
  --text-lt:   #666666;
  --border:    #DDEAF0;
  --shadow:    0 2px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 4px 32px rgba(0,0,0,.14);
  --tr:        .3s ease;
  --serif:     'Lora', 'Georgia', serif;
  --sans:      'Montserrat', sans-serif;
  --body:      'Open Sans', sans-serif;
  --topo: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='900'%3E%3Cellipse cx='600' cy='450' rx='100' ry='80' fill='none' stroke='rgba(255,255,255,0.07)' stroke-width='1.5'/%3E%3Cellipse cx='600' cy='450' rx='200' ry='160' fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='1.5'/%3E%3Cellipse cx='600' cy='450' rx='320' ry='255' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='1'/%3E%3Cellipse cx='600' cy='450' rx='450' ry='360' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3Cellipse cx='600' cy='450' rx='580' ry='465' fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='1'/%3E%3Cellipse cx='200' cy='150' rx='130' ry='105' fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='1'/%3E%3Cellipse cx='200' cy='150' rx='260' ry='210' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3Cellipse cx='1000' cy='750' rx='160' ry='130' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='1'/%3E%3Cellipse cx='1000' cy='750' rx='310' ry='250' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3C/svg%3E");
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); color: var(--text); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(16px, 3vw, 40px); }

/* ── TOPBAR ── */
.topbar {
  background: var(--gold); padding: 9px 0;
  overflow: hidden; max-height: 38px;
  transition: max-height var(--tr), padding var(--tr), opacity var(--tr);
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; }
.topbar-phone { display: flex; align-items: center; gap: 7px; color: var(--white); font-family: var(--sans); font-weight: 700; font-size: .78rem; }
.topbar-links { display: flex; align-items: center; gap: 24px; }
.topbar-links a { color: var(--white); font-family: var(--sans); font-weight: 700; font-size: .72rem; text-transform: uppercase; letter-spacing: .09em; transition: opacity var(--tr); }
.topbar-links a:hover { opacity: .75; }

/* ── NAVBAR ── */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: var(--white); box-shadow: 0 2px 12px rgba(0,0,0,.08); transition: box-shadow var(--tr); }
#navbar.scrolled .topbar { max-height: 0; padding: 0; opacity: 0; }
#navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.12); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.logo { display: flex; flex-direction: column; align-items: center; gap: 4px; font-family: var(--sans); text-decoration: none; }
.logo-img { height: 62px; width: auto; }
.logo-text { font-size: .75rem; font-weight: 700; color: var(--navy); letter-spacing: .02em; line-height: 1; text-align: center; }
.logo em { color: var(--gold); font-style: normal; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: var(--navy); font-family: var(--sans); font-weight: 700; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; position: relative; transition: color var(--tr); }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width var(--tr); }
.nav-links a:not(.btn-nav):hover { color: var(--gold); }
.nav-links a:not(.btn-nav):hover::after { width: 100%; }
.btn-nav { background: var(--navy) !important; color: var(--white) !important; padding: 10px 22px; font-family: var(--sans) !important; font-weight: 700 !important; font-size: .72rem !important; text-transform: uppercase !important; letter-spacing: .08em !important; transition: background var(--tr) !important; }
.btn-nav:hover { background: var(--gold) !important; }
.btn-nav::after { display: none !important; }

.burger { display: none; flex-direction: column; gap: 5px; padding: 6px; z-index: 1100; position: relative; }
.burger span { display: block; width: 26px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform var(--tr), opacity var(--tr); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-backdrop { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 990; backdrop-filter: blur(2px); }
.nav-backdrop.show { display: block; }
.nav-close-item { display: none; }
.nav-close-btn { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: rgba(255,255,255,.12); border-radius: 50%; color: var(--white); font-size: 1.1rem; cursor: pointer; border: none; transition: background var(--tr); }
.nav-close-btn:hover { background: rgba(255,255,255,.22); }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; font-family: var(--sans); font-weight: 700; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; transition: background var(--tr), color var(--tr), transform var(--tr); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-dk); transform: translateY(-1px); }
.btn-gold-outline { border: 2px solid var(--gold); color: var(--gold); }
.btn-gold-outline:hover { background: var(--gold); color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-lt); transform: translateY(-1px); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--gold-lt); }
.btn-full { width: 100%; justify-content: center; }

/* ── SECTIONS ── */
.section { padding: clamp(60px, 8vw, 100px) 0; }
.section-cream { background: var(--cream); }
.section-navy  { background: var(--navy); color: var(--white); }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header.left { text-align: left; }
.section-tag { display: inline-block; background: var(--gold-lt); color: var(--gold-dk); font-family: var(--sans); font-weight: 700; font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; padding: 5px 14px; margin-bottom: 12px; }
.section-header h2 { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 3rem); font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 14px; }
.section-navy .section-header h2 { color: var(--white); }
.section-sub { color: var(--text-lt); max-width: 640px; margin: 0 auto; line-height: 1.75; }
.section-navy .section-sub { color: rgba(255,255,255,.7); }

/* ── TOPOGRAPHIC BG ── */
.topo-bg { background-color: var(--navy); background-image: var(--topo); background-size: cover; background-position: center; }

/* ── HERO ── */
#hero { padding: clamp(120px,12vw,160px) 0 clamp(70px,8vw,100px); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-h1 { font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.8rem); font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 20px; }
.hero-p { color: rgba(255,255,255,.8); font-size: .95rem; line-height: 1.75; font-weight: 600; margin-bottom: 10px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.hero-stats-row { display: flex; gap: 36px; flex-wrap: wrap; margin-top: 56px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,.15); }
.hero-stat-num { font-family: var(--serif); font-size: 2.6rem; font-weight: 700; color: var(--gold); line-height: 1; }
.hero-stat-num sup { font-size: 1.4rem; }
.hero-stat p { color: rgba(255,255,255,.6); font-size: .75rem; margin-top: 4px; font-family: var(--sans); text-transform: uppercase; letter-spacing: .06em; }

/* ── PHOTO BANNER ── */
.photo-banner { height: clamp(280px, 42vw, 500px); overflow: hidden; }
.photo-banner + .photo-banner { margin-top: 32px; }
.photo-banner img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.photo-banner--full { height: auto; }
.photo-banner--full img { object-fit: unset; height: auto; width: 100%; }

/* ── SPLIT SECTIONS ── */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split-h2 { font-family: var(--serif); font-size: clamp(1.8rem, 2.8vw, 2.8rem); font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 14px; }
.topo-bg .split-h2 { color: var(--white); }
.split-sub { font-weight: 700; color: var(--navy); margin-bottom: 28px; font-size: .92rem; line-height: 1.5; }
.topo-bg .split-sub { color: rgba(255,255,255,.85); }
.split-text { color: var(--text-lt); line-height: 1.8; font-size: .95rem; }
.split-text p + p { margin-top: 16px; }
.topo-bg .split-text { color: rgba(255,255,255,.7); }

/* ── SERVICE IMAGE CARDS ── */
.service-img-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.service-img-card { overflow: hidden; background: var(--white); }
.service-img-card .card-img { height: 280px; overflow: hidden; }
.service-img-card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-img-card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 28px 24px; }
.card-body h3 { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.3; }
.card-body p { color: var(--text-lt); font-size: .88rem; line-height: 1.65; margin-bottom: 16px; }
.card-link { color: var(--gold); font-family: var(--sans); font-weight: 700; font-size: .72rem; text-transform: uppercase; letter-spacing: .09em; transition: color var(--tr); }
.card-link:hover { color: var(--gold-dk); }

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); padding: 28px 22px; transition: background var(--tr); }
.why-card:hover { background: rgba(255,255,255,.1); }
.why-icon { width: 48px; height: 48px; background: rgba(201,165,90,.2); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; margin-bottom: 16px; }
.why-card h4 { font-family: var(--serif); font-size: .95rem; color: var(--white); margin-bottom: 8px; }
.why-card p { color: rgba(255,255,255,.65); font-size: .85rem; line-height: 1.65; }

/* ── GALLERY ── */
.gallery-filters { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }
.filter-btn { padding: 8px 20px; border: 2px solid var(--border); font-family: var(--sans); font-weight: 700; font-size: .72rem; text-transform: uppercase; letter-spacing: .07em; color: var(--text); transition: all var(--tr); }
.filter-btn:hover, .filter-btn.active { background: var(--gold); border-color: var(--gold); color: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-item { position: relative; aspect-ratio: 4/3; overflow: hidden; cursor: pointer; background: var(--cream); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,63,87,.85), transparent 60%); opacity: 0; transition: opacity var(--tr); display: flex; flex-direction: column; justify-content: flex-end; padding: 18px; }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay h4 { font-family: var(--serif); color: var(--white); font-size: .9rem; margin-bottom: 4px; }
.gallery-item-overlay span { color: var(--gold); font-size: .72rem; font-family: var(--sans); font-weight: 700; text-transform: uppercase; letter-spacing: .07em; }
.gallery-empty { grid-column: 1/-1; text-align: center; padding: 60px 20px; border: 2px dashed var(--border); color: var(--text-lt); }
.gallery-empty i { font-size: 2.5rem; margin-bottom: 16px; display: block; color: var(--border); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity var(--tr); }
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; }
.lightbox-close { position: absolute; top: 20px; right: 24px; color: var(--white); font-size: 2rem; cursor: pointer; transition: color var(--tr); }
.lightbox-close:hover { color: var(--gold); }

/* ── PROCESS ── */
.process-steps { display: flex; align-items: flex-start; flex-wrap: wrap; justify-content: center; }
.step { flex: 1; min-width: 180px; max-width: 220px; text-align: center; padding: 24px 16px; }
.step-num { font-family: var(--serif); font-size: 3rem; font-weight: 700; color: var(--gold); opacity: .4; line-height: 1; margin-bottom: 12px; transition: opacity var(--tr); }
.step:hover .step-num { opacity: 1; }
.step-content h4 { font-family: var(--serif); font-weight: 700; font-size: .95rem; color: var(--navy); margin-bottom: 8px; }
.step-content p { font-size: .85rem; color: var(--text-lt); line-height: 1.65; }
.step-arrow { display: flex; align-items: center; padding-top: 40px; color: var(--gold); font-size: 1.4rem; opacity: .5; }

/* ── CONTACT ── */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px; align-items: start; }
.contact-info h3 { font-family: var(--serif); font-size: 1.4rem; color: var(--navy); margin-bottom: 12px; }
.contact-info > p { color: var(--text-lt); line-height: 1.7; margin-bottom: 28px; }
.contact-items { display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-item-icon { width: 42px; height: 42px; background: var(--gold-lt); color: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item strong { display: block; font-family: var(--sans); font-size: .72rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 2px; }
.contact-item span, .contact-item a { color: var(--text-lt); font-size: .88rem; }
.contact-item a:hover { color: var(--gold); }
.contact-social { display: flex; gap: 10px; }
.contact-social a { width: 40px; height: 40px; background: var(--cream); color: var(--navy); display: flex; align-items: center; justify-content: center; transition: background var(--tr), color var(--tr); }
.contact-social a:hover { background: var(--gold); color: var(--white); }
.contact-form { background: var(--white); border: 2px solid var(--navy-lt); padding: 40px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label { font-family: var(--sans); font-size: .72rem; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: .07em; }
.form-group label span { color: #e03131; }
.form-group input, .form-group select, .form-group textarea { padding: 12px 16px; border: 1px solid transparent; background: var(--input-bg); font-family: var(--body); font-size: .9rem; color: var(--text); outline: none; transition: border-color var(--tr), box-shadow var(--tr), background var(--tr); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 2px rgba(201,165,90,.15); }
.form-group input.error, .form-group select.error, .form-group textarea.error { border-color: #e03131; background: #fff5f5; }
.form-group textarea { resize: vertical; }
.form-success { display: none; margin-top: 16px; padding: 14px 20px; background: rgba(40,167,69,.1); border: 1px solid rgba(40,167,69,.3); color: #1a6b2e; font-weight: 600; font-size: .9rem; gap: 10px; align-items: center; }
.form-success.show { display: flex; }

/* ── CAREERS ── */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 60px; }
.benefit-card { text-align: center; padding: 32px 20px; background: var(--white); border: 1px solid var(--border); transition: box-shadow var(--tr); }
.benefit-card:hover { box-shadow: var(--shadow); }
.benefit-icon { width: 54px; height: 54px; background: var(--gold-lt); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin: 0 auto 16px; }
.benefit-card h4 { font-family: var(--serif); font-size: .95rem; color: var(--navy); margin-bottom: 8px; }
.benefit-card p { font-size: .85rem; color: var(--text-lt); line-height: 1.6; }
.jobs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 48px; }
.job-card { background: var(--white); border: 1px solid var(--border); padding: 28px 24px; transition: box-shadow var(--tr), border-color var(--tr); }
.job-card:hover { box-shadow: var(--shadow-lg); border-color: var(--gold); }
.job-badge { display: inline-block; background: var(--gold-lt); color: var(--gold-dk); font-size: .7rem; font-weight: 700; padding: 4px 12px; font-family: var(--sans); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; }
.job-card h4 { font-family: var(--serif); font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; }
.job-card > p { color: var(--text-lt); font-size: .88rem; line-height: 1.6; margin-bottom: 16px; }
.job-meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: .78rem; color: var(--text-lt); margin-bottom: 20px; }
.job-meta span { display: flex; align-items: center; gap: 6px; }
.job-meta i { color: var(--gold); }

/* ── MODAL CANDIDATURE ── */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(10,30,50,.65); z-index: 2000; align-items: center; justify-content: center; padding: 20px; overflow-y: auto; }
.modal-overlay.open { display: flex; }
.modal-box { background: var(--white); width: 100%; max-width: 680px; max-height: 90vh; overflow-y: auto; padding: 48px 44px; position: relative; box-shadow: 0 24px 60px rgba(0,0,0,.25); animation: modalIn .22s ease; }
@keyframes modalIn { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:translateY(0); } }
.modal-close { position: absolute; top: 16px; right: 18px; background: none; border: none; font-size: 1.2rem; color: var(--text-lt); cursor: pointer; transition: color var(--tr); }
.modal-close:hover { color: var(--navy); }
.modal-box h3 { font-family: var(--serif); font-size: 1.55rem; color: var(--navy); margin-bottom: 4px; }
.modal-poste-label { font-family: var(--sans); font-size: .78rem; font-weight: 700; color: var(--gold-dk); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 24px; }
.careers-modal-form .form-group { margin-bottom: 18px; }
/* ── UPLOAD CV ── */
.file-input-hidden { display: none; }
.file-upload-label { display: flex; align-items: center; gap: 14px; padding: 18px 20px; background: var(--input-bg); border: 2px dashed var(--border); cursor: pointer; transition: border-color var(--tr), background var(--tr); font-family: var(--body); font-size: .88rem; color: var(--text-lt); }
.file-upload-label:hover { border-color: var(--gold); background: var(--white); }
.file-upload-label i { font-size: 1.5rem; color: var(--gold); flex-shrink: 0; }
.file-upload-label.has-file { border-style: solid; border-color: var(--gold); background: var(--white); color: var(--navy); font-weight: 600; }
.file-upload-label.error { border-color: #e03131; background: #fff5f5; }

/* ── CTA SECTIONS ── */
.cta-banner { background: var(--navy); text-align: center; color: var(--white); }
.cta-banner .section-header h2 { color: var(--white); font-family: var(--serif); }
.cta-banner .section-sub { color: rgba(255,255,255,.75); }
.cta-banner-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-photo { position: relative; min-height: 380px; display: flex; align-items: center; background-size: cover; background-position: center; overflow: hidden; }
.cta-photo::before { content: ''; position: absolute; inset: 0; background: rgba(13,63,87,.62); }
.cta-photo-content { position: relative; z-index: 2; text-align: center; width: 100%; padding: 60px 24px; }
.cta-photo h2 { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; color: var(--white); margin-bottom: 14px; }
.cta-photo p { color: rgba(255,255,255,.85); margin-bottom: 32px; font-size: 1rem; }

/* ── PAGE HERO (sub-pages) ── */
.page-hero { padding: clamp(110px,11vw,150px) 0 clamp(56px,6vw,80px); position: relative; overflow: hidden; }
.page-hero-inner { position: relative; z-index: 2; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .78rem; color: rgba(255,255,255,.6); margin-bottom: 14px; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,.6); transition: color var(--tr); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: .6rem; }
.page-hero h1 { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.8); font-size: .95rem; max-width: 560px; line-height: 1.7; }

/* ── SERVICES PAGE ── */
.services-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-detail-card { background: var(--white); border: 1px solid var(--border); padding: 32px 24px; transition: box-shadow var(--tr); }
.service-detail-card:hover { box-shadow: var(--shadow-lg); }
.service-icon { width: 52px; height: 52px; background: var(--gold-lt); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 16px; }
.service-detail-card h3 { font-family: var(--serif); font-size: 1.05rem; color: var(--navy); margin-bottom: 10px; }
.service-detail-card p { color: var(--text-lt); font-size: .88rem; line-height: 1.65; margin-bottom: 14px; }
.service-detail-card ul { display: flex; flex-direction: column; gap: 7px; }
.service-detail-card li { display: flex; align-items: center; gap: 8px; font-size: .84rem; color: var(--text); }
.service-detail-card li .fa-check { color: var(--gold); font-size: .68rem; }
.service-detail-card--wide { grid-column: 1/-1; }
.service-detail-card--wide ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 24px; }

/* ── FOOTER ── */
.footer-main { padding: 60px 0 44px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr; gap: 36px; align-items: start; }
.footer-brand p { color: rgba(255,255,255,.6); font-size: .82rem; line-height: 1.7; margin-top: 14px; max-width: 220px; }
.footer-nav h5 { font-family: var(--sans); font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--white); margin-bottom: 14px; }
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { color: rgba(255,255,255,.65); font-size: .75rem; font-family: var(--sans); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; transition: color var(--tr); }
.footer-nav a:hover { color: var(--gold); }
.footer-social h5 { font-family: var(--sans); font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--white); margin-bottom: 14px; }
.footer-social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social-links a { width: 36px; height: 36px; background: rgba(255,255,255,.1); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .88rem; transition: background var(--tr); }
.footer-social-links a:hover { background: var(--gold); }
.footer-contact-items { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-items p { display: flex; align-items: flex-start; gap: 8px; font-size: .78rem; color: rgba(255,255,255,.65); line-height: 1.5; }
.footer-contact-items i { color: var(--gold); width: 14px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-items a:hover { color: var(--gold); }
.footer-bar { background: var(--gold); padding: 12px 0; }
.footer-bar-inner { display: flex; align-items: center; justify-content: space-between; font-size: .74rem; color: var(--white); font-family: var(--sans); }
.footer-bar a { color: var(--white); font-weight: 700; transition: opacity var(--tr); }
.footer-bar a:hover { opacity: .8; }

/* ── BACK TO TOP ── */
.back-to-top { position: fixed; bottom: 28px; right: 28px; width: 46px; height: 46px; background: var(--gold); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .9rem; box-shadow: 0 2px 12px rgba(0,0,0,.2); opacity: 0; pointer-events: none; transform: translateY(8px); transition: opacity var(--tr), transform var(--tr), background var(--tr); z-index: 999; }
.back-to-top.show { opacity: 1; pointer-events: all; transform: translateY(0); }
.back-to-top:hover { background: var(--gold-dk); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-full-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail-card--wide { grid-column: 1/-1; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .service-img-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { gap: 40px; }
  .split-grid { gap: 48px; }
}

@media (max-width: 768px) {
  .topbar-links { display: none; }
  .burger { display: flex; }
  .nav-links { position: fixed; top: 0; right: -100%; bottom: 0; width: min(300px, 82vw); background: var(--navy-dk); flex-direction: column; align-items: flex-start; justify-content: flex-start; padding: 20px 24px 40px; gap: 6px; transition: right .35s cubic-bezier(.4,0,.2,1); box-shadow: -6px 0 40px rgba(0,0,0,.35); z-index: 999; overflow-y: auto; }
  .nav-links.open { right: 0; }
  .nav-links a { color: var(--white); font-size: .95rem; width: 100%; display: block; padding: 10px 0; }
  .nav-links a::after { background: var(--gold); }
  .nav-links a:hover { color: var(--gold); }
  .btn-nav { background: var(--gold) !important; color: var(--white) !important; width: 100%; text-align: center; margin-top: 8px; }
  .nav-close-item { display: flex; justify-content: flex-end; width: 100%; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 8px; }
  .nav-close-btn { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-stats-row { gap: 20px; flex-wrap: wrap; }
  .split-grid { grid-template-columns: 1fr; gap: 36px; }
  .service-img-grid { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .service-detail-card--wide ul { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 14px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { flex-direction: column; align-items: center; }
  .step { max-width: 100%; width: 100%; }
  .step-arrow { transform: rotate(90deg); padding-top: 0; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 16px; }
  .form-row { grid-template-columns: 1fr; }
  .jobs-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; gap: 14px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bar-inner { flex-direction: column; gap: 8px; text-align: center; }
  .cta-banner-btns { flex-direction: column; align-items: center; }
  .cta-photo { min-height: 280px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-column: 1fr; }
  .photo-banner { height: 220px; }
  .modal-box { padding: 32px 20px; }
}

@media (min-width: 1440px) {
  .container { max-width: 1380px; }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1920px) {
  html { font-size: 17px; }
  .container { max-width: 1700px; }
  .gallery-grid { grid-template-columns: repeat(5, 1fr); }
}
