/* ============ VARIABLES ============ */
:root {
  --dark: #16191c;
  --dark-2: #1f2327;
  --wood: #b5732e;
  --wood-dark: #8a541f;
  --accent: #e8a13b;
  --cream: #f7f4ee;
  --text-light: #6b7178;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 20px 45px -20px rgba(22, 25, 28, 0.35);
  --transition: 0.35s cubic-bezier(.4,0,.2,1);
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

.icon-svg { width: 1em; height: 1em; fill: currentColor; display: inline-block; vertical-align: -0.14em; flex-shrink: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; color: var(--dark); }

/* ============ PRELOADER ============ */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
#preloader.done { opacity: 0; visibility: hidden; }
.loader-house {
  font-size: 48px; color: var(--accent);
  animation: pulse 1.1s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { transform: scale(1); opacity: .7;} 50% { transform: scale(1.18); opacity: 1;} }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--wood); color: var(--white); box-shadow: 0 12px 24px -8px rgba(181,115,46,.55); }
.btn-primary:hover { background: var(--wood-dark); transform: translateY(-2px); }
.btn-outline { border-color: rgba(255,255,255,.35); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-ghost { background: rgba(255,255,255,.12); color: var(--white); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* ============ HEADER ============ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 18px 0;
  transition: var(--transition);
}
.header.scrolled { background: rgba(22,25,28,.92); backdrop-filter: blur(10px); padding: 12px 0; box-shadow: 0 10px 30px -15px rgba(0,0,0,.5); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700; font-size: 19px; color: var(--white); flex-shrink: 0; }
.logo i { font-size: 26px; color: var(--accent); }
.logo em { font-style: normal; color: var(--accent); }

.nav { display: flex; align-items: center; gap: 30px; margin: 0 auto; }
.nav > a { color: rgba(255,255,255,.82); font-weight: 500; font-size: 15px; position: relative; padding: 6px 0; transition: var(--transition); }
.nav > a::after { content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--accent); transition: var(--transition); }
.nav > a:hover, .nav > a.active { color: var(--white); }
.nav > a:hover::after, .nav > a.active::after { width: 100%; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex; align-items: center; gap: 6px;
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,.82); font-weight: 500; font-size: 15px;
  font-family: var(--font-body); padding: 6px 0; transition: var(--transition);
}
.nav-dropdown-toggle i { font-size: 17px; transition: transform .3s ease; }
.nav-dropdown:hover .nav-dropdown-toggle, .nav-dropdown.active .nav-dropdown-toggle, .nav-dropdown-toggle.current-section { color: var(--white); }
.nav-dropdown.active .nav-dropdown-toggle i { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--white); border-radius: 12px; padding: 10px;
  min-width: 240px; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transition: var(--transition);
  display: flex; flex-direction: column; gap: 2px;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: flex; align-items: center; gap: 10px;
  color: var(--dark) !important; font-size: 14.5px; font-weight: 500;
  padding: 11px 14px; border-radius: 8px; transition: var(--transition);
}
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a:hover { background: var(--cream); color: var(--wood) !important; }
.nav-dropdown-menu a i { font-size: 19px; color: var(--wood); flex-shrink: 0; }

.header-cta { flex-shrink: 0; display: flex; align-items: center; gap: 8px; }
.nav-mobile-wa { display: none; }
.header-cta-call {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--wood); color: var(--white); font-size: 19px;
  transition: var(--transition);
}
.header-cta-call:hover { background: var(--wood-dark); transform: translateY(-2px); }
.header-cta-msg {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 22px;
  transition: var(--transition);
}
.header-cta-msg.whatsapp { background: #25D366; }
.header-cta-msg:hover { transform: translateY(-2px); filter: brightness(1.08); }
.header-cta-msg i, .float-msg i { display: flex; }
.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover { background: #1ebe5a; transform: translateY(-2px); }
.btn-call { background: var(--wood); color: var(--white); }
.btn-call:hover { background: var(--wood-dark); transform: translateY(-2px); }
.messenger-btns { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.messenger-btns.stack { flex-direction: column; align-items: stretch; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* ============ HERO ============ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; padding: 100px 0 110px; }
.hero-slideshow { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.6s ease;
}
.hero-slide:first-child { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,17,19,.55) 0%, rgba(15,17,19,.55) 40%, rgba(15,17,19,.85) 100%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; color: var(--white); max-width: 800px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  padding: 8px 18px; border-radius: 999px; font-size: 14px; font-weight: 600;
  margin-bottom: 22px; backdrop-filter: blur(6px); color: var(--accent);
}
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; color: var(--white); margin-bottom: 22px; }
.hero h1 span { color: var(--accent); }
.hero-sub { font-size: 18px; color: rgba(255,255,255,.85); max-width: 620px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 44px; flex-wrap: wrap; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-family: var(--font-head); font-size: 32px; font-weight: 800; color: var(--accent); }
.hero-stats span { font-size: 14px; color: rgba(255,255,255,.75); }

.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: var(--white); font-size: 26px;
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,.4);
  display: flex; align-items: center; justify-content: center;
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ============ SECTIONS ============ */
.section { padding: 110px 0; }
.section-alt { background: var(--cream); }
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.tag {
  display: inline-block; color: var(--wood); font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; font-size: 13px; margin-bottom: 12px;
}
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 800; margin-bottom: 16px; }
.lead a, .type-intro .lead a { color: var(--wood); font-weight: 600; }
.type-intro .lead a { text-decoration: underline; text-underline-offset: 2px; }
.page-hero p a { color: var(--accent); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

[data-aos] { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
[data-aos].in-view { opacity: 1; transform: translateY(0); }

/* ============ ABOUT ============ */
.about-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: center; }
.about-media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-media img { border-radius: var(--radius); aspect-ratio: 4/3.4; object-fit: cover; }
.about-media-badge {
  position: absolute; bottom: 18px; left: 18px; right: 18px;
  background: rgba(22,25,28,.85); backdrop-filter: blur(8px);
  color: var(--white); border-radius: 12px; padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
}
.about-media-badge i { font-size: 26px; color: var(--accent); }
.about-media-badge strong { display: block; font-size: 15px; }
.about-media-badge span { font-size: 13px; color: rgba(255,255,255,.7); }

.about-text h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); font-weight: 800; margin-bottom: 18px; }
.about-list { margin: 22px 0 30px; display: flex; flex-direction: column; gap: 12px; }
.about-list li { display: flex; gap: 10px; align-items: flex-start; color: var(--dark); font-size: 15.5px; }
.about-list i { color: var(--wood); font-size: 20px; margin-top: 1px; flex-shrink: 0; }

/* ============ SERVICES ============ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
  background: var(--white); border: 1px solid #ececec; border-radius: var(--radius);
  padding: 34px 28px; transition: var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.service-icon {
  width: 58px; height: 58px; border-radius: 14px;
  background: linear-gradient(135deg, var(--wood), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--white); margin-bottom: 20px;
}
.service-card h3 { font-size: 19px; margin-bottom: 10px; }
.service-card p { color: var(--text-light); font-size: 15px; }
.card-link-cta { display: inline-flex; align-items: center; gap: 6px; color: var(--wood); font-weight: 600; font-size: 14px; margin-top: 16px; transition: var(--transition); }
.service-card-link:hover .card-link-cta { gap: 10px; }

/* ============ GALLERY ============ */
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  grid-auto-flow: dense;
}
.gallery-item {
  position: relative; border-radius: 12px; overflow: hidden; cursor: pointer;
  aspect-ratio: 1/1; background: #eee;
}
.gallery-item.wide { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item::after {
  content: '\ea28'; font-family: 'boxicons'; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--white);
  background: rgba(22,25,28,0); opacity: 0; transition: var(--transition);
}
.gallery-item:hover::after { opacity: 1; background: rgba(22,25,28,.4); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item.hidden-item { display: none; }

.gallery-more { text-align: center; margin-top: 40px; }
.gallery-more .btn-outline { color: var(--dark); border-color: #ddd; }
.gallery-more .btn-outline:hover { background: var(--dark); color: var(--white); }
.gallery-more.all-shown { display: none; }

/* ============ PROCESS ============ */
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.process-card {
  background: var(--white); border-radius: var(--radius); padding: 30px 22px;
  border: 1px solid #ececec; transition: var(--transition); position: relative;
}
.process-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.process-num { font-family: var(--font-head); font-size: 34px; font-weight: 800; color: var(--accent); opacity: .8; }
.process-card h3 { font-size: 17px; margin: 14px 0 8px; }
.process-card p { color: var(--text-light); font-size: 14px; }

/* ============ CONTACT ============ */
.contact-section { background: var(--dark); color: var(--white); position: relative; overflow: hidden; }
.contact-section::before {
  content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,161,59,.18), transparent 70%);
  top: -200px; right: -150px;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; position: relative; z-index: 1; }
.contact-section .tag { color: var(--accent); }
.contact-section h2 { color: var(--white); font-size: clamp(1.8rem, 3.4vw, 2.5rem); font-weight: 800; margin-bottom: 16px; }
.contact-section h2 span { color: var(--accent); }
.contact-section .lead { color: rgba(255,255,255,.72); margin-bottom: 34px; }

.contact-items { display: flex; flex-direction: column; gap: 14px; }
.contact-item {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: 16px 18px; transition: var(--transition);
}
.contact-item:not(.contact-item-static):hover { background: rgba(255,255,255,.12); transform: translateX(4px); }
.contact-item i { font-size: 24px; color: var(--accent); flex-shrink: 0; }
.contact-item strong { display: block; font-size: 15px; }
.contact-item span { font-size: 14px; color: rgba(255,255,255,.65); }

/* ============ FOOTER ============ */
.footer { background: #0f1113; color: rgba(255,255,255,.75); padding: 50px 0 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer .logo { color: var(--white); }
.footer-nav { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-nav a { font-size: 14.5px; transition: var(--transition); }
.footer-nav a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--wood); color: var(--white); }
.footer-keywords { padding: 26px 0 8px; }
.footer-keywords nav { display: flex; flex-wrap: wrap; gap: 10px 18px; justify-content: center; }
.footer-keywords a { font-size: 13.5px; color: rgba(255,255,255,.55); transition: var(--transition); }
.footer-keywords a:hover { color: var(--accent); }
.footer-bottom { padding: 22px 0; text-align: center; font-size: 13.5px; color: rgba(255,255,255,.4); }

/* ============ MESSENGER FLOAT ============ */
.float-messengers {
  position: fixed; bottom: 26px; right: 26px; z-index: 350;
  display: flex; flex-direction: column-reverse; gap: 12px;
}
.float-msg {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 28px;
  box-shadow: 0 12px 26px -8px rgba(0,0,0,.45);
  transition: var(--transition);
}
.float-msg:hover { transform: translateY(-2px) scale(1.05); }
.float-msg.whatsapp { background: #25D366; animation: floatPulse 2.4s infinite; }
.float-msg.call { background: var(--wood); font-size: 24px; }
@keyframes floatPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,.5), 0 12px 26px -8px rgba(0,0,0,.45); } 50% { box-shadow: 0 0 0 12px rgba(37,211,102,0), 0 12px 26px -8px rgba(0,0,0,.45); } }

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed; inset: 0; background: rgba(10,11,13,.95); z-index: 2000;
  display: none; align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: 10px; box-shadow: 0 30px 60px rgba(0,0,0,.5); }
.lightbox-close, .lightbox-nav {
  position: absolute; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: var(--white); border-radius: 50%; width: 48px; height: 48px; font-size: 24px;
  display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition);
}
.lightbox-close:hover, .lightbox-nav:hover { background: var(--wood); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ============ PAGE HERO (subpages) ============ */
.page-hero {
  position: relative; padding: 170px 0 90px; overflow: hidden;
  background: var(--dark); color: var(--white);
}
.page-hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: .38;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,17,19,.55), rgba(15,17,19,.95));
}
.page-hero-content { position: relative; z-index: 1; max-width: 760px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,.6); margin-bottom: 20px; }
.breadcrumb a { color: rgba(255,255,255,.8); transition: var(--transition); }
.breadcrumb a:hover { color: var(--accent); }
.page-hero h1 { font-size: clamp(2rem, 4.4vw, 3.2rem); font-weight: 800; color: var(--white); margin-bottom: 16px; }
.page-hero p { font-size: 17.5px; color: rgba(255,255,255,.82); max-width: 600px; margin-bottom: 30px; }
.page-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============ FEATURE LIST (type pages) ============ */
.type-intro { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: start; }
.type-intro .lead { color: var(--dark); font-size: 17px; margin-bottom: 26px; }
.feature-list { display: flex; flex-direction: column; gap: 16px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .f-icon {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--wood), var(--accent));
  display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 20px;
}
.feature-list strong, .feature-list h3 { display: block; font-size: 15.5px; margin-bottom: 3px; font-family: var(--font-head); font-weight: 700; color: var(--dark); line-height: 1.3; }
.feature-list span { font-size: 14.5px; color: var(--text-light); }
.type-intro h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 800; margin-bottom: 16px; }
.seo-copy { color: var(--dark); font-size: 16px; line-height: 1.7; }
.seo-copy p { margin-bottom: 14px; color: var(--text-light); }
.seo-copy a { color: var(--wood); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.seo-copy a:hover { color: var(--wood-dark); }
.options-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.option-card { background: var(--white); border: 1px solid #ececec; border-radius: var(--radius); padding: 26px 22px; }
.section-alt .option-card { background: var(--white); }
.options-grid .option-card { background: var(--cream); }
.section-alt .options-grid .option-card { background: var(--white); }
.option-card h3 { font-size: 17px; margin-bottom: 10px; }
.option-card p { font-size: 14.5px; color: var(--text-light); }
.option-card a { color: var(--wood); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 4px; margin-top: 12px; }
.option-card a:hover { color: var(--wood-dark); }
.related-links { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.related-links a {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cream); border: 1px solid #e6e1d8; color: var(--dark);
  padding: 12px 18px; border-radius: 999px; font-weight: 600; font-size: 14.5px;
  transition: var(--transition);
}
.related-links a:hover { background: var(--wood); color: var(--white); border-color: var(--wood); }
.cities-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  max-width: 960px;
  margin: 0 auto;
  padding: 0;
}
.cities-grid a {
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background: var(--cream); border: 1px solid #e6e1d8; color: var(--dark);
  padding: 16px 12px; border-radius: var(--radius);
  font-weight: 600; font-size: 14.5px;
  transition: var(--transition);
}
.section-alt .cities-grid a { background: var(--white); }
.cities-grid a:hover { background: var(--wood); color: var(--white); border-color: var(--wood); }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--white); border: 1px solid #ececec; border-radius: var(--radius); padding: 22px 24px; }
.section-alt .faq-item { background: var(--white); }
.faq-item h3 { font-size: 17px; margin-bottom: 8px; }
.faq-item p { font-size: 14.5px; color: var(--text-light); margin: 0; }
.faq-item a { color: var(--wood); font-weight: 600; }
.type-side {
  background: var(--cream); border-radius: var(--radius); padding: 30px;
}
.type-side h3 { font-size: 18px; margin-bottom: 18px; }
.spec-row { display: flex; justify-content: space-between; gap: 14px; padding: 12px 0; border-bottom: 1px solid #e6e1d8; font-size: 14.5px; }
.spec-row:last-child { border-bottom: none; }
.spec-row span:first-child { color: var(--text-light); }
.spec-row span:last-child { font-weight: 600; text-align: right; }
.type-side .btn { margin-top: 20px; }
.type-side .messenger-btns { margin-top: 20px; }
.type-side .messenger-btns .btn { margin-top: 0; }

/* ============ CTA BANNER (WhatsApp) ============ */
.cta-banner {
  background: linear-gradient(120deg, #1c2b22, #16191c 60%);
  border-radius: 22px; padding: 50px 44px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  color: var(--white);
}
.cta-banner::before {
  content: ''; position: absolute; width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,211,102,.22), transparent 70%);
  top: -140px; right: -80px;
}
.cta-banner-text { position: relative; z-index: 1; max-width: 520px; }
.cta-banner-text h2, .cta-banner-text h3 { font-size: 26px; font-weight: 800; margin-bottom: 8px; color: var(--white); }
.cta-banner-text p { color: rgba(255,255,255,.72); font-size: 15.5px; }
.cta-banner-actions { position: relative; z-index: 1; display: flex; gap: 14px; flex-wrap: wrap; }
.btn-lg { padding: 17px 32px; font-size: 16px; }

/* ============ CONTACT PAGE (message-only) ============ */
.contact-hub { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 720px; margin: 0 auto; }
.contact-hub-card {
  background: var(--white); border: 1px solid #ececec; border-radius: var(--radius);
  padding: 32px 22px; text-align: center; transition: var(--transition);
}
.contact-hub-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.contact-hub-card .hub-icon {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 22px;
  display: flex; align-items: center; justify-content: center; font-size: 34px; color: var(--white);
}
.hub-icon.whatsapp { background: #25D366; }
.hub-icon.phone { background: var(--wood); }
.contact-hub-card h3 { font-size: 19px; margin-bottom: 10px; }
.contact-hub-card p { color: var(--text-light); font-size: 14.5px; margin-bottom: 22px; }
.contact-hub-card .btn { width: 100%; justify-content: center; }
.contact-note {
  display: flex; align-items: center; gap: 14px; max-width: 640px; margin: 40px auto 0;
  background: var(--cream); border-radius: 14px; padding: 20px 24px; font-size: 14.5px; color: var(--dark);
}
.contact-note i { font-size: 26px; color: var(--wood); flex-shrink: 0; }

/* ============ SERVICE LINK CARDS (home) ============ */
.service-card-link { display: block; }

/* ============ MINI GALLERY TEASER (home) ============ */
.teaser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.teaser-card {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3.2;
  box-shadow: var(--shadow);
}
.teaser-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.teaser-card:hover img { transform: scale(1.07); }
.teaser-overlay {
  position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(10,11,13,.88));
  display: flex; align-items: flex-end; padding: 22px; color: var(--white);
}
.teaser-overlay strong { font-family: var(--font-head); font-size: 18px; }
.teaser-overlay span { display: flex; align-items: center; gap: 6px; font-size: 13.5px; color: var(--accent); margin-top: 4px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .type-intro { grid-template-columns: 1fr; }
  .contact-hub { grid-template-columns: repeat(2, 1fr); }
  .teaser-grid { grid-template-columns: repeat(3, 1fr); }
  .options-grid { grid-template-columns: 1fr 1fr; }
  .cities-grid { grid-template-columns: repeat(3, 1fr); }
}

.nav-overlay { display: none; }
body.nav-locked { overflow: hidden; }

@media (max-width: 860px) {
  .nav { position: fixed; top: 0; right: 0; height: 100vh; width: min(78vw, 320px);
    background: var(--dark-2); flex-direction: column; justify-content: center; gap: 26px;
    transform: translateX(100%); transition: var(--transition); z-index: 400; margin: 0;
    box-shadow: -20px 0 40px rgba(0,0,0,.3);
  }
  .nav.open { transform: translateX(0); }
  .nav-overlay {
    display: block; position: fixed; inset: 0; z-index: 399;
    background: rgba(10,11,13,.55); opacity: 0; visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
  }
  .nav-overlay.open { opacity: 1; visibility: visible; }
  .nav { padding: 90px 30px 40px; align-items: flex-start; overflow-y: auto; }
  .nav > a { font-size: 17px; }
  .nav-toggle { display: flex; z-index: 450; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .header-cta { display: none; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-mobile-wa { display: flex; flex-direction: column; gap: 10px; margin-top: 30px; width: 100%; }
  .nav-mobile-wa .btn { justify-content: center; width: 100%; }

  .nav-dropdown { width: 100%; }
  .nav-dropdown-toggle { width: 100%; justify-content: space-between; font-size: 17px; }
  .nav-dropdown-menu {
    position: static; left: auto; top: auto; transform: none; opacity: 1; visibility: visible;
    max-height: 0; overflow: hidden; padding: 0; margin-top: 0; width: 100%; min-width: 0;
    box-shadow: none; border-radius: 10px; background: rgba(255,255,255,.06);
    transition: max-height .35s ease, margin-top .35s ease;
  }
  .nav-dropdown.active .nav-dropdown-menu { max-height: 320px; padding: 6px; margin-top: 10px; }
  .nav-dropdown-menu a {
    width: 100%; box-sizing: border-box; white-space: normal;
    color: rgba(255,255,255,.85) !important;
  }
  .nav-dropdown-menu a:hover { background: rgba(255,255,255,.08); color: var(--white) !important; }
  .nav-dropdown-menu a i { color: var(--accent); }

  .cta-banner { padding: 36px 26px; flex-direction: column; text-align: center; }
  .cta-banner-actions { justify-content: center; }
}

@media (max-width: 700px) {
  .contact-hub { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .options-grid { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 76px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 2; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 100px 0 80px; }
  .hero-actions { margin-bottom: 34px; }
  .hero-stats { gap: 28px; }
  .hero-stats strong { font-size: 26px; }
  .scroll-cue { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions, .page-hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn, .page-hero-actions .btn { justify-content: center; }
  .teaser-grid { grid-template-columns: 1fr; }
  .float-messengers { bottom: 18px; right: 18px; }
  .float-msg { width: 50px; height: 50px; font-size: 24px; }
  .logo { font-size: 15.5px; gap: 8px; }
  .logo i { font-size: 22px; }
  .header-inner { gap: 10px; }
}

@media (max-width: 360px) {
  .logo span { font-size: 14px; }
}

@media (max-height: 720px) {
  .hero { padding: 90px 0 70px; }
  .hero-actions { margin-bottom: 30px; }
  .scroll-cue { display: none; }
}
