/* ============================================================
   TRAACO — Global Styles  |  styles.css
   ============================================================ */

/* ── Variables ── */
:root {
  --traaco-dark:     #0F0F0F;
  --traaco-bg:       #111111;
  --traaco-surface:  #151515;
  --traaco-gold:     #C9A84C;
  --traaco-gold-dim: #9e7d2f;
  --traaco-beige:    #E8DCC8;
  --traaco-coffee:   #7B5B3A;
  --traaco-orange:   #D4783A;
  --traaco-offwhite: #F0ECE4;
  --traaco-gray:     #9A9A9A;
  --traaco-gray-dim: #444444;
  --ease:            cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--traaco-dark); }
::-webkit-scrollbar-thumb { background: var(--traaco-gold-dim); border-radius: 4px; }
::selection { background: var(--traaco-gold); color: var(--traaco-dark); }

/* ── Layout helpers ── */
.section-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 768px) {
  .section-container { padding-left: 40px; padding-right: 40px; }
}
.section-pad { padding-top: 80px; padding-bottom: 80px; }
@media (min-width: 768px) { .section-pad { padding-top: 120px; padding-bottom: 120px; } }

/* ── Noise ── */
.noise-overlay {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  background: transparent;
  position: fixed;
  top: 0; left: 0; right: 0;
  /* Navbar bar itself sits at z 200 */
  z-index: 200;
  transition: background 0.5s ease, box-shadow 0.5s ease;
}
#navbar.scrolled {
  background: rgba(15,15,15,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.08);
  box-shadow: 0 4px 40px rgba(0,0,0,0.55);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  /* Keep nav-inner above mobile overlay */
  position: relative;
  z-index: 202;
}
@media (min-width: 768px) {
  .nav-inner { padding: 0 40px; height: 76px; }
}

/* ── Logo ── */
.logo-text {
  font-size: 1.45rem;
  letter-spacing: 0.15em;
  display: inline-block;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
  position: relative;
}
@media (min-width: 768px) { .logo-text { font-size: 1.75rem; } }
.logo-text::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--traaco-gold);
  transition: width 0.4s var(--ease);
}
.logo-text:hover::after { width: 100%; }

/* ── Desktop Nav ── */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 24px;
  list-style: none;
}
@media (min-width: 768px) { .desktop-nav { display: flex; } }

.nav-link {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--traaco-gray);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--traaco-gold);
  transition: width 0.3s ease;
}
.nav-link:hover, .nav-link.active-nav         { color: var(--traaco-offwhite); }
.nav-link:hover::after, .nav-link.active-nav::after { width: 100%; }

.nav-cta-btn {
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

/* ── Hamburger — always visible on mobile, always above menu ── */
.hamburger-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  /* Sits above mobile-menu overlay (z 201) */
  position: relative;
  z-index: 203;
}
@media (min-width: 768px) { .hamburger-btn { display: none; } }

.ham-line {
  display: block;
  width: 24px;
  height: 2px;
  /* Always white — visible on any background */
  background: #F0ECE4 !important;
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.35s ease, width 0.35s ease;
  transform-origin: center;
  /* Ensure lines stay visible even when navbar is scrolled */
  box-shadow: 0 0 2px rgba(0,0,0,0.3);
}
.hamburger-btn.open .ham-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.open .ham-line:nth-child(2) { opacity: 0; width: 0; }
.hamburger-btn.open .ham-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Zigzag Service / Feature Rows ── */
.service-zz-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .service-zz-row {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  .service-zz-reverse .service-zz-img-wrap { order: -1; }
}
.service-zz-content { display: flex; flex-direction: column; justify-content: center; }
.service-zz-list {
  list-style: none;
  padding: 0; margin: 0 0 1.5rem;
  display: flex; flex-direction: column; gap: 8px;
}
.service-zz-list li { font-size: 0.82rem; color: var(--traaco-gray); font-family: 'Poppins', sans-serif; }
.service-zz-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 600;
  color: var(--traaco-gold); font-family: 'Poppins', sans-serif;
  letter-spacing: 0.04em; text-decoration: none;
  transition: gap 0.3s ease;
}
.service-zz-cta:hover { gap: 10px; }
.service-zz-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
@media (min-width: 768px) {
  .service-zz-img-wrap { aspect-ratio: 3/2; }
}
.service-zz-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.75) saturate(0.85);
  transition: transform 0.6s ease, filter 0.4s ease;
  display: block;
}
.service-zz-row:hover .service-zz-img {
  transform: scale(1.04);
  filter: brightness(0.65) saturate(0.8);
}
.service-zz-img-glow {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, transparent 60%);
  border-radius: inherit; pointer-events: none;
}
.service-zz-badge {
  position: absolute; top: 16px; left: 16px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--traaco-dark);
  background: var(--traaco-gold); padding: 4px 12px; border-radius: 50px;
  z-index: 2;
}

/* ── Mobile separator between zigzag service rows ── */
.service-zz-sep {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.35), transparent);
  margin: 0; /* gap on parent handles spacing */
  position: relative;
}
.service-zz-sep::after {
  content: '✦';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.6rem;
  color: rgba(201,168,76,0.5);
  background: var(--traaco-bg, #111111);
  padding: 0 8px;
  line-height: 1;
}
/* Hide on desktop — the gap between rows is enough */
@media (min-width: 768px) {
  .service-zz-sep { display: none; }
}

/* ── Niche Big Cards (3-up grid) ── */
.niche-big-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  display: flex; flex-direction: column;
}
.niche-big-card:hover {
  border-color: rgba(201,168,76,0.2);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.niche-big-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.niche-big-img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.6) saturate(0.8);
  transition: transform 0.6s ease, filter 0.4s ease;
  display: block;
}
.niche-big-card:hover .niche-big-img {
  transform: scale(1.06);
  filter: brightness(0.5) saturate(0.7);
}
.niche-big-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,15,15,0.55) 0%, transparent 55%);
}
.niche-big-badge {
  position: absolute; top: 14px; left: 14px;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--traaco-dark);
  background: var(--traaco-gold); padding: 4px 12px; border-radius: 50px;
  z-index: 2;
}
.niche-big-body {
  padding: 1.25rem 1.5rem 1.5rem;
  flex: 1; display: flex; flex-direction: column; gap: 8px;
}
.niche-big-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 600;
  color: var(--traaco-offwhite);
}
.niche-big-desc {
  font-size: 0.8rem; color: var(--traaco-gray);
  line-height: 1.6; flex: 1;
}
.niche-big-btn {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 12px; font-size: 0.78rem; font-weight: 600;
  color: var(--traaco-gold); font-family: 'Poppins', sans-serif;
  letter-spacing: 0.04em; text-decoration: none;
  transition: gap 0.3s ease; align-self: flex-start;
}
.niche-big-btn:hover { gap: 10px; }

/* ── Serve Cards (rest.html "We Ready to Build for You") ── */
.serve-card {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  gap: 8px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px; overflow: hidden;
  transition: all 0.4s ease;
}
.serve-card:hover {
  border-color: rgba(201,168,76,0.18);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.serve-img-wrap {
  width: 100%; aspect-ratio: 4/3; overflow: hidden;
}
.serve-img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.65) saturate(0.8);
  transition: transform 0.5s ease; display: block;
}
.serve-card:hover .serve-img { transform: scale(1.05); }
.serve-icon { font-size: 1.5rem; padding-top: 10px; }
.serve-label {
  font-family: 'Poppins', sans-serif; font-size: 0.78rem;
  font-weight: 600; color: var(--traaco-offwhite);
  padding-bottom: 14px;
}

/* ── Hosting 3 cards side by side on mobile ── */
.grid.grid-cols-3 .hosting-card {
  padding: 1rem 0.6rem;
}
.grid.grid-cols-3 .hosting-card .hosting-icon { font-size: 1.4rem; }
.grid.grid-cols-3 .hosting-card .hosting-title { font-size: 0.72rem; }
.grid.grid-cols-3 .hosting-card .hosting-price { font-size: 0.85rem; }
.grid.grid-cols-3 .hosting-card .hosting-features { font-size: 0.65rem; }

/* ── CTA buttons always side by side ── */
.cta-btns {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}
.hero-btns {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* ── Breadcrumb bar (rest.html hero) ── */
.breadcrumb-bar {
  position: absolute;
  left: 20px;
  /* Sits 12px below the navbar — navbar height (68px) + breathing room */
  top: calc(var(--nav-h, 68px) + 12px);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  opacity: 1 !important; /* never hidden — no AOS */
}
@media (min-width: 768px) {
  .breadcrumb-bar { left: 40px; font-size: 0.78rem; }
}
.breadcrumb-link {
  color: var(--traaco-gray, #9A9A9A);
  text-decoration: none;
  transition: color 0.25s ease;
}
.breadcrumb-link:hover { color: var(--traaco-gold, #C9A84C); }
.breadcrumb-sep { color: rgba(255,255,255,0.25); }
.breadcrumb-current { color: var(--traaco-gold, #C9A84C); }

/* ── Mobile Menu Fullscreen Overlay ── */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh; /* dynamic viewport height — accounts for browser chrome on scroll */
  /* Between page and hamburger */
  z-index: 201;
  background: rgba(8, 8, 8, 0.98);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Prevent scroll-position from offsetting the overlay */
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  overflow: hidden;
}
@media (min-width: 768px) { .mobile-menu { display: none !important; } }
.mobile-menu.open { opacity: 1; pointer-events: all; }

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 80px 20px 40px; /* top padding clears the hamburger button */
  width: 100%;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav-link {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--traaco-gray);
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
  position: relative;
}
.mobile-nav-link:hover,
.mobile-nav-link.active-mobile { color: var(--traaco-offwhite); }
.mobile-nav-link.active-mobile::before {
  content: '✦ ';
  color: var(--traaco-gold);
  font-size: 0.8rem;
  font-family: 'Poppins', sans-serif;
}

.mobile-cta-btn {
  padding: 14px 44px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 700;
  margin-top: 6px;
  letter-spacing: 0.04em;
  display: inline-block;
  text-align: center;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-gold {
  display: inline-block;
  background: var(--traaco-gold);
  color: var(--traaco-dark);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-gold::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.22), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,0.38); }
.btn-gold:hover::before { opacity: 1; }
.btn-gold:active { transform: translateY(0); }

.btn-outline {
  display: inline-block;
  border: 1px solid rgba(240,236,228,0.22);
  color: var(--traaco-offwhite);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all 0.35s var(--ease);
  backdrop-filter: blur(6px);
}
.btn-outline:hover {
  border-color: var(--traaco-gold);
  color: var(--traaco-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.1);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 0.35s var(--ease);
}
.btn-whatsapp:hover { background: #20c05c; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.32); }

/* ============================================================
   HERO
   ============================================================ */
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0.32;
}
.hero-gradient {
  background: linear-gradient(to right, rgba(15,15,15,0.97) 0%, rgba(15,15,15,0.72) 55%, rgba(15,15,15,0.38) 100%);
}
@media (max-width: 640px) {
  .hero-gradient {
    background: linear-gradient(to bottom, rgba(15,15,15,0.45) 0%, rgba(15,15,15,0.9) 62%, rgba(15,15,15,1) 100%);
  }
}

.hero-title-line { line-height: 1.08; }

/* Hero CTA buttons — side by side on mobile too, smaller on mobile */
.hero-btns {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.hero-btn-primary {
  padding: 11px 22px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
}
.hero-btn-secondary {
  padding: 11px 22px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
}
@media (min-width: 640px) {
  .hero-btn-primary  { padding: 14px 32px; font-size: 0.88rem; }
  .hero-btn-secondary{ padding: 14px 32px; font-size: 0.88rem; }
}

.feature-chip {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50px;
  padding: 5px 12px;
  font-size: 0.68rem;
  color: var(--traaco-gray);
  letter-spacing: 0.04em;
  backdrop-filter: blur(6px);
  transition: all 0.35s ease;
}
.feature-chip:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.25);
  color: var(--traaco-gold);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  animation: fadeIn 1.5s ease 2s both;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--traaco-gold), transparent);
  position: relative; overflow: hidden;
}
@keyframes scrollDrop {
  0%   { top: -4px; opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
.scroll-dot-inner {
  position: absolute; top: -4px;
  width: 1px; height: 16px;
  background: var(--traaco-gold);
  animation: scrollDrop 1.6s ease infinite;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--traaco-gold);
}
.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--traaco-offwhite);
  line-height: 1.15;
}
.section-sub {
  font-size: 0.88rem;
  color: var(--traaco-gray);
  line-height: 1.78;
}

/* ============================================================
   GLOWS
   ============================================================ */
.ambient-glow-left  { background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%); }
.ambient-glow-right { background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%); }
.ambient-glow-center{ background: radial-gradient(ellipse, rgba(201,168,76,0.12) 0%, transparent 70%); }

/* ============================================================
   SERVICES
   ============================================================ */
.service-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  transition: all 0.4s var(--ease);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; inset: 0; border-radius: 20px;
  background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.4s ease;
}
.service-card:hover { border-color: rgba(201,168,76,0.2); transform: translateY(-6px); box-shadow: 0 20px 55px rgba(0,0,0,0.4); }
.service-card:hover::before { opacity: 1; }
.featured-service { border-color: rgba(201,168,76,0.14); background: rgba(201,168,76,0.03); }

.service-icon-wrap {
  width: 52px; height: 52px;
  border: 1px solid rgba(201,168,76,0.2); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,168,76,0.05); transition: all 0.4s ease;
}
.service-card:hover .service-icon-wrap { background: rgba(201,168,76,0.12); border-color: rgba(201,168,76,0.4); }
.service-icon { width: 22px; height: 22px; color: var(--traaco-gold); }

.featured-badge {
  display: inline-block;
  font-size: 0.62rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--traaco-gold);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50px; padding: 3px 10px;
}
.service-card-line {
  height: 1px;
  background: linear-gradient(to right, rgba(201,168,76,0.35), transparent);
  width: 0; transition: width 0.5s ease;
}
.service-card:hover .service-card-line { width: 100%; }

/* ============================================================
   NICHE CARDS — vertical card, image + label body
   ============================================================ */
.niche-divider {
  width: 60px; height: 1px;
  background: linear-gradient(to right, transparent, var(--traaco-gold), transparent);
}

.niche-card {
  display: flex; flex-direction: column;
  border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  transition: all 0.4s var(--ease);
  cursor: pointer; text-decoration: none;
  position: relative;
}
.niche-card:hover {
  border-color: rgba(201,168,76,0.28);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,168,76,0.1);
}

.niche-img-wrap {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
}
.niche-img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.6) saturate(0.75);
  transition: transform 0.55s ease, filter 0.4s ease;
  display: block;
}
.niche-card:hover .niche-img { transform: scale(1.06); filter: brightness(0.45) saturate(0.65); }

.niche-shine {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.4s ease;
}
.niche-card:hover .niche-shine { opacity: 1; }

.niche-body {
  display: flex; flex-direction: column; align-items: center;
  gap: 3px; padding: 12px 10px 14px;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.04);
  transition: background 0.35s ease;
}
.niche-card:hover .niche-body { background: rgba(201,168,76,0.04); }

.niche-icon { font-size: 1.2rem; line-height: 1; }
.niche-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  color: var(--traaco-offwhite);
  text-transform: uppercase; letter-spacing: 0.08em; text-align: center;
}

/* ── Niches Sort Tabs ── */
.niche-sort-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.niche-sort-btn {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--traaco-gray);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50px;
  padding: 6px 16px;
  cursor: pointer;
  background: rgba(255,255,255,0.03);
  transition: all 0.3s ease;
  white-space: nowrap;
}
.niche-sort-btn:hover,
.niche-sort-btn.active {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.3);
  color: var(--traaco-gold);
}

/* Niche demo button — single centered below all cards */
.niche-demo-btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.niche-demo-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50px;
  padding: 12px 32px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--traaco-gold);
  background: rgba(201,168,76,0.05);
  transition: all 0.35s var(--ease);
  cursor: pointer;
}
.niche-demo-btn:hover {
  background: rgba(201,168,76,0.12);
  border-color: var(--traaco-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.15);
}

/* Hidden state for filter */
.niche-card.hidden { display: none; }

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio-card { border-radius: 16px; overflow: hidden; }
.portfolio-img-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.portfolio-img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.6) saturate(0.8);
  transition: transform 0.6s ease, filter 0.4s ease;
}
.portfolio-card:hover .portfolio-img { transform: scale(1.06); filter: brightness(0.42) saturate(0.7); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,15,15,0.95) 0%, rgba(15,15,15,0.1) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.4rem; gap: 4px;
}
.portfolio-category { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--traaco-gold); font-weight: 500; }
.portfolio-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--traaco-offwhite); font-weight: 600; }
.portfolio-desc {
  font-size: 0.75rem; color: rgba(154,154,154,0.85);
  line-height: 1.55; margin-top: 2px;
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
}
.portfolio-card:hover .portfolio-desc { max-height: 60px; }
.portfolio-btn {
  display: inline-block; margin-top: 10px;
  font-size: 0.73rem; color: var(--traaco-gold);
  border: 1px solid rgba(201,168,76,0.3); border-radius: 50px;
  padding: 6px 16px;
  opacity: 0; transform: translateY(8px);
  transition: all 0.35s ease; width: fit-content;
}
.portfolio-card:hover .portfolio-btn { opacity: 1; transform: translateY(0); }
.portfolio-btn:hover { background: rgba(201,168,76,0.12); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px; padding: 1.6rem 1.4rem;
  display: flex; flex-direction: column;
  position: relative; transition: all 0.4s var(--ease);
}
.pricing-card:hover { border-color: rgba(201,168,76,0.15); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.pricing-featured {
  border-color: rgba(201,168,76,0.28) !important;
  background: rgba(201,168,76,0.04) !important;
  box-shadow: 0 0 60px rgba(201,168,76,0.08);
}
.pricing-featured:hover { box-shadow: 0 0 80px rgba(201,168,76,0.15), 0 20px 50px rgba(0,0,0,0.4) !important; }
.featured-pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--traaco-gold); color: var(--traaco-dark);
  font-size: 0.58rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
  padding: 4px 14px; border-radius: 50px; white-space: nowrap;
}
.pricing-tier { font-size: 0.62rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: var(--traaco-gray-dim); margin-bottom: 4px; }
.gold-tier { color: var(--traaco-gold) !important; }
.pricing-plan-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--traaco-offwhite); font-weight: 600; margin-bottom: 10px; }
.pricing-amount { display: flex; flex-direction: column; margin-bottom: 10px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.pricing-starts { font-size: 0.66rem; color: var(--traaco-gray-dim); text-transform: uppercase; letter-spacing: 0.1em; }
.pricing-price { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 700; color: var(--traaco-offwhite); line-height: 1; margin-top: 2px; }
.gold-price { color: var(--traaco-gold) !important; }
.pricing-tagline { font-size: 0.73rem; color: var(--traaco-gray); line-height: 1.55; margin-bottom: 10px; font-style: italic; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 7px; flex: 1; margin-bottom: 1.25rem; }
.pricing-features li { font-size: 0.76rem; color: var(--traaco-gray); padding-left: 16px; position: relative; line-height: 1.4; }
.pricing-features li::before { content: '✦'; position: absolute; left: 0; color: var(--traaco-gold); font-size: 0.48rem; top: 4px; }
.pricing-btn {
  display: block; text-align: center; padding: 11px;
  border: 1px solid rgba(255,255,255,0.1); border-radius: 50px;
  font-size: 0.78rem; font-weight: 500; color: var(--traaco-offwhite);
  transition: all 0.35s var(--ease); margin-top: auto;
  font-family: 'Poppins', sans-serif;
}
.pricing-btn:hover { border-color: var(--traaco-gold); color: var(--traaco-gold); background: rgba(201,168,76,0.05); }
.pricing-btn-gold {
  display: block; text-align: center; padding: 11px;
  background: var(--traaco-gold); border-radius: 50px;
  font-size: 0.78rem; font-weight: 700; color: var(--traaco-dark);
  transition: all 0.35s var(--ease); margin-top: auto;
  font-family: 'Poppins', sans-serif;
}
.pricing-btn-gold:hover { box-shadow: 0 8px 28px rgba(201,168,76,0.42); transform: translateY(-1px); }

/* ── Hosting ── */
.hosting-card {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px; padding: 1.5rem; text-align: center;
  transition: all 0.4s var(--ease); position: relative;
}
.hosting-card:hover { border-color: rgba(201,168,76,0.15); transform: translateY(-4px); }
.hosting-featured { border-color: rgba(201,168,76,0.2) !important; background: rgba(201,168,76,0.03) !important; }
.hosting-best {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--traaco-gold); color: var(--traaco-dark);
  font-size: 0.58rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  padding: 3px 12px; border-radius: 50px;
}
.hosting-icon { font-size: 1.7rem; margin-bottom: 8px; }
.hosting-title { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--traaco-offwhite); font-weight: 600; margin-bottom: 4px; }
.hosting-price { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--traaco-offwhite); margin-bottom: 10px; }
.hosting-features { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.hosting-features li { font-size: 0.76rem; color: var(--traaco-gray); }
.hosting-features li::before { content: '✓ '; color: var(--traaco-gold); font-size: 0.68rem; }

/* ============================================================
   CTA SECTION BUTTONS — side by side on mobile
   ============================================================ */
.cta-bg-glow { background: radial-gradient(ellipse at center, rgba(201,168,76,0.07) 0%, transparent 70%); }

.cta-btns {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}
.cta-btn-primary {
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
}
.cta-btn-secondary {
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
}
@media (min-width: 640px) {
  .cta-btn-primary  { padding: 15px 36px; font-size: 0.95rem; }
  .cta-btn-secondary{ padding: 15px 36px; font-size: 0.95rem; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer-heading {
  font-family: 'Poppins', sans-serif; font-size: 0.66rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--traaco-offwhite); margin-bottom: 14px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links li a { font-size: 0.8rem; color: var(--traaco-gray); transition: color 0.3s ease; }
.footer-links li a:hover { color: var(--traaco-gold); }

.social-icon {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.08); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--traaco-gray); transition: all 0.35s var(--ease);
}
.social-icon:hover { border-color: var(--traaco-gold); color: var(--traaco-gold); background: rgba(201,168,76,0.08); transform: translateY(-2px); }

/* ============================================================
   FLOATING WHATSAPP
   Fixed to BOTTOM-RIGHT always, z above everything
   ============================================================ */
.whatsapp-float {
  /* Explicit positioning — never affected by page flow */
  position: fixed !important;
  bottom: 22px !important;
  right: 20px !important;
  left: auto !important;
  top: auto !important;
  z-index: 9999;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5), 0 2px 8px rgba(0,0,0,0.35);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  overflow: visible;
  /* Prevent RTL or flex parents from moving it */
  margin: 0 !important;
  flex-shrink: 0;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
}
.whatsapp-float svg {
  position: relative; z-index: 2; flex-shrink: 0; display: block;
}
.whatsapp-pulse {
  position: absolute; inset: 0; border-radius: 50%;
  background: rgba(37,211,102,0.35);
  animation: waPulse 2.4s ease-out infinite; z-index: 1;
  pointer-events: none;
}
@keyframes waPulse {
  0%   { transform: scale(1);    opacity: 0.75; }
  100% { transform: scale(1.8);  opacity: 0; }
}

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes fadeIn   { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   RESTAURANT PAGE — shared classes
   ============================================================ */
.rest-hero-gradient {
  background: linear-gradient(135deg, rgba(15,15,15,0.97) 0%, rgba(15,15,15,0.78) 50%, rgba(15,15,15,0.5) 100%);
}
@media (max-width: 640px) {
  .rest-hero-gradient {
    background: linear-gradient(to bottom, rgba(15,15,15,0.5) 0%, rgba(15,15,15,0.92) 70%, rgba(15,15,15,1) 100%);
  }
}

.rest-stat {
  text-align: center; padding: 1.25rem;
  border: 1px solid rgba(255,255,255,0.06); border-radius: 14px;
  background: rgba(255,255,255,0.02); transition: all 0.4s var(--ease);
}
.rest-stat:hover { border-color: rgba(201,168,76,0.2); background: rgba(201,168,76,0.03); }
.rest-stat-number { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--traaco-gold); line-height: 1; }
.rest-stat-label  { font-size: 0.68rem; color: var(--traaco-gray); margin-top: 3px; text-transform: uppercase; letter-spacing: 0.1em; }

.rest-feature {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 1.1rem;
  border: 1px solid rgba(255,255,255,0.05); border-radius: 14px;
  background: rgba(255,255,255,0.015); transition: all 0.4s var(--ease);
}
.rest-feature:hover { border-color: rgba(201,168,76,0.15); transform: translateX(4px); }
.rest-feature-icon {
  width: 38px; height: 38px; min-width: 38px;
  border-radius: 10px; background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.15);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.rest-feature-title { font-size: 0.85rem; font-weight: 600; color: var(--traaco-offwhite); margin-bottom: 2px; }
.rest-feature-desc  { font-size: 0.76rem; color: var(--traaco-gray); line-height: 1.5; }

.rest-gallery-card { border-radius: 12px; overflow: hidden; position: relative; }
.rest-gallery-img  { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease, filter 0.4s ease; filter: brightness(0.7) saturate(0.85); display: block; }
.rest-gallery-card:hover .rest-gallery-img { transform: scale(1.05); filter: brightness(0.55) saturate(0.7); }
.rest-gallery-label {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 0.9rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  font-size: 0.75rem; color: var(--traaco-offwhite); letter-spacing: 0.06em;
  opacity: 0; transition: opacity 0.35s ease;
}
.rest-gallery-card:hover .rest-gallery-label { opacity: 1; }

.rest-pricing-card {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px; padding: 1.75rem 1.5rem;
  position: relative; transition: all 0.4s var(--ease);
  display: flex; flex-direction: column;
}
.rest-pricing-card:hover { border-color: rgba(201,168,76,0.2); transform: translateY(-5px); box-shadow: 0 24px 60px rgba(0,0,0,0.35); }
.rest-pricing-featured { border-color: rgba(201,168,76,0.3) !important; background: rgba(201,168,76,0.04) !important; box-shadow: 0 0 60px rgba(201,168,76,0.08); }

.testimonial-card {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px; padding: 1.6rem; transition: all 0.4s var(--ease);
}
.testimonial-card:hover { border-color: rgba(201,168,76,0.15); transform: translateY(-3px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 480px) {
  .section-heading { font-size: 1.6rem; }
  .pricing-card    { padding: 1.4rem 1.1rem; }
  .rest-pricing-card { padding: 1.4rem 1.1rem; }
  .niche-label     { font-size: 0.65rem; }
  .feature-chip    { font-size: 0.63rem; padding: 4px 10px; }
}