/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(247,245,242,.97);
  backdrop-filter: blur(15px);
  transition: all .4s ease;
}
header.scrolled {
  box-shadow: 0 5px 30px rgba(0,0,0,.1);
}
.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.site-logo img.logo-img {
  width: 52px; height: 52px;
  object-fit: contain;
  border-radius: 10px;
  flex-shrink: 0;
}
.logo-text .logo-main {
  font-size: 1.2rem;
  font-weight: 700;
  color: #3e474e;
  line-height: 1.25;
  letter-spacing: 1px;
  display: block;
}
.logo-text .logo-sub {
  font-size: .58rem;
  color: #3e474e;
  letter-spacing: .5px;
  max-width: 260px;
  line-height: 1.35;
  display: block;
}

/* ===== DESKTOP NAV ===== */
.nav-desktop {
  display: flex;
  gap: 40px;
  align-items: center;
}
.nav-item { position: relative; }
.nav-item > a {
  text-decoration: none;
  color: #2d2d2d;
  font-weight: 500;
  font-size: .95rem;
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all .3s ease;
  position: relative;
}
.nav-item > a::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(135deg,#dac3a4,#b8925f);
  transition: width .3s ease;
}
.nav-item:hover > a::before,
.nav-item > a.active::before { width: 100%; }
.nav-item:hover > a,
.nav-item > a.active { color: #b8925f; }
.nav-item > a i { font-size: .65rem; transition: transform .3s ease; }
.nav-item:hover > a i { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: -25px;
  background: #fff;
  min-width: 180px;
  box-shadow: 0 15px 50px rgba(0,0,0,.12);
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all .3s ease;
  padding: 12px 0;
  border: 1px solid rgba(218,195,164,.15);
  z-index: 999;
}
.dropdown::before {
  content: '';
  position: absolute;
  top: -8px; left: 40px;
  width: 16px; height: 16px;
  background: #fff;
  transform: rotate(45deg);
  border-left: 1px solid rgba(218,195,164,.1);
  border-top: 1px solid rgba(218,195,164,.1);
}
.nav-item:hover .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 14px 28px;
  text-decoration: none;
  color: #2d2d2d;
  font-size: .9rem;
  transition: all .3s ease;
  position: relative;
}
.dropdown a::before {
  content: '';
  position: absolute;
  left: 15px; top: 50%;
  transform: translateY(-50%);
  width: 0; height: 2px;
  background: linear-gradient(135deg,#dac3a4,#b8925f);
  transition: width .3s ease;
}
.dropdown a:hover {
  background: linear-gradient(90deg,rgba(218,195,164,.08),transparent);
  color: #b8925f;
  padding-left: 38px;
}
.dropdown a:hover::before { width: 12px; }

/* Header Right */
.header-right { display: flex; align-items: center; gap: 20px; }
.social-icons { display: flex; gap: 10px; }
.social-icons a {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1.5px solid rgba(166,143,114,.45);
  color: #b8925f;
  text-decoration: none;
  font-size: .95rem;
  transition: all .3s ease;
}
.social-icons a:hover {
  background: linear-gradient(135deg,#dac3a4,#b8925f);
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(218,195,164,.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  background: transparent;
  border: none;
  z-index: 1001;
}
.hamburger span {
  width: 26px; height: 2.5px;
  background: #b8925f;
  margin: 4px 0;
  border-radius: 3px;
  transition: all .4s cubic-bezier(.68,-.55,.265,1.55);
  display: block;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px,6px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(-20px); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px,-6px); }

/* Mobile Overlay + Nav */
.nav-mobile-overlay {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,.55);
  z-index: 998;
  opacity: 0; visibility: hidden;
  transition: all .3s ease;
}
.nav-mobile-overlay.active { opacity: 1; visibility: visible; }
.nav-mobile {
  position: fixed;
  top: 0; right: -100%;
  width: 85%; max-width: 380px;
  height: 100vh;
  background: linear-gradient(180deg,#f5f3f0 0%,#ebe8e4 50%,#f5f3f0 100%);
  z-index: 999;
  padding: 100px 0 40px;
  transition: right .4s cubic-bezier(.25,.46,.45,.94);
  overflow-y: auto;
  box-shadow: -10px 0 50px rgba(0,0,0,.15);
}
.nav-mobile.active { right: 0; }
.mobile-menu-item { border-bottom: 1px solid rgba(218,195,164,.15); }
.mobile-menu-item > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 35px;
  text-decoration: none;
  color: #2d2d2d;
  font-weight: 500;
  font-size: 1.05rem;
  transition: all .3s ease;
}
.mobile-menu-item > a:hover {
  color: #b8925f;
  background: linear-gradient(90deg,rgba(218,195,164,.08),transparent);
}
.mobile-menu-item > a i { transition: transform .3s ease; color: #b8925f; }
.mobile-submenu { display: none; background: rgba(218,195,164,.05); }
.mobile-submenu.active { display: block; animation: slideDown .3s ease; }
.mobile-submenu a {
  display: block;
  padding: 15px 35px 15px 52px;
  text-decoration: none;
  color: #6b7280;
  font-size: .95rem;
  transition: all .3s ease;
  position: relative;
}
.mobile-submenu a::before {
  content: '';
  position: absolute;
  left: 35px; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 2px;
  background: #c9a87c;
  opacity: .5;
}
.mobile-submenu a:hover { color: #b8925f; background: rgba(218,195,164,.08); }
.mobile-social {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 40px;
  padding: 28px 35px;
  border-top: 1px solid rgba(218,195,164,.2);
}
.mobile-social a {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,#dac3a4,#b8925f);
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-size: 1.15rem;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(218,195,164,.3);
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== HERO CAROUSEL ===== */
.home-hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}
.home-hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.home-hero-slide.is-active { opacity: 1; }
.home-hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 8s ease;
}
.home-hero-slide.is-active img { transform: scale(1.08); }
.carousel-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg,rgba(0,0,0,.52) 0%,rgba(0,0,0,.18) 50%,rgba(0,0,0,.42) 100%);
}
.hero-content {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
  color: #fff;
  z-index: 10;
  width: 90%; max-width: 820px;
}
.hero-badge {
  display: inline-block;
  padding: 10px 30px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50px;
  font-size: .9rem;
  letter-spacing: 3px;
  margin-bottom: 25px;
  animation: fadeInDown 1s ease;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
.hero-content h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 20px rgba(0,0,0,.3);
  animation: fadeInUp 1s ease .2s both;
  line-height: 1.2;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 45px;
  text-shadow: 1px 1px 10px rgba(0,0,0,.3);
  animation: fadeInUp 1s ease .4s both;
  color: rgba(255,255,255,.95) !important;
  -webkit-text-fill-color: rgba(255,255,255,.95) !important;
}
.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease .6s both;
}
.hero-btn {
  display: inline-block;
  padding: 18px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all .4s ease;
  letter-spacing: 1px;
}
.hero-btn.primary {
  background: linear-gradient(135deg,#dac3a4,#b8925f);
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  box-shadow: 0 10px 35px rgba(218,195,164,.4);
}
.hero-btn.primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 45px rgba(218,195,164,.5);
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
.hero-btn.secondary {
  background: rgba(255,255,255,.15);
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  border: 2px solid rgba(255,255,255,.5);
  backdrop-filter: blur(10px);
}
.hero-btn.secondary:hover {
  background: #fff;
  color: #2d2d2d !important;
  -webkit-text-fill-color: #2d2d2d !important;
  border-color: #fff;
}

/* Carousel Controls */
.carousel-dots {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}
.dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: all .3s ease;
  border: 2px solid transparent;
}
.dot:hover { background: rgba(255,255,255,.7); }
.dot.active {
  background: #fff;
  transform: scale(1.3);
  border-color: #c9a87c;
}
.carousel-arrows {
  position: absolute;
  top: 50%; left: 0; right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  z-index: 10;
}
.carousel-arrow {
  width: 55px; height: 55px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all .3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-arrow:hover {
  background: linear-gradient(135deg,#dac3a4,#b8925f);
  border-color: #c9a87c;
  transform: scale(1.1);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== SCROLL ANIMATE ===== */
.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .65s ease, transform .65s ease;
}
.animate.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate.delay-1 { transition-delay: .1s; }
.animate.delay-2 { transition-delay: .2s; }
.animate.delay-3 { transition-delay: .3s; }
.animate.delay-4 { transition-delay: .4s; }

/* ===== SECTION COMMON ===== */
.section-tag {
  display: inline-block;
  padding: 8px 25px;
  background: linear-gradient(135deg,rgba(218,195,164,.12),rgba(218,195,164,.05));
  border: 1px solid rgba(218,195,164,.35);
  border-radius: 50px;
  font-size: .85rem;
  color: #b8925f !important;
  -webkit-text-fill-color: #b8925f !important;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.section-header { text-align: center; margin-bottom: 70px; }
.section-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(135deg,#c9a87c,#8b6340);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  display: block;
}
.section-header p {
  color: #6b7280 !important;
  -webkit-text-fill-color: #6b7280 !important;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* why-us section header overrides */
.why-us .section-header h2 {
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: #fff !important;
  background-clip: unset !important;
  color: #fff !important;
}
.why-us .section-header p {
  color: rgba(255,255,255,.7) !important;
  -webkit-text-fill-color: rgba(255,255,255,.7) !important;
}
.why-us .section-tag {
  color: #dac3a4 !important;
  -webkit-text-fill-color: #dac3a4 !important;
  border-color: rgba(218,195,164,.4);
  background: rgba(218,195,164,.08);
}

/* ===== SERVICES ===== */
.services-wrap {
  padding: 120px 40px;
  background: #f7f5f2;
}
.services-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 35px;
}
.service-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(70,80,88,.1);
  transition: all .5s ease;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  color: #2d2d2d;
  display: block;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(135deg,#dac3a4,#b8925f);
  transform: scaleX(0);
  transition: transform .4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(218,195,164,.2);
}
.service-img { height: 280px; position: relative; overflow: hidden; }
.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.service-card:hover .service-img img { transform: scale(1.12); }
.service-category {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  background: rgba(255,255,255,.95);
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  color: #2d2d2d !important;
  -webkit-text-fill-color: #2d2d2d !important;
  box-shadow: 0 8px 30px rgba(0,0,0,.15);
  transition: all .4s ease;
  white-space: nowrap;
}
.service-card:hover .service-category {
  background: linear-gradient(135deg,#dac3a4,#b8925f);
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  transform: translate(-50%,-50%) scale(1.05);
}
.service-content { padding: 30px; }
.service-content h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: #2d2d2d !important;
  -webkit-text-fill-color: #2d2d2d !important;
}
.service-content p {
  color: #6b7280 !important;
  -webkit-text-fill-color: #6b7280 !important;
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #b8925f !important;
  -webkit-text-fill-color: #b8925f !important;
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  transition: all .3s ease;
}
.service-link i { transition: transform .3s ease; }
.service-link:hover i { transform: translateX(5px); }

/* ===== PORTFOLIO ===== */
.portfolio-section {
  padding: 120px 40px;
  background: linear-gradient(180deg,#fff 0%,#f7f5f2 100%);
}
.portfolio-container { max-width: 1400px; margin: 0 auto; }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}
.portfolio-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: 0 10px 40px rgba(0,0,0,.1);
}
.portfolio-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.portfolio-item:hover img { transform: scale(1.1); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg,rgba(0,0,0,.8) 0%,rgba(0,0,0,.2) 50%,transparent 100%);
  opacity: 0;
  transition: opacity .4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h4 {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-size: 1.3rem;
  margin-bottom: 8px;
  transform: translateY(20px);
  transition: transform .4s ease;
}
.portfolio-overlay p {
  color: rgba(255,255,255,.8) !important;
  -webkit-text-fill-color: rgba(255,255,255,.8) !important;
  font-size: .9rem;
  transform: translateY(20px);
  transition: transform .4s ease .1s;
}
.portfolio-item:hover .portfolio-overlay h4,
.portfolio-item:hover .portfolio-overlay p { transform: translateY(0); }
.portfolio-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(0);
  width: 60px; height: 60px;
  background: linear-gradient(135deg,#dac3a4,#b8925f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-size: 1.3rem;
  transition: transform .4s ease;
  box-shadow: 0 5px 25px rgba(218,195,164,.4);
}
.portfolio-item:hover .portfolio-icon { transform: translate(-50%,-50%) scale(1); }
.portfolio-btn {
  text-align: center;
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
}
.portfolio-btn a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 38px;
  background: linear-gradient(135deg,#dac3a4,#b8925f);
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  border-radius: 50px;
  transition: all .4s ease;
  box-shadow: 0 10px 30px rgba(218,195,164,.25);
}
.portfolio-btn a:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(218,195,164,.4);
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

/* ===== WHY US ===== */
.why-us {
  padding: 120px 40px;
  background: linear-gradient(135deg,#465058,#3a4248);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle,rgba(218,195,164,.1) 0%,transparent 70%);
  border-radius: 50%;
}
.why-us-container { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
}
.why-item {
  text-align: center;
  padding: 40px 25px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  transition: all .4s ease;
}
.why-item:hover {
  background: rgba(255,255,255,.06);
  transform: translateY(-10px);
  border-color: rgba(218,195,164,.3);
}
.why-icon {
  width: 80px; height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg,#dac3a4,#b8925f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  box-shadow: 0 10px 30px rgba(218,195,164,.3);
}
.why-item h4 {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.why-item p {
  color: rgba(255,255,255,.65) !important;
  -webkit-text-fill-color: rgba(255,255,255,.65) !important;
  font-size: .95rem;
  line-height: 1.6;
}

/* ===== CTA ===== */
.cta {
  padding: 100px 40px;
  background: #f7f5f2;
  text-align: center;
}
.cta-container { max-width: 800px; margin: 0 auto; }
.cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #8b6340 !important;
  -webkit-text-fill-color: #8b6340 !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
}
.cta p {
  color: #6b7280 !important;
  -webkit-text-fill-color: #6b7280 !important;
  font-size: 1.15rem;
  margin-bottom: 40px;
}
.cta-info {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.cta-item { display: flex; align-items: center; gap: 15px; }
.cta-icon {
  width: 55px; height: 55px;
  background: linear-gradient(135deg,#dac3a4,#b8925f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-size: 1.2rem;
  box-shadow: 0 8px 25px rgba(218,195,164,.3);
  flex-shrink: 0;
}
.cta-item span {
  font-size: 1.1rem;
  font-weight: 500;
  color: #2d2d2d !important;
  -webkit-text-fill-color: #2d2d2d !important;
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(180deg,#465058,#323940);
  padding: 80px 40px 30px;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
}
.footer-brand .logo-main {
  font-size: 1.5rem;
  color: #dac3a4 !important;
  -webkit-text-fill-color: #dac3a4 !important;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}
.footer-brand .logo-sub {
  color: #dac3a4 !important;
  -webkit-text-fill-color: #dac3a4 !important;
  font-size: .75rem;
  letter-spacing: .5px;
  display: block;
  margin-bottom: 20px;
}
.footer-brand p {
  color: rgba(255,255,255,.5) !important;
  -webkit-text-fill-color: rgba(255,255,255,.5) !important;
  font-size: .92rem;
  line-height: 1.8;
  margin-bottom: 25px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7) !important;
  -webkit-text-fill-color: rgba(255,255,255,.7) !important;
  text-decoration: none;
  transition: all .3s ease;
  font-size: 1rem;
}
.footer-social a:hover {
  background: linear-gradient(135deg,#dac3a4,#b8925f);
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  transform: translateY(-3px);
}
.footer-col h4 {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-size: 1.05rem;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 35px; height: 3px;
  background: linear-gradient(135deg,#dac3a4,#b8925f);
  border-radius: 2px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,.5) !important;
  -webkit-text-fill-color: rgba(255,255,255,.5) !important;
  text-decoration: none;
  padding: 9px 0;
  font-size: .92rem;
  transition: all .3s ease;
}
.footer-col a:hover {
  color: #c9a87c !important;
  -webkit-text-fill-color: #c9a87c !important;
  padding-left: 8px;
}
.footer-contact p {
  color: rgba(255,255,255,.5) !important;
  -webkit-text-fill-color: rgba(255,255,255,.5) !important;
  font-size: .92rem;
  padding: 9px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
}
.footer-contact i { color: #c9a87c; width: 18px; margin-top: 3px; flex-shrink: 0; }
.footer-contact a {
  color: rgba(255,255,255,.5) !important;
  -webkit-text-fill-color: rgba(255,255,255,.5) !important;
  display: inline;
  padding: 0;
}
.footer-contact a:hover {
  color: #c9a87c !important;
  -webkit-text-fill-color: #c9a87c !important;
  padding-left: 0;
}
.footer-bottom {
  max-width: 1200px;
  margin: 50px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  color: rgba(255,255,255,.38) !important;
  -webkit-text-fill-color: rgba(255,255,255,.38) !important;
  font-size: .88rem;
  margin: 0;
}
.footer-links { display: flex; gap: 28px; }
.footer-links a {
  color: rgba(255,255,255,.38) !important;
  -webkit-text-fill-color: rgba(255,255,255,.38) !important;
  text-decoration: none;
  font-size: .88rem;
  transition: color .3s ease;
  display: inline;
  padding: 0;
}
.footer-links a:hover {
  color: #c9a87c !important;
  -webkit-text-fill-color: #c9a87c !important;
  padding-left: 0;
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 35px; right: 35px;
  width: 65px; height: 65px;
  background: linear-gradient(135deg,#25D366,#128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-size: 32px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(37,211,102,.4);
  z-index: 997;
  transition: all .3s ease;
}
.whatsapp-btn::before {
  content: '';
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: inherit;
  animation: whatsappPulse 2s infinite;
  z-index: -1;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37,211,102,.5);
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
@keyframes whatsappPulse {
  0%   { transform: scale(1);   opacity: .7; }
  50%  { transform: scale(1.3); opacity: 0; }
  100% { transform: scale(1);   opacity: 0; }
}

/* ===== LIGHTBOX ===== */
.home-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(29,35,40,.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  padding: 64px 20px 32px;
}
.home-lightbox.active { opacity: 1; visibility: visible; }
.home-lightbox-inner {
  position: relative;
  max-width: min(92vw,1200px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home-lightbox-inner img {
  max-width: 100%; max-height: 72vh;
  object-fit: contain;
  border-radius: 12px;
  display: block;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.home-lightbox-close {
  position: fixed;
  top: 20px; right: 22px;
  width: 46px; height: 46px;
  border: none; border-radius: 50%;
  background: rgba(255,255,255,.18);
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 2001;
  transition: background .2s ease;
}
.home-lightbox-close:hover { background: rgba(255,255,255,.28); }
.home-lightbox-caption {
  margin-top: 14px;
  text-align: center;
  color: rgba(255,255,255,.92) !important;
  -webkit-text-fill-color: rgba(255,255,255,.92) !important;
  font-size: 1rem;
}
.home-lightbox-caption small {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,.62) !important;
  -webkit-text-fill-color: rgba(255,255,255,.62) !important;
  font-size: .88rem;
}

/* ===== RESPONSIVE ===== */
@media(max-width:1200px) {
  .why-grid { grid-template-columns: repeat(2,1fr); }
}
@media(max-width:1024px) {
  .services-grid, .portfolio-grid { grid-template-columns: repeat(2,1fr); }
  .footer-container { grid-template-columns: repeat(2,1fr); }
  .hero-content h1 { font-size: 3rem; }
}
@media(max-width:768px) {
  .nav-desktop, .header-right .social-icons { display: none; }
  .hamburger { display: flex; }
  .header-container { padding: 14px 20px; }
  .site-logo .logo-text .logo-main { font-size: .92rem; }
  .site-logo .logo-text .logo-sub  { font-size: .5rem; max-width: 200px; }
  .site-logo img.logo-img { width: 40px; height: 40px; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-content p  { font-size: 1rem; }
  .hero-badge { font-size: .75rem; padding: 8px 20px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-btn { padding: 15px 38px; }
  .carousel-arrows { display: none; }
  .services-wrap, .portfolio-section, .why-us, .cta { padding: 80px 20px; }
  .section-header h2 { font-size: 2rem; }
  .services-grid, .portfolio-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; text-align: center; gap: 38px; }
  .footer-col h4::after { left: 50%; transform: translateX(-50%); }
  .footer-social, .footer-links { justify-content: center; }
  .footer-contact p { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-info { flex-direction: column; align-items: center; }
  .whatsapp-btn { bottom: 20px; right: 20px; width: 58px; height: 58px; font-size: 26px; }
}