/* =================================================================
   HAJLA GROUP — Premium Black & Gold Theme
   ================================================================= */

/* ===== VARIABLES ===== */
:root {
  --gold:        #d4af45;
  --gold-light:  #f0cf6e;
  --gold-dark:   #9c7a2e;
  --black:       #0c0c0e;
  --charcoal:    #16161a;
  --graphite:    #202026;
  --graphite2:   #2b2b33;
  --white:       #ffffff;
  --cream:       #f7f5f0;
  --light:       #f3f1ec;
  --line:        #e6e2d8;
  --text:        #14141a;
  --text-muted:  #5f5f68;
  --text-on-dark:#e6e6ec;

  --font-display: 'Teko', sans-serif;
  --font-body:    'Open Sans', sans-serif;

  --radius: 6px;
  --radius-lg: 14px;
  --shadow:      0 10px 40px rgba(0,0,0,0.10);
  --shadow-lg:   0 24px 70px rgba(0,0,0,0.18);
  --shadow-gold: 0 12px 34px rgba(201,168,76,0.32);
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --maxw: 1240px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-weight: 400; color: var(--text); background: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, select, textarea { font-family: var(--font-body); }
::selection { background: var(--gold); color: var(--black); }

/* ===== LAYOUT ===== */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: 104px 0; }
.section-sm { padding: 80px 0; }

/* ===== TYPOGRAPHY HELPERS ===== */
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }
.section-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 13px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold-dark); margin-bottom: 16px;
}
.section-tag::before { content: ''; width: 30px; height: 2px; background: var(--gold); display: inline-block; }
.section-head.center .section-tag::after { content: ''; width: 30px; height: 2px; background: var(--gold); display: inline-block; }
.section-title {
  font-family: var(--font-display); font-size: clamp(36px, 4.6vw, 60px);
  font-weight: 600; color: var(--black); line-height: 1.02; letter-spacing: 0.3px;
  text-transform: uppercase;
}
.section-sub { color: var(--text-muted); font-size: 16.5px; line-height: 1.8; margin-top: 16px; }

/* dark variants */
.on-dark .section-title { color: var(--white); }
.on-dark .section-tag { color: var(--gold); }
.on-dark .section-sub { color: var(--text-on-dark); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 36px; font-family: var(--font-display);
  font-size: 18px; font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase;
  border-radius: var(--radius); transition: all var(--transition); white-space: nowrap; line-height: 1;
}
.btn svg { width: 16px; height: 16px; }
.btn-gold { background: var(--gold); color: var(--black); box-shadow: 0 8px 22px rgba(201,168,76,0.30); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: var(--shadow-gold); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: var(--graphite); transform: translateY(-3px); }
.btn-outline { border: 1.5px solid rgba(255,255,255,0.55); color: var(--white); background: transparent; }
.btn-outline:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-ghost { border: 1.5px solid var(--gold); color: var(--gold-dark); }
.btn-ghost:hover { background: var(--gold); color: var(--black); }
.full-width { width: 100%; }

/* ===== COOKIE ===== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; display: none;
  background: var(--charcoal); border-top: 3px solid var(--gold);
  padding: 18px 24px; justify-content: center; animation: slideUp 0.5s ease;
}
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.cookie-content { max-width: 820px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.cookie-content h4 { color: var(--white); font-family: var(--font-display); font-size: 20px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.cookie-content p { color: rgba(255,255,255,0.6); font-size: 13px; flex: 1; min-width: 200px; }
.cookie-btns { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btns .btn { padding: 11px 24px; }

/* ===== TOP BAR ===== */
.topbar { background: var(--black); color: rgba(255,255,255,0.7); font-size: 13px; position: fixed; top: 0; left: 0; right: 0; z-index: 1001; height: 40px; transition: transform var(--transition); }
.topbar.up { transform: translateY(-100%); }
.topbar-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; height: 40px; display: flex; align-items: center; justify-content: space-between; }
.topbar-left { display: flex; gap: 26px; }
.topbar a { display: inline-flex; align-items: center; gap: 8px; transition: color var(--transition); }
.topbar a:hover { color: var(--gold); }
.topbar svg { width: 14px; height: 14px; stroke: var(--gold); }
.topbar-right { display: flex; gap: 14px; align-items: center; }
.topbar-right span { color: rgba(255,255,255,0.4); }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 40px; left: 0; right: 0; z-index: 1000;
  background: rgba(12,12,14,0.55); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background var(--transition), top var(--transition), box-shadow var(--transition);
}
#navbar.scrolled { top: 0; background: rgba(12,12,14,0.96); box-shadow: 0 8px 30px rgba(0,0,0,0.4); }
.nav-container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; display: flex; align-items: center; justify-content: space-between; height: 78px; }
.nav-logo-img { height: 66px; width: auto; object-fit: contain; transition: opacity var(--transition); }
.nav-logo:hover .nav-logo-img { opacity: 0.85; }
.nav-links { display: flex; align-items: center; gap: 38px; }
.nav-links > a { color: rgba(255,255,255,0.92); font-family: var(--font-display); font-size: 19px; font-weight: 500; letter-spacing: 0.8px; text-transform: uppercase; position: relative; transition: color var(--transition); }
.nav-links > a::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width var(--transition); }
.nav-links > a:hover { color: var(--white); }
.nav-links > a:hover::after { width: 100%; }
.nav-cta { background: var(--gold) !important; color: var(--black) !important; padding: 12px 24px !important; border-radius: var(--radius); font-weight: 600; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; z-index: 1002; }
.hamburger span { width: 26px; height: 2px; background: var(--white); transition: all var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero { height: 100vh; min-height: 640px; position: relative; overflow: hidden; }
.carousel { position: relative; height: 100%; }
.slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  background-color: var(--charcoal);
  opacity: 0; transition: opacity 1.2s ease; display: flex; align-items: center;
  transform: scale(1.06);
}
.slide.active { opacity: 1; z-index: 1; animation: kenburns 7s ease forwards; }
@keyframes kenburns { from { transform: scale(1.10); } to { transform: scale(1.0); } }
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(8,8,10,0.90) 0%, rgba(8,8,10,0.62) 45%, rgba(8,8,10,0.30) 100%); }
.slide-content { position: relative; z-index: 2; max-width: 720px; padding-left: max(28px, 8vw); padding-right: 28px; opacity: 0; transform: translateY(34px); transition: opacity 0.9s ease 0.35s, transform 0.9s ease 0.35s; }
.slide.active .slide-content { opacity: 1; transform: translateY(0); }
.slide-tag { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-body); font-size: 13px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; font-weight: 700; }
.slide-tag::before { content: ''; width: 36px; height: 2px; background: var(--gold); }
.slide-content h1 { font-family: var(--font-display); font-size: clamp(46px, 7vw, 88px); font-weight: 600; color: var(--white); line-height: 0.98; letter-spacing: 0.5px; margin-bottom: 22px; text-transform: uppercase; text-shadow: 0 2px 24px rgba(0,0,0,0.4); }
.slide-content h1 .accent { color: var(--gold); }
.slide-content p { color: rgba(255,255,255,0.94); font-size: clamp(15.5px,1.5vw,18.5px); line-height: 1.7; margin-bottom: 36px; max-width: 560px; }
.slide-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,0.08); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,0.3); color: var(--white); font-size: 18px; transition: all var(--transition); display: flex; align-items: center; justify-content: center; }
.carousel-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.carousel-btn.prev { left: 26px; }
.carousel-btn.next { right: 26px; }
.carousel-dots { position: absolute; bottom: 110px; left: max(28px, 8vw); display: flex; gap: 10px; z-index: 10; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.35); border: 1px solid rgba(255,255,255,0.6); cursor: pointer; transition: all var(--transition); }
.dot.active { background: var(--gold); width: 30px; border-radius: 5px; border-color: var(--gold); }

/* hero stats strip */
.hero-strip { position: absolute; bottom: 0; left: 0; right: 0; z-index: 5; background: rgba(12,12,14,0.78); backdrop-filter: blur(8px); border-top: 1px solid rgba(201,168,76,0.3); }
.hero-strip-inner { max-width: var(--maxw); margin: 0 auto; padding: 22px 28px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.hs-item { display: flex; align-items: center; gap: 14px; color: var(--white); }
.hs-item:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.12); }
.hs-num { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: var(--gold); line-height: 1; }
.hs-label { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.4; }

/* ===== ABOUT ===== */
.about-section { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-images { position: relative; height: 520px; }
.about-img-1 { position: absolute; top: 0; left: 0; width: 78%; height: 380px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-img-2 { position: absolute; bottom: 0; right: 0; width: 54%; height: 270px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 6px solid var(--white); }
.about-badge { position: absolute; bottom: 30px; left: -10px; background: var(--gold); color: var(--black); padding: 22px 26px; border-radius: var(--radius-lg); box-shadow: var(--shadow); text-align: center; }
.about-badge .b-num { font-family: var(--font-display); font-size: 40px; font-weight: 700; line-height: 1; }
.about-badge .b-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.about-text h2 { margin-bottom: 8px; }
.about-text > p { color: var(--text-muted); line-height: 1.85; margin-bottom: 18px; font-size: 15.5px; }
.about-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; margin: 28px 0 34px; }
.about-list li { display: flex; align-items: center; gap: 12px; font-size: 14.5px; font-weight: 600; color: var(--text); }
.about-list svg { width: 22px; height: 22px; flex-shrink: 0; }
.about-signature { display: flex; align-items: center; gap: 18px; padding-top: 26px; border-top: 1px solid var(--line); }
.about-signature .sig-name { font-family: var(--font-display); font-weight: 700; color: var(--black); font-size: 16px; }
.about-signature .sig-role { font-size: 13px; color: var(--text-muted); }

/* ===== SERVICES ===== */
.services-section { background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.service-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 6px 24px rgba(0,0,0,0.05); transition: transform var(--transition), box-shadow var(--transition); position: relative; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-img-wrap { position: relative; height: 200px; overflow: hidden; }
.service-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; filter: brightness(0.92); }
.service-card:hover .service-img-wrap img { transform: scale(1.08); }
.service-num { position: absolute; top: 14px; right: 14px; font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--black); background: var(--gold); width: 34px; height: 34px; border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.service-icon { position: absolute; bottom: -22px; left: 20px; width: 52px; height: 52px; background: var(--black); border: 2px solid var(--gold); border-radius: 12px; padding: 11px; transition: background var(--transition); }
.service-card:hover .service-icon { background: var(--gold); }
.service-icon svg { width: 100%; height: 100%; }
.service-icon svg [stroke] { stroke: var(--gold) !important; transition: stroke var(--transition); }
.service-icon svg [fill]:not([fill="none"]) { fill: var(--gold) !important; transition: fill var(--transition); }
.service-card:hover .service-icon svg [stroke] { stroke: var(--black) !important; }
.service-card:hover .service-icon svg [fill]:not([fill="none"]) { fill: var(--black) !important; }
.service-body { padding: 38px 24px 28px; }
.service-body h3 { font-family: var(--font-display); font-size: 24px; font-weight: 600; color: var(--black); margin-bottom: 6px; line-height: 1.05; text-transform: uppercase; letter-spacing: 0.3px; }
.service-body p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.service-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gold-dark); transition: gap var(--transition); }
.service-link svg { width: 15px; height: 15px; stroke: var(--gold-dark); }
.service-card:hover .service-link { gap: 13px; }

/* ===== WHY US ===== */
.why-section { background: var(--black); position: relative; }
.why-section::before { content: ''; position: absolute; inset: 0; background-image: url('../img/hero2.jpg'); background-size: cover; background-position: center; opacity: 0.08; }
.why-section .container { position: relative; z-index: 1; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.why-card { padding: 40px 32px; border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius-lg); background: rgba(255,255,255,0.02); transition: all var(--transition); }
.why-card:hover { border-color: var(--gold); background: rgba(201,168,76,0.06); transform: translateY(-6px); }
.why-icon { width: 64px; height: 64px; margin-bottom: 22px; padding: 14px; border-radius: 14px; background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.4); }
.why-icon svg { width: 100%; height: 100%; stroke: var(--gold); fill: none; }
.why-card h3 { font-family: var(--font-display); font-size: 25px; font-weight: 600; color: var(--white); margin-bottom: 10px; line-height: 1.05; text-transform: uppercase; letter-spacing: 0.3px; }
.why-card p { font-size: 14.5px; color: rgba(255,255,255,0.86); line-height: 1.8; }

/* ===== PROCESS ===== */
.process-section { background: var(--white); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; position: relative; }
.process-grid::before { content: ''; position: absolute; top: 38px; left: 12%; right: 12%; height: 2px; background: repeating-linear-gradient(90deg, var(--line) 0 10px, transparent 10px 20px); z-index: 0; }
.process-step { position: relative; z-index: 1; text-align: center; }
.ps-circle { width: 78px; height: 78px; margin: 0 auto 24px; border-radius: 50%; background: var(--white); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; position: relative; transition: all var(--transition); }
.ps-circle svg { width: 34px; height: 34px; stroke: var(--gold-dark); fill: none; transition: stroke var(--transition); }
.process-step:hover .ps-circle { background: var(--gold); transform: translateY(-5px); box-shadow: var(--shadow-gold); }
.process-step:hover .ps-circle svg { stroke: var(--black); }
.ps-num { position: absolute; top: -8px; right: -8px; width: 28px; height: 28px; background: var(--black); color: var(--gold); font-family: var(--font-display); font-size: 13px; font-weight: 700; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.process-step h3 { font-family: var(--font-display); font-size: 24px; font-weight: 600; color: var(--black); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.3px; }
.process-step p { font-size: 14px; color: var(--text-muted); line-height: 1.7; padding: 0 6px; }

/* ===== PROJECTS / GALLERY ===== */
.projects-section { background: var(--cream); }
.project-tabs { display: flex; gap: 10px; justify-content: center; margin-bottom: 46px; flex-wrap: wrap; }
.tab-btn { padding: 9px 28px; border: 1px solid var(--line); background: var(--white); color: var(--text-muted); font-family: var(--font-display); font-size: 17px; font-weight: 500; letter-spacing: 0.8px; text-transform: uppercase; border-radius: 40px; transition: all var(--transition); }
.tab-btn.active, .tab-btn:hover { background: var(--black); color: var(--gold); border-color: var(--black); }
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.project-card { position: relative; overflow: hidden; border-radius: var(--radius-lg); aspect-ratio: 4/3.4; cursor: pointer; }
.project-card.wide { grid-column: span 2; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.project-card:hover img { transform: scale(1.09); }
.project-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,8,10,0.92) 0%, rgba(8,8,10,0.25) 55%, transparent 100%); padding: 28px; display: flex; flex-direction: column; justify-content: flex-end; opacity: 1; transition: all var(--transition); }
.project-cat { font-family: var(--font-display); font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; transform: translateY(10px); opacity: 0; transition: all var(--transition); }
.project-overlay h3 { font-family: var(--font-display); font-size: 28px; font-weight: 600; color: var(--white); margin-bottom: 4px; line-height: 1.05; text-transform: uppercase; letter-spacing: 0.3px; transform: translateY(10px); transition: transform var(--transition); }
.project-overlay p { font-size: 13.5px; color: rgba(255,255,255,0.88); max-height: 0; overflow: hidden; opacity: 0; transition: all var(--transition); }
.project-card:hover .project-cat { transform: translateY(0); opacity: 1; }
.project-card:hover .project-overlay h3 { transform: translateY(0); }
.project-card:hover .project-overlay p { max-height: 80px; opacity: 1; margin-top: 6px; }
.project-card.hidden { display: none; }

/* ===== TESTIMONIALS ===== */
.testi-section { background: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testi-card { background: var(--cream); border-radius: var(--radius-lg); padding: 38px 32px; position: relative; border: 1px solid var(--line); transition: all var(--transition); }
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold); }
.testi-quote { position: absolute; top: 22px; right: 28px; font-family: Georgia, serif; font-size: 72px; line-height: 1; color: var(--gold); opacity: 0.35; }
.testi-stars { display: flex; gap: 3px; margin-bottom: 18px; }
.testi-stars svg { width: 18px; height: 18px; fill: var(--gold); }
.testi-card p { font-size: 15px; color: var(--text); line-height: 1.8; margin-bottom: 26px; position: relative; z-index: 1; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 50px; height: 50px; border-radius: 50%; background: var(--black); color: var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 18px; }
.testi-card p { font-weight: 600; }
.testi-name { font-family: var(--font-display); font-weight: 600; color: var(--black); font-size: 20px; text-transform: uppercase; letter-spacing: 0.3px; }
.testi-role { font-size: 13px; color: var(--text-muted); }

/* ===== CTA BANNER ===== */
.cta-banner { background: var(--gold); position: relative; overflow: hidden; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 56px 0; flex-wrap: wrap; }
.cta-inner h2 { font-family: var(--font-display); font-size: clamp(32px, 4vw, 50px); font-weight: 600; color: var(--black); line-height: 1.0; text-transform: uppercase; letter-spacing: 0.4px; }
.cta-inner p { color: rgba(12,12,14,0.7); font-size: 16px; margin-top: 8px; }

/* ===== CONTACT ===== */
.contact-section { background: var(--charcoal); }
.contact-section .section-title { color: var(--white); }
.contact-section .section-tag { color: var(--gold); }
.contact-section .section-sub { color: var(--text-on-dark); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: stretch; }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-item { display: flex; align-items: center; gap: 18px; padding: 22px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); transition: all var(--transition); }
.contact-item:hover { border-color: var(--gold); background: rgba(201,168,76,0.06); }
.contact-icon { width: 50px; height: 50px; flex-shrink: 0; background: rgba(201,168,76,0.14); border-radius: 12px; padding: 13px; }
.contact-icon svg { width: 100%; height: 100%; stroke: var(--gold); fill: none; }
.ci-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 4px; }
.ci-value { color: var(--white); font-size: 15.5px; font-weight: 600; }
.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg); display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-family: var(--font-body); font-size: 12.5px; font-weight: 700; letter-spacing: 0.3px; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  padding: 13px 16px; border: 1.5px solid var(--line); border-radius: var(--radius);
  font-size: 14.5px; color: var(--text); background: var(--cream); transition: all var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 3px rgba(201,168,76,0.15); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-consent { display: flex; align-items: flex-start; gap: 10px; font-size: 12.5px; color: var(--text-muted); line-height: 1.5; }
.form-consent input { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--gold); }

/* MAP */
.map-section { line-height: 0; }
.map-section iframe { width: 100%; height: 440px; border: 0; filter: grayscale(0.3) contrast(1.05); }

/* ===== FOOTER ===== */
.footer { background: var(--black); padding: 80px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.4fr; gap: 48px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand img { height: 84px; width: auto; margin-bottom: 20px; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.8; max-width: 300px; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); }
.footer-social svg { width: 18px; height: 18px; fill: rgba(255,255,255,0.7); transition: fill var(--transition); }
.footer-social a:hover svg { fill: var(--black); }
.footer-col h4 { font-family: var(--font-display); color: var(--gold); font-size: 19px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; }
.footer-col a, .footer-col p { color: rgba(255,255,255,0.62); font-size: 14px; transition: color var(--transition); display: block; margin-bottom: 12px; }
.footer-col a:hover { color: var(--gold); }
.footer-col .fc-row { display: flex; gap: 10px; align-items: flex-start; }
.footer-col .fc-row svg { width: 16px; height: 16px; stroke: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-bottom { padding: 24px 0; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 13px; }
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* back to top */
.to-top { position: fixed; bottom: 28px; right: 28px; width: 50px; height: 50px; border-radius: 50%; background: var(--gold); color: var(--black); display: flex; align-items: center; justify-content: center; z-index: 900; opacity: 0; pointer-events: none; transform: translateY(20px); transition: all var(--transition); box-shadow: var(--shadow-gold); }
.to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.to-top svg { width: 22px; height: 22px; stroke: var(--black); }

/* ===== SCROLL ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-images { height: 440px; max-width: 560px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .process-grid::before { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .project-card.wide { grid-column: span 1; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-strip { display: none; }
}
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .topbar-left .tb-hide { display: none; }
  .topbar-right { display: none; }
  .topbar-inner { justify-content: center; }
  #navbar { top: 40px; }
  .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--black); flex-direction: column; justify-content: center; align-items: center; gap: 30px; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-links > a { font-size: 22px; color: var(--white); }
  .hamburger { display: flex; }
  .carousel-dots { bottom: 40px; }
  .slide-content { padding-left: 22px; padding-right: 22px; }
  .slide-content h1 { font-size: clamp(33px, 8.4vw, 52px); }
  .slide-content p { font-size: 15px; }
  .slide-actions { gap: 12px; }
  .slide-actions .btn { padding: 13px 22px; font-size: 16px; }
  .section-title { font-size: clamp(30px, 8vw, 46px); }
  .form-row { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; align-items: center; }
  .about-list { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .about-images { height: 340px; max-width: 100%; }
  .about-badge { left: 0; padding: 16px 18px; }
  .about-badge .b-num { font-size: 32px; }
  .topbar-left { gap: 16px; }
  .topbar a { font-size: 12.5px; }
  .container { padding: 0 20px; }
  .btn { padding: 14px 24px; font-size: 16px; }
  .cookie-content { gap: 12px; }
}
/* prevent any long word from forcing horizontal scroll */
h1, h2, h3, p, a { overflow-wrap: break-word; }
html, body { max-width: 100%; overflow-x: hidden; }
