/*
Theme Name: AESCONS Custom Theme
Theme URI: https://aescons.com/
Author: AESCONS
Description: Custom WordPress theme converted from AESCONS static HTML website.
Version: 1.0
Text Domain: aescons
*/

:root {
  --dark: #120808;
  --dark-mid: #1e0e0e;
  --dark-card: #2a1212;
  --gold: #B8860B;
  --gold-light: #D4A017;
  --cream: #F9F5EF;
  --cream-dark: #EDE3CE;
  --ivory: #FDFAF6;
  --white: #ffffff;
  --text: #1a0808;
  --text-mid: #3d1a1a;
  --text-muted: #7a6060;
  --border: #e5ddd0;
  --nav-bg: #FDFAF6;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;
  --ease: cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); font-size: 15px; line-height: 1.75; -webkit-font-smoothing: antialiased; }

/* ====== NAVBAR — LIGHT PREMIUM ====== */
.navbar {
  position: sticky; top: 0; z-index: 200;
  background: rgba(253,250,246,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(184,134,11,0.15);
  box-shadow: 0 2px 24px rgba(18,8,8,0.06);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 48px;
  height: 72px; display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
}
.nav-links { display: flex; list-style: none; gap: 40px; }
.nav-links a {
  text-decoration: none; font-size: 11.5px; letter-spacing: 1.8px;
  text-transform: uppercase; color: #5a3a2a;
  position: relative; padding-bottom: 4px; transition: color 0.25s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--dark); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--dark); font-weight: 500; }
.nav-links a.active::after { width: 100%; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--dark); }
.mobile-menu {
  display: none; flex-direction: column;
  background: var(--ivory); border-top: 1px solid var(--border);
  padding: 20px 48px; gap: 18px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { text-decoration: none; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: #5a3a2a; }

/* ====== BUTTONS ====== */
.btn-gold {
  display: inline-block; padding: 13px 34px; background: var(--gold); color: #fff;
  text-decoration: none; font-size: 11px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; border-radius: 1px; transition: all 0.25s var(--ease);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,134,11,0.3); }
.btn-outline-dark {
  display: inline-block; padding: 13px 34px; border: 1px solid var(--dark); color: var(--dark);
  text-decoration: none; font-size: 11px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; border-radius: 1px; transition: all 0.25s var(--ease);
}
.btn-outline-dark:hover { background: var(--dark); color: var(--cream); }
.btn-outline-light {
  display: inline-block; padding: 13px 34px; border: 1px solid rgba(255,255,255,0.35); color: rgba(255,255,255,0.8);
  text-decoration: none; font-size: 11px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; border-radius: 1px; transition: all 0.25s var(--ease);
}
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline {
  display: inline-block; padding: 10px 24px; border: 1px solid var(--gold); color: var(--gold);
  text-decoration: none; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; border-radius: 1px; transition: all 0.25s;
}
.btn-outline:hover { background: var(--gold); color: #fff; }

/* ====== HERO ====== */
.hero {
  background: var(--dark); min-height: 90vh; display: flex; flex-direction: column;
  justify-content: center; position: relative; overflow: hidden;
}
.hero-bg-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(184,134,11,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,134,11,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-glow { position: absolute; right: 5%; top: 10%; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(139,26,26,0.12) 0%, transparent 65%); pointer-events: none; }
.hero-content { max-width: 1280px; margin: 0 auto; padding: 100px 48px 60px; width: 100%; position: relative; z-index: 1; animation: fadeUp 1s ease both; }
.hero-eyebrow { font-size: 10px; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; display: flex; align-items: center; gap: 16px; }
.hero-eyebrow::before { content: ''; display: block; width: 36px; height: 1px; background: var(--gold); }
.hero-title { font-family: var(--font-display); font-size: clamp(48px,6.5vw,80px); font-weight: 300; color: #fff; line-height: 1.08; margin-bottom: 28px; }
.hero-title em { font-style: italic; color: var(--gold); }
.hero-desc { font-size: 15px; color: rgba(255,255,255,0.5); max-width: 500px; line-height: 2; margin-bottom: 44px; font-weight: 300; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { max-width: 1280px; margin: 0 auto; padding: 36px 48px; display: flex; align-items: center; gap: 48px; border-top: 1px solid rgba(255,255,255,0.06); position: relative; z-index: 1; }
.stat-num { font-family: var(--font-display); font-size: 36px; font-weight: 300; color: var(--gold); line-height: 1; display: block; }
.stat-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-top: 4px; display: block; }
.stat-div { width: 1px; height: 48px; background: rgba(255,255,255,0.08); }

/* ====== SECTIONS ====== */
.sec { padding: 110px 0; }
.sec-inner { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.sec-hdr { text-align: center; margin-bottom: 70px; }
.sec-hdr.left { text-align: left; }
.eyebrow { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: block; }
.sec-title { font-family: var(--font-display); font-size: clamp(32px,4vw,52px); font-weight: 300; color: var(--dark); line-height: 1.12; margin-bottom: 16px; }
.sec-title em { font-style: italic; color: var(--gold); }
.sec-desc { font-size: 15px; color: var(--text-muted); max-width: 520px; margin: 0 auto; line-height: 1.9; font-weight: 300; }

/* ====== SERVICES GRID ====== */
.svc-bg { background: var(--cream); }
.svc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; background: rgba(0,0,0,0.07); }
.svc-card { background: var(--ivory); padding: 48px 36px; position: relative; transition: all 0.35s var(--ease); cursor: default; }
.svc-card:hover { background: var(--dark); transform: translateY(-4px); z-index: 2; box-shadow: 0 24px 60px rgba(0,0,0,0.22); }
.svc-card:hover .svc-num { color: rgba(255,255,255,0.05); }
.svc-card:hover h3, .svc-card:hover p { color: rgba(255,255,255,0.85); }
.svc-card:hover .card-lnk { color: var(--gold); }
.svc-num { font-family: var(--font-display); font-size: 60px; font-weight: 300; color: var(--cream-dark); line-height: 1; margin-bottom: 20px; transition: color 0.35s; }
.svc-icon { margin-bottom: 18px; }
.svc-card h3 { font-family: var(--font-display); font-size: 24px; font-weight: 400; color: var(--dark); margin-bottom: 14px; transition: color 0.35s; }
.svc-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.85; margin-bottom: 28px; font-weight: 300; transition: color 0.35s; }
.card-lnk { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--dark); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all 0.25s; }
.card-lnk .arr { transition: transform 0.25s; }
.card-lnk:hover .arr { transform: translateX(5px); }

/* ====== WHY US ====== */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.why-text h2 { font-family: var(--font-display); font-size: clamp(32px,4vw,50px); font-weight: 300; color: var(--dark); margin-bottom: 20px; line-height: 1.1; }
.why-text h2 em { font-style: italic; color: var(--gold); }
.why-text p { color: var(--text-muted); line-height: 1.95; font-weight: 300; }
.why-items { display: flex; flex-direction: column; }
.why-item { display: flex; gap: 22px; align-items: flex-start; padding: 28px 0; border-bottom: 1px solid var(--border); }
.why-item:first-child { border-top: 1px solid var(--border); }
.why-ico { width: 30px; height: 30px; border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 11px; color: var(--gold); margin-top: 2px; }
.why-item h4 { font-family: var(--font-display); font-size: 19px; color: var(--dark); margin-bottom: 5px; font-weight: 500; }
.why-item p { font-size: 13.5px; color: var(--text-muted); line-height: 1.8; font-weight: 300; }

/* ====== PROJECTS ====== */
.proj-bg { background: var(--dark); }
.proj-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: rgba(255,255,255,0.04); }
.proj-card { background: var(--dark-mid); padding: 40px 34px; border: 1px solid rgba(255,255,255,0.04); transition: all 0.35s var(--ease); position: relative; overflow: hidden; }
.proj-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transition: transform 0.35s var(--ease); transform-origin: left; }
.proj-card:hover { background: #1e0f0f; transform: translateY(-3px); }
.proj-card:hover::before { transform: scaleX(1); }
.proj-type { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: block; }
.proj-card h3 { font-family: var(--font-display); font-size: 21px; color: rgba(255,255,255,0.9); margin-bottom: 8px; font-weight: 400; }
.proj-card .loc { font-size: 12px; color: rgba(255,255,255,0.3); margin-bottom: 14px; }
.proj-card p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.85; font-weight: 300; }
.proj-meta { display: flex; gap: 22px; margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.06); }
.proj-meta span { font-size: 10px; color: rgba(255,255,255,0.3); letter-spacing: 0.5px; }
.proj-meta strong { display: block; font-size: 13px; color: var(--gold); font-weight: 400; font-family: var(--font-display); }

/* ====== GALLERY ====== */
.gallery-bg { background: var(--cream); }
.gallery-item { break-inside: avoid; margin-bottom: 14px; position: relative; overflow: hidden; border-radius: 1px; }
.gallery-item img { width: 100%; display: block; transition: transform 0.5s var(--ease); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-placeholder { display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px; }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(18,8,8,0.75) 0%, transparent 55%); opacity: 0; transition: opacity 0.35s; display: flex; align-items: flex-end; padding: 20px; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { font-family: var(--font-display); font-size: 15px; color: #fff; font-style: italic; }

/* ====== CTA ====== */
.cta-sec { background: var(--dark); text-align: center; padding: 100px 48px; position: relative; overflow: hidden; }
.cta-sec::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(184,134,11,0.04) 1px, transparent 1px), linear-gradient(90deg,rgba(184,134,11,0.04) 1px,transparent 1px); background-size: 60px 60px; }
.cta-sec h2 { font-family: var(--font-display); font-size: clamp(34px,4.5vw,56px); font-weight: 300; color: #fff; margin-bottom: 14px; position: relative; }
.cta-sec p { color: rgba(255,255,255,0.4); font-size: 15px; margin-bottom: 40px; font-weight: 300; position: relative; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ====== PAGE HERO ====== */
.pg-hero { background: var(--dark); padding: 90px 48px; text-align: center; position: relative; overflow: hidden; }
.pg-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(184,134,11,0.04) 1px, transparent 1px), linear-gradient(90deg,rgba(184,134,11,0.04) 1px,transparent 1px); background-size: 60px 60px; }
.pg-hero .eyebrow { position: relative; margin-bottom: 12px; }
.pg-hero h1 { font-family: var(--font-display); font-size: clamp(40px,5.5vw,64px); font-weight: 300; color: #fff; position: relative; }
.pg-hero h1 em { font-style: italic; color: var(--gold); }
.pg-hero .sub { font-size: 15px; color: rgba(255,255,255,0.45); max-width: 480px; margin: 18px auto 0; line-height: 1.9; position: relative; font-weight: 300; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 11px; color: rgba(255,255,255,0.28); margin-bottom: 20px; letter-spacing: 1px; position: relative; }
.breadcrumb a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.2); }

/* ====== FOOTER ====== */
.footer { background: #080303; border-top: 1px solid rgba(255,255,255,0.04); padding: 56px 48px; }
.footer-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 40px; }
.footer-logo img { height: 42px; width: auto; max-width: 160px; object-fit: contain; filter: brightness(10); opacity: 0.55; }
.footer-links { display: flex; gap: 34px; list-style: none; justify-content: center; }
.footer-links a { text-decoration: none; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.25); transition: color 0.25s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.18); text-align: right; }

/* ====== ABOUT PAGE ====== */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.about-visual { background: var(--dark); border-radius: 2px; min-height: 480px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.about-visual::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(184,134,11,0.05) 1px,transparent 1px), linear-gradient(90deg,rgba(184,134,11,0.05) 1px,transparent 1px); background-size: 40px 40px; }
.about-visual-art { position: relative; z-index: 1; text-align: center; }
.about-nums { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }
.num-card { background: var(--cream); padding: 24px; border-left: 2px solid var(--gold); }
.num-card .n { font-family: var(--font-display); font-size: 38px; color: var(--dark); font-weight: 300; line-height: 1; }
.num-card .l { font-size: 11px; letter-spacing: 1px; color: var(--text-muted); margin-top: 4px; font-weight: 300; }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.team-card { background: var(--ivory); border-radius: 1px; overflow: hidden; transition: all 0.3s var(--ease); border: 1px solid var(--border); }
.team-card:hover { transform: translateY(-5px); box-shadow: 0 24px 60px rgba(0,0,0,0.1); }
.team-avatar { height: 190px; display: flex; align-items: center; justify-content: center; background: var(--dark-mid); }
.team-init { font-family: var(--font-display); font-size: 50px; font-weight: 300; color: var(--gold); }
.team-info { padding: 22px; }
.team-info h4 { font-family: var(--font-display); font-size: 20px; color: var(--dark); margin-bottom: 4px; }
.team-role { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.team-bio { font-size: 13px; color: var(--text-muted); margin-top: 10px; line-height: 1.8; font-weight: 300; }
.vals-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; background: rgba(0,0,0,0.07); }
.val-card { background: var(--ivory); padding: 38px 28px; transition: all 0.35s; }
.val-card:hover { background: var(--dark); }
.val-card:hover .val-n, .val-card:hover h4, .val-card:hover p { color: rgba(255,255,255,0.8); }
.val-n { font-family: var(--font-display); font-size: 50px; font-weight: 300; color: var(--cream-dark); margin-bottom: 16px; transition: color 0.35s; }
.val-card h4 { font-family: var(--font-display); font-size: 20px; color: var(--dark); margin-bottom: 10px; transition: color 0.35s; }
.val-card p { font-size: 13px; color: var(--text-muted); line-height: 1.8; font-weight: 300; transition: color 0.35s; }

/* ====== LOCATIONS ====== */
.locations-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; background: rgba(0,0,0,0.07); }
.loc-card { background: var(--ivory); padding: 30px 22px; text-align: center; transition: all 0.3s; }
.loc-card:hover { background: var(--dark); transform: translateY(-3px); }
.loc-card:hover h4, .loc-card:hover p, .loc-card:hover .loc-flag { color: rgba(255,255,255,0.85); }
.loc-flag { font-size: 26px; margin-bottom: 10px; display: block; }
.loc-card h4 { font-family: var(--font-display); font-size: 19px; color: var(--dark); margin-bottom: 3px; font-weight: 400; transition: color 0.3s; }
.loc-card p { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); transition: color 0.3s; }

/* ====== SERVICES DETAIL ====== */
.svc-detail-row { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding: 80px 0; border-bottom: 1px solid var(--border); }
.svc-detail-row:last-child { border-bottom: none; }
.svc-detail-row.rev { direction: rtl; }
.svc-detail-row.rev > * { direction: ltr; }
.svc-vis { background: var(--dark); border-radius: 2px; min-height: 360px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.svc-vis::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(184,134,11,0.05) 1px,transparent 1px), linear-gradient(90deg,rgba(184,134,11,0.05) 1px,transparent 1px); background-size: 40px 40px; }
.svc-vis svg { position: relative; z-index: 1; }
.svc-det-num { font-family: var(--font-display); font-size: 70px; font-weight: 300; color: var(--cream-dark); line-height: 1; margin-bottom: 8px; }
.svc-det-text h3 { font-family: var(--font-display); font-size: 38px; color: var(--dark); margin-bottom: 20px; font-weight: 300; }
.svc-det-text p { font-size: 14px; color: var(--text-muted); line-height: 1.95; margin-bottom: 14px; font-weight: 300; }
.svc-feats { list-style: none; margin: 24px 0; }
.svc-feats li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--text-mid); padding: 9px 0; border-bottom: 1px solid var(--border); font-weight: 300; }
.svc-feats li::before { content: ''; width: 5px; height: 5px; background: var(--gold); flex-shrink: 0; }
.proc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; background: rgba(0,0,0,0.07); }
.proc-step { background: var(--ivory); padding: 38px 28px; }
.proc-n { font-family: var(--font-display); font-size: 54px; font-weight: 300; color: var(--cream-dark); margin-bottom: 16px; }
.proc-step h4 { font-family: var(--font-display); font-size: 20px; color: var(--dark); margin-bottom: 10px; }
.proc-step p { font-size: 13px; color: var(--text-muted); line-height: 1.8; font-weight: 300; }

/* ====== CONTACT ====== */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.6fr; gap: 90px; }
.contact-info h2 { font-family: var(--font-display); font-size: 38px; font-weight: 300; color: var(--dark); margin-bottom: 18px; }
.contact-info > p { font-size: 14px; color: var(--text-muted); line-height: 1.95; margin-bottom: 40px; font-weight: 300; }
.c-detail { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 26px; }
.c-ico { width: 42px; height: 42px; background: var(--dark); border-radius: 2px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.c-txt strong { display: block; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; font-weight: 500; }
.c-txt a, .c-txt span { font-size: 14px; color: var(--text-mid); text-decoration: none; font-weight: 300; }
.c-txt a:hover { color: var(--gold); }
.c-form { background: var(--cream); padding: 50px; border-radius: 1px; }
.c-form h3 { font-family: var(--font-display); font-size: 28px; color: var(--dark); margin-bottom: 30px; font-weight: 400; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.fg label { font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-muted); }
.fg input, .fg textarea, .fg select { padding: 12px 16px; border: 1px solid var(--border); background: var(--white); font-family: var(--font-body); font-size: 14px; border-radius: 1px; outline: none; transition: border 0.2s; color: var(--text); font-weight: 300; }
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--gold); }
.fg textarea { height: 130px; resize: vertical; }
.btn-submit { width: 100%; padding: 15px; background: var(--dark); color: #fff; border: none; font-family: var(--font-body); font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; cursor: pointer; border-radius: 1px; transition: all 0.25s; }
.btn-submit:hover { background: var(--dark-mid); }
.map-placeholder { background: var(--dark-mid); border-radius: 2px; height: 280px; border: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 14px; margin-top: 32px; }
.map-placeholder p { color: rgba(255,255,255,0.3); font-size: 13px; margin: 0; }

/* PROJECTS PAGE */
.cat-section { margin-bottom: 80px; }
.cat-header { display: flex; align-items: baseline; gap: 20px; margin-bottom: 32px; padding-bottom: 14px; border-bottom: 2px solid var(--gold); }
.cat-header h2 { font-family: var(--font-display); font-size: 32px; font-weight: 300; color: var(--dark); }
.cat-header h2 em { font-style: italic; color: var(--gold); }
.cat-count { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); }
.proj-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.proj-row.one { grid-template-columns: 400px; }
.proj-row.two { grid-template-columns: repeat(2,1fr); max-width: 700px; }
.pc { background: var(--ivory); border: 1px solid var(--border); border-radius: 1px; overflow: hidden; transition: all 0.35s; position: relative; }
.pc::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.35s; }
.pc:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.pc:hover::before { transform: scaleX(1); }
.pc-vis { height: 175px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; background: var(--dark); }
.pc-vis::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,rgba(184,134,11,0.05) 1px,transparent 1px); background-size: 20px 20px; }
.pc-body { padding: 24px; }
.pc-type { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 9px; display: block; }
.pc h3 { font-family: var(--font-display); font-size: 20px; color: var(--dark); margin-bottom: 0; font-weight: 400; }
.img-coming { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(184,134,11,0.45); margin-top: 8px; display: block; }

/* GALLERY PAGE */
.gal-card { break-inside: avoid; margin-bottom: 14px; position: relative; overflow: hidden; border-radius: 1px; cursor: pointer; }
.gal-placeholder { width: 100%; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px; transition: transform 0.5s var(--ease); }
.gal-card:hover .gal-placeholder { transform: scale(1.05); }
.gal-ov { position: absolute; inset: 0; background: linear-gradient(to top,rgba(18,8,8,0.85) 0%,rgba(18,8,8,0.1) 50%,transparent 100%); opacity: 0; transition: opacity 0.35s; display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; }
.gal-card:hover .gal-ov { opacity: 1; }
.gal-ov-title { font-family: var(--font-display); font-size: 16px; color: #fff; font-style: italic; margin-bottom: 3px; }
.gal-ov-cat { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }

/* WORLD BANNER */
.world-banner { background: var(--dark); padding: 60px 48px; text-align: center; }
.world-banner h3 { font-family: var(--font-display); font-size: 30px; color: #fff; font-weight: 300; margin-bottom: 8px; }
.world-banner p { color: rgba(255,255,255,0.4); font-size: 14px; font-weight: 300; }

/* ====== ANIMATIONS ====== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .vals-grid, .proc-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid, .about-split, .contact-wrap, .svc-detail-row { grid-template-columns: 1fr; gap: 50px; }
  .svc-detail-row.rev { direction: ltr; }
  .hero-stats { flex-wrap: wrap; gap: 28px; }
  .hero-content { padding: 80px 24px 50px; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-copy { text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .c-form { padding: 30px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .about-nums { grid-template-columns: 1fr 1fr; }
  .locations-grid { grid-template-columns: repeat(2,1fr); }
  .proj-row.one { grid-template-columns: 1fr; }
  .proj-row.two { grid-template-columns: 1fr 1fr; max-width: 100%; }
  .sec-inner, .nav-inner, .mobile-menu, .world-banner, .cta-sec, .pg-hero, .footer { padding-left: 24px; padding-right: 24px; }
}
@media (max-width: 640px) {
  .svc-grid, .vals-grid, .proc-grid, .proj-row, .proj-row.two { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .locations-grid { grid-template-columns: 1fr 1fr; }
}





/* ===== FINAL HEADER LOGO FIT - DO NOT REMOVE ===== */
.navbar,
.nav-inner{
  overflow: visible !important;
}

.navbar .logo,
.logo{
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  flex: 0 0 260px !important;
  width: 260px !important;
  min-width: 260px !important;
  max-width: 260px !important;
  height: 86px !important;
  min-height: 86px !important;
  overflow: visible !important;
  padding: 0 !important;
  margin: 0 !important;
}

.navbar .logo img,
.logo img,
.site-logo{
  display: block !important;
  width: 260px !important;
  height: 86px !important;
  max-width: 260px !important;
  max-height: 86px !important;
  object-fit: contain !important;
  object-position: left center !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
}


.logo{
  width:300px;
  height:90px;
  display:flex;
  align-items:center;
}
.logo-img{
  width:300px;
  height:auto;
}


/* FINAL SAFE LOGO FIX */
.logo{
  display:flex;
  align-items:center;
  height:80px;
}

.logo-img{
  height:70px;   /* control only height */
  width:auto;    /* keep ratio */
  max-width:100%;
  object-fit:contain;
}

/* remove overflow issues */
.navbar, .nav-inner{
  overflow:visible;
}


/* FINAL REMOVE FOOTER STRIP */
footer,
.footer,
.footer-inner,
.footer-logo,
.footer-nav{
  display:none !important;
  height:0 !important;
  padding:0 !important;
  margin:0 !important;
  overflow:hidden !important;
}


/* ===== ABSOLUTE LEFT SMALL PREMIUM LOGO v31 ===== */
.navbar{
  position: sticky !important;
  top: 0 !important;
  height: 72px !important;
  min-height: 72px !important;
  padding: 0 !important;
  overflow: visible !important;
}
.nav-inner{
  position: relative !important;
  max-width: none !important;
  width: 100% !important;
  height: 72px !important;
  margin: 0 !important;
  padding: 0 42px 0 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  overflow: visible !important;
}
.logo{
  position: absolute !important;
  left: 18px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 118px !important;
  height: 46px !important;
  min-width: 118px !important;
  max-width: 118px !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  overflow: visible !important;
  z-index: 20 !important;
}
.logo img{
  width: 118px !important;
  height: auto !important;
  max-width: 118px !important;
  max-height: 46px !important;
  object-fit: contain !important;
  object-position: left center !important;
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
}
.nav-links{
  margin-left: 170px !important;
  margin-right: 0 !important;
}

/* ===== FLOATING ICON CONTACT BUTTONS ===== */
.floating-contact-icons{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:9999;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.float-icon{
  width:52px;
  height:52px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  box-shadow:0 16px 36px rgba(0,0,0,.28);
  transition:transform .25s ease, box-shadow .25s ease;
}
.float-icon:hover{
  transform:translateY(-3px);
  box-shadow:0 20px 44px rgba(0,0,0,.34);
}
.float-icon svg{
  width:25px;
  height:25px;
  fill:#fff;
}
.whatsapp-icon{background:#25D366;}
.call-icon{
  background:#120808;
  border:1px solid rgba(184,134,11,.55);
}

@media(max-width:768px){
  .navbar{height:62px !important; min-height:62px !important;}
  .nav-inner{height:62px !important; padding-right:16px !important;}
  .logo{
    left:12px !important;
    width:96px !important;
    height:40px !important;
    min-width:96px !important;
    max-width:96px !important;
  }
  .logo img{
    width:96px !important;
    max-width:96px !important;
    max-height:40px !important;
  }
  .floating-contact-icons{
    right:14px;
    bottom:14px;
    gap:9px;
  }
  .float-icon{
    width:46px;
    height:46px;
  }
  .float-icon svg{
    width:22px;
    height:22px;
  }
}




/* CONTACT FORM ORIGINAL DESIGN CONNECTED */
.contact-form-original{
  display:block;
  width:100%;
}
.contact-form-original .form-row{
  display:grid;
}
.contact-form-original button{
  cursor:pointer;
}


/* FINAL LOGO SIZE FIX v36 */
.logo{
  width:90px !important;
  min-width:90px !important;
  max-width:90px !important;
  height:38px !important;
}

.logo img{
  width:90px !important;
  max-width:90px !important;
  max-height:38px !important;
  height:auto !important;
}

/* mobile */
@media(max-width:768px){
  .logo{
    width:70px !important;
    min-width:70px !important;
    height:30px !important;
  }
  .logo img{
    width:70px !important;
    max-width:70px !important;
    max-height:30px !important;
  }
}


/* HARD OVERRIDE LOGO SIZE v37 */
.navbar .logo,
.navbar .logo img{
  width:60px !important;
  max-width:60px !important;
  height:auto !important;
}

.navbar .logo{
  min-width:60px !important;
}

@media(max-width:768px){
  .navbar .logo,
  .navbar .logo img{
    width:50px !important;
    max-width:50px !important;
  }
}


/* HOSTINGER FLOATING ICON SIZE FIX v38 */
html body .floating-contact-icons{
  position:fixed !important;
  right:18px !important;
  bottom:18px !important;
  z-index:999999 !important;
  display:flex !important;
  flex-direction:column !important;
  gap:10px !important;
  width:auto !important;
  height:auto !important;
  max-width:60px !important;
  overflow:visible !important;
}
html body .floating-contact-icons .float-icon{
  width:50px !important;
  height:50px !important;
  min-width:50px !important;
  min-height:50px !important;
  max-width:50px !important;
  max-height:50px !important;
  padding:0 !important;
  margin:0 !important;
  border-radius:50% !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  overflow:hidden !important;
  line-height:1 !important;
  box-sizing:border-box !important;
}
html body .floating-contact-icons .float-icon svg,
html body .floating-contact-icons .float-icon svg *,
html body .floating-contact-icons svg{
  width:24px !important;
  height:24px !important;
  min-width:24px !important;
  min-height:24px !important;
  max-width:24px !important;
  max-height:24px !important;
  display:block !important;
  flex:0 0 24px !important;
  overflow:hidden !important;
}
html body .floating-contact-icons .whatsapp-icon{background:#25D366 !important;}
html body .floating-contact-icons .call-icon{background:#120808 !important;border:1px solid rgba(184,134,11,.55) !important;}

@media(max-width:640px){
  html body .floating-contact-icons{
    right:12px !important;
    bottom:12px !important;
    gap:8px !important;
    max-width:52px !important;
  }
  html body .floating-contact-icons .float-icon{
    width:44px !important;
    height:44px !important;
    min-width:44px !important;
    min-height:44px !important;
    max-width:44px !important;
    max-height:44px !important;
  }
  html body .floating-contact-icons .float-icon svg,
  html body .floating-contact-icons svg{
    width:21px !important;
    height:21px !important;
    min-width:21px !important;
    min-height:21px !important;
    max-width:21px !important;
    max-height:21px !important;
  }
}


/* GOOGLE SHEET FORM STATUS */
.form-status{
  margin-top:16px;
  padding:14px 16px;
  font-size:13px;
  line-height:1.5;
  border-left:3px solid var(--gold);
  background:rgba(184,134,11,0.08);
}
.form-status.success{
  color:#2d6a4f;
  border-left-color:#2d6a4f;
  background:#f0f7f0;
}
.form-status.error{
  color:#7a1f1f;
  border-left-color:#7a1f1f;
  background:#fff0f0;
}
.btn-submit:disabled{
  opacity:.65;
  cursor:not-allowed;
}


/* ===== LATEST FEATURED PROJECTS FIX ===== */
.featured-premium{
  padding:110px 8%;
  background:#120808;
  color:#fff;
  text-align:center;
}
.featured-premium h2{
  font-family:"Cormorant Garamond",serif;
  font-size:clamp(42px,6vw,72px);
  font-weight:300;
  margin:18px 0;
}
.section-intro.dark{
  color:rgba(255,255,255,.55);
}
.featured-grid-premium{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:24px;
  margin-top:55px;
}
.featured-card-premium{
  position:relative;
  display:block;
  height:470px;
  overflow:hidden;
  color:#fff;
  text-decoration:none;
  background:#1b0d0d;
}
.featured-card-premium img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.6s ease;
}
.featured-card-premium:hover img{
  transform:scale(1.08);
}
.featured-card-premium div{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:30px;
  text-align:left;
  background:linear-gradient(transparent,rgba(0,0,0,.9));
}
.featured-card-premium span{
  color:#b8860b;
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
}
.featured-card-premium h3{
  font-family:"Cormorant Garamond",serif;
  font-size:34px;
  font-weight:400;
  color:#fff;
  margin:8px 0 0;
}
.project-view-btn{
  display:inline-block;
  margin-top:48px;
}

/* ===== FLOATING CONTACT ICON FIX ===== */
.floating-contact-icons{
  position:fixed !important;
  right:18px !important;
  bottom:18px !important;
  z-index:999999 !important;
  display:flex !important;
  flex-direction:column !important;
  gap:10px !important;
}
.float-icon{
  width:52px !important;
  height:52px !important;
  min-width:52px !important;
  min-height:52px !important;
  max-width:52px !important;
  max-height:52px !important;
  border-radius:50% !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  padding:0 !important;
  margin:0 !important;
  box-sizing:border-box !important;
  overflow:hidden !important;
  box-shadow:0 16px 36px rgba(0,0,0,.28);
}
.float-icon svg{
  width:24px !important;
  height:24px !important;
  min-width:24px !important;
  min-height:24px !important;
  max-width:24px !important;
  max-height:24px !important;
  fill:#fff !important;
  display:block !important;
  flex:0 0 24px !important;
}
.whatsapp-icon{background:#25D366 !important;}
.call-icon{
  background:#120808 !important;
  border:1px solid rgba(184,134,11,.55) !important;
}

@media(max-width:900px){
  .featured-grid-premium{
    grid-template-columns:1fr;
  }
  .featured-card-premium{
    height:360px;
  }
  .featured-premium{
    padding:75px 24px;
  }
}
@media(max-width:640px){
  .floating-contact-icons{
    right:12px !important;
    bottom:12px !important;
    gap:8px !important;
  }
  .float-icon{
    width:46px !important;
    height:46px !important;
    min-width:46px !important;
    min-height:46px !important;
    max-width:46px !important;
    max-height:46px !important;
  }
  .float-icon svg{
    width:22px !important;
    height:22px !important;
    min-width:22px !important;
    min-height:22px !important;
    max-width:22px !important;
    max-height:22px !important;
  }
}


/* ENQUIRY FORM GOOGLE SHEET STATUS */
.form-status{
  margin-top:16px;
  padding:14px 16px;
  font-size:13px;
  line-height:1.5;
  border-left:3px solid #b8860b;
  background:rgba(184,134,11,0.08);
}
.form-status.success{
  color:#2d6a4f;
  border-left-color:#2d6a4f;
  background:#f0f7f0;
}
.form-status.error{
  color:#7a1f1f;
  border-left-color:#7a1f1f;
  background:#fff0f0;
}
.btn-submit:disabled{
  opacity:.65;
  cursor:not-allowed;
}
/* MOBILE TEAM SECTION FIX */
@media (max-width: 768px) {
  .team-grid,
  .team-section .team-grid,
  .team-wrap,
  .team-cards {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .team-card,
  .team-member,
  .team-item {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }

  .team-card h3,
  .team-card h4,
  .team-card p,
  .team-member h3,
  .team-member h4,
  .team-member p,
  .team-item h3,
  .team-item h4,
  .team-item p {
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    text-align: center !important;
  }

  .team-card h3,
  .team-card h4 {
    font-size: 30px !important;
    line-height: 1.2 !important;
  }

  .team-card p {
    font-size: 16px !important;
    line-height: 1.7 !important;
    letter-spacing: 0 !important;
  }

  .team-role,
  .member-role,
  .team-card .role {
    letter-spacing: 2px !important;
    line-height: 1.6 !important;
    font-size: 12px !important;
 
  }
/* ===== CLEAN MOBILE FIX: ABOUT TEAM SECTION ===== */
@media (max-width: 768px) {

  #teamGrid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    width: 100% !important;
    padding: 0 18px !important;
    box-sizing: border-box !important;
  }

  #teamGrid .team-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 28px 22px !important;
    box-sizing: border-box !important;
  }

  #teamGrid .team-info {
    width: 100% !important;
    text-align: center !important;
  }

  #teamGrid .team-info h4 {
    font-size: 26px !important;
    line-height: 1.2 !important;
    word-break: normal !important;
    white-space: normal !important;
  }

  #teamGrid .team-role {
    font-size: 11px !important;
    letter-spacing: 1.5px !important;
    line-height: 1.6 !important;
    word-break: normal !important;
    white-space: normal !important;
  }

  #teamGrid .team-bio {
    font-size: 14px !important;
    line-height: 1.75 !important;
    word-break: normal !important;
    white-space: normal !important;
    overflow-wrap: normal !important;
  }
}
  /* ===== AESCONS FULL MOBILE RESPONSIVE FIX ===== */
@media (max-width: 768px) {

  html, body {
    width: 100% !important;
    overflow-x: hidden !important;
  }

  section,
  .sec,
  .sec-inner,
  .container {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .sec,
  .home-services-premium,
  .why-premium,
  .featured-premium,
  .gallery-premium,
  .cta-premium,
  .project-intro,
  .project-gallery,
  .design-concept,
  .project-cta {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  h1,
  .hero-title,
  .pg-hero h1,
  .home-hero-premium h1 {
    font-size: 42px !important;
    line-height: 1.05 !important;
  }

  h2,
  .sec-title,
  .home-services-premium h2,
  .why-premium h2,
  .featured-premium h2,
  .gallery-premium h2,
  .cta-premium h2 {
    font-size: 36px !important;
    line-height: 1.12 !important;
  }

  p,
  .sec-desc,
  .section-intro {
    font-size: 15px !important;
    line-height: 1.75 !important;
  }

  .hero-stats,
  .hero-stats-premium,
  .svc-grid,
  .service-premium-grid,
  .why-grid,
  .why-premium,
  .featured-grid-premium,
  .projects-grid,
  .proj-grid,
  .gallery-premium-grid,
  .gallery-grid,
  .project-intro,
  .about-grid,
  .locations-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .svc-card,
  .service-premium-card,
  .proj-card,
  .featured-card-premium,
  .why-item,
  .why-list-premium div,
  .location-card,
  .loc-card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .featured-card-premium,
  .project-card {
    height: 330px !important;
  }

  .featured-card-premium img,
  .project-card img,
  .gallery-premium-grid img,
  .gallery-grid img {
    width: 100% !important;
    height: 280px !important;
    object-fit: cover !important;
  }

  .hero-cta,
  .hero-actions,
  .cta-btns,
  .cta-premium div {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 14px !important;
  }

  .btn-gold,
  .btn-outline-light,
  .btn-outline-dark {
    width: 100% !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  #teamGrid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    padding: 0 18px !important;
    box-sizing: border-box !important;
  }

  #teamGrid .team-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 28px 22px !important;
    box-sizing: border-box !important;
  }

  #teamGrid .team-info,
  #teamGrid .team-info h4,
  #teamGrid .team-role,
  #teamGrid .team-bio {
    text-align: center !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }

  #teamGrid .team-info h4 {
    font-size: 26px !important;
    line-height: 1.2 !important;
  }

  #teamGrid .team-role {
    font-size: 11px !important;
    letter-spacing: 1.5px !important;
    line-height: 1.6 !important;
  }

  #teamGrid .team-bio {
    font-size: 14px !important;
    line-height: 1.75 !important;
  }

  .floating-contact-icons {
    right: 12px !important;
    bottom: 12px !important;
  }
}


  