/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0D1117;
  --navy-2: #151C26;
  --navy-3: #1C2535;
  --navy-4: #243040;
  --steel: #B8C8D8;
  --steel-dim: rgba(184,200,216,0.45);
  --steel-faint: rgba(184,200,216,0.12);
  --ice: #E8EFF6;
  --accent: #4A90B8;
  --accent-glow: rgba(74,144,184,0.25);
  --ig-grad: linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045);
  --tg-grad: linear-gradient(135deg,#229ED9,#176B9A);
  --text: #E8EFF6;
  --text-dim: rgba(232,239,246,0.55);
  --text-faint: rgba(232,239,246,0.3);
  --ease: cubic-bezier(0.25,0.46,0.45,0.94);
  --trans: all 0.4s var(--ease);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--text);
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }

/* ===== CUSTOM CURSOR ===== */
.cursor {
  width: 36px; height: 36px;
  border: 1px solid var(--steel);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s, background 0.3s;
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 5px; height: 5px;
  background: var(--steel);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
}
body:hover .cursor { opacity: 1; }
@media (pointer: coarse) { .cursor, .cursor-dot { display: none; } }

/* ===== TYPE ===== */
.eyebrow {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--steel);
  display: block;
  margin-bottom: 1rem;
}
.eyebrow.center { text-align: center; }
.eyebrow.light { color: rgba(184,200,216,0.7); }

em { font-style: italic; color: var(--steel); }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 1.5rem 0;
  transition: var(--trans);
}
#navbar.stuck {
  background: rgba(13,17,23,0.95);
  backdrop-filter: blur(24px);
  padding: 1rem 0;
  border-bottom: 0.5px solid rgba(184,200,216,0.1);
}
.nav-wrap {
  max-width: 1300px; margin: 0 auto;
  padding: 0 2rem;
  display: flex; align-items: center; gap: 2rem;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.65rem;
  flex-shrink: 0;
}
.logo-mark {
  width: 38px; height: 38px;
  background: var(--accent);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 500; letter-spacing: 0.05em;
  flex-shrink: 0;
}
.logo-mark.sm { width: 30px; height: 30px; font-size: 9px; }
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 400;
  color: var(--ice);
  letter-spacing: 0.02em;
}
.logo-text em { font-style: normal; color: var(--steel); }
.nav-links {
  list-style: none;
  display: flex; gap: 2.5rem;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.8rem; font-weight: 300;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--ice); }
.nav-links a:hover::after { width: 100%; }
.nav-ig-btn {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--tg-grad);
  color: white; font-size: 0.78rem; font-weight: 400;
  letter-spacing: 0.06em; padding: 0.5rem 1.25rem;
  flex-shrink: 0;
  transition: opacity 0.3s, transform 0.3s;
}
.nav-ig-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.nav-burger {
  display: none; flex-direction: column; gap: 7px;
  background: none; border: none; cursor: pointer;
  padding: 4px; margin-left: auto;
}
.nav-burger span { display: block; width: 22px; height: 1px; background: var(--steel); transition: var(--trans); }
.nav-mobile {
  display: none; flex-direction: column;
  background: rgba(13,17,23,0.98);
  backdrop-filter: blur(20px);
  padding: 2rem; gap: 1.5rem;
  border-top: 0.5px solid rgba(184,200,216,0.1);
}
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 0.88rem; font-weight: 300; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); }
.mob-ig {
  background: var(--tg-grad) !important;
  color: white !important;
  text-align: center;
  padding: 0.75rem 1rem;
}

/* ===== BUTTONS ===== */
.btn-main {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--accent);
  color: white; font-size: 0.82rem; font-weight: 400;
  letter-spacing: 0.08em; padding: 0.85rem 2rem;
  transition: var(--trans);
}
.btn-main:hover { background: #5aa0c8; transform: translateY(-2px); }
.btn-outline {
  display: inline-flex; align-items: center;
  border: 0.5px solid rgba(184,200,216,0.3);
  color: var(--steel); font-size: 0.82rem; font-weight: 300;
  letter-spacing: 0.08em; padding: 0.85rem 2rem;
  transition: var(--trans);
}
.btn-outline:hover { border-color: var(--steel); color: var(--ice); }

/* ===== HERO ===== */
.hero {
  position: relative; height: 100vh; min-height: 680px;
  display: flex; align-items: center; overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.4s ease;
}
.slide.active { opacity: 1; animation: zoomSlide 9s ease-in-out infinite alternate; }
@keyframes zoomSlide { from { transform: scale(1); } to { transform: scale(1.07); } }
.hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(13,17,23,0.82) 0%, rgba(13,17,23,0.45) 55%, rgba(13,17,23,0.65) 100%);
}
.hero-left-bar {
  position: absolute; left: 2rem; top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  z-index: 2;
}
.bar-text {
  font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--steel-dim); writing-mode: vertical-rl;
}
.bar-line { width: 0.5px; height: 80px; background: linear-gradient(to bottom, var(--steel-dim), transparent); }
.hero-content {
  position: relative; z-index: 2;
  max-width: 1300px; width: 100%; margin: 0 auto;
  padding: 0 2rem 0 6rem;
  padding-top: 5rem;
}
.hero-tag {
  display: flex; align-items: center; gap: 0.6rem;
  margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 0.8s ease 0.3s forwards;
}
.tag-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }
.hero-tag span { font-size: 0.78rem; font-weight: 300; letter-spacing: 0.15em; text-transform: uppercase; color: var(--steel); }
h1 {
  margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 0.8s ease 0.5s forwards;
}
.h1-thin {
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 400; font-style: italic;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--steel); line-height: 1.1;
}
.h1-bold {
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  color: var(--ice); line-height: 0.95;
  letter-spacing: -0.02em;
}
.hero-lead {
  font-size: 1rem; font-weight: 300; line-height: 1.8;
  color: var(--text-dim); max-width: 460px; margin-bottom: 2.5rem;
  opacity: 0; animation: fadeUp 0.8s ease 0.7s forwards;
}
.hero-btns {
  display: flex; gap: 1.25rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s ease 0.9s forwards;
}
.hero-counter {
  position: absolute; right: 2rem; top: 50%; transform: translateY(-50%);
  z-index: 2; text-align: right;
  font-family: 'Playfair Display', serif;
}
.count-active { font-size: 3rem; font-weight: 700; color: var(--ice); line-height: 1; }
.count-sep { font-size: 1rem; color: var(--steel-dim); margin: 0 4px; }
.count-total { font-size: 1rem; color: var(--steel-dim); }
.hero-scroll-hint {
  position: absolute; bottom: 5rem; left: 50%; transform: translateX(-50%);
  z-index: 2;
}
.scroll-track {
  width: 1px; height: 60px;
  background: rgba(184,200,216,0.15);
  position: relative;
}
.scroll-thumb {
  width: 1px; height: 30px;
  background: var(--steel);
  position: absolute; top: 0;
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown { 0%,100% { top: 0; opacity: 1; } 80% { top: 30px; opacity: 0; } }
.hero-stats {
  position: absolute; bottom: 0; right: 0;
  z-index: 2;
  display: flex; align-items: center;
  background: rgba(21,28,38,0.9);
  backdrop-filter: blur(20px);
  border-left: 0.5px solid rgba(184,200,216,0.1);
  border-top: 0.5px solid rgba(184,200,216,0.1);
}
.hstat { padding: 1.5rem 2rem; text-align: center; }
.hstat strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--ice); }
.hstat span { font-size: 0.7rem; font-weight: 300; letter-spacing: 0.1em; text-transform: uppercase; color: var(--steel-dim); margin-top: 4px; display: block; }
.hstat-div { width: 0.5px; height: 40px; background: rgba(184,200,216,0.1); }

/* ===== MARQUEE ===== */
.marquee-wrap {
  overflow: hidden;
  background: var(--navy-3);
  border-top: 0.5px solid rgba(184,200,216,0.08);
  border-bottom: 0.5px solid rgba(184,200,216,0.08);
  padding: 1.1rem 0;
}
.marquee-track {
  display: flex; gap: 2.5rem; width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-size: 0.75rem; font-weight: 300;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--steel-dim); white-space: nowrap;
}
.marquee-track .mx { color: var(--accent); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== ABOUT ===== */
.about { padding: 9rem 0; background: var(--navy); }
.about-container {
  max-width: 1300px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: center;
}
.about-visual { position: relative; height: 640px; }
.av-main {
  position: absolute; left: 0; top: 0;
  width: 75%; height: 88%;
  overflow: hidden;
}
.av-main img { transition: transform 0.7s ease; }
.av-main:hover img { transform: scale(1.04); }
.av-tag {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: rgba(13,17,23,0.85);
  backdrop-filter: blur(12px);
  border: 0.5px solid rgba(184,200,216,0.2);
  padding: 0.6rem 1rem;
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 300; letter-spacing: 0.08em;
  color: var(--steel);
}
.av-secondary {
  position: absolute; right: 0; bottom: 0;
  display: flex; flex-direction: column; gap: 0;
  width: 40%;
}
.av-img2 {
  height: 200px; overflow: hidden;
}
.av-img2 img { transition: transform 0.7s ease; }
.av-img2:hover img { transform: scale(1.04); }
.av-num {
  background: var(--accent);
  padding: 1.5rem;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
}
.av-big { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; color: white; line-height: 1; }
.av-small { font-size: 0.7rem; font-weight: 300; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-top: 4px; }
.av-accent {
  position: absolute; top: 40%; left: -20px;
  width: 1px; height: 120px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}
.about-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400; line-height: 1.2;
  color: var(--ice); margin-bottom: 1.5rem;
}
.about-p {
  font-size: 0.95rem; font-weight: 300; line-height: 1.9;
  color: var(--text-dim); margin-bottom: 1.25rem;
}
.about-pills {
  display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 2rem 0 2.5rem;
}
.pill {
  font-size: 0.72rem; font-weight: 400; letter-spacing: 0.08em;
  border: 0.5px solid rgba(184,200,216,0.2);
  color: var(--steel); padding: 0.4rem 1rem;
  transition: var(--trans);
}
.pill:hover { border-color: var(--accent); color: var(--accent); }

/* ===== SERVICES ===== */
.services { padding: 9rem 0; background: var(--navy-2); }
.srv-head { text-align: center; margin-bottom: 4rem; }
.srv-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400; color: var(--ice);
}
.srv-grid {
  max-width: 1300px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px;
}
.srv-card {
  background: var(--navy-3);
  position: relative; overflow: hidden;
  transition: var(--trans);
  display: flex; flex-direction: column;
}
.srv-card:hover { background: var(--navy-4); }
.srv-card.featured { border: 1px solid rgba(74,144,184,0.3); }
.srv-badge {
  position: absolute; top: 1.25rem; right: 1.25rem;
  background: var(--accent); color: white;
  font-size: 0.65rem; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.3rem 0.75rem; z-index: 2;
}
.srv-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; font-weight: 700;
  color: rgba(184,200,216,0.06);
  position: absolute; top: 0.5rem; left: 1.25rem;
  line-height: 1;
  transition: color 0.4s;
}
.srv-card:hover .srv-num { color: rgba(74,144,184,0.12); }
.srv-img {
  height: 200px; overflow: hidden;
}
.srv-img img { transition: transform 0.7s ease; }
.srv-card:hover .srv-img img { transform: scale(1.06); }
.srv-info { padding: 1.75rem 1.75rem 1rem; flex: 1; }
.srv-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 400;
  color: var(--ice); margin-bottom: 0.6rem;
}
.srv-info p {
  font-size: 0.85rem; font-weight: 300; line-height: 1.8;
  color: var(--text-dim); margin-bottom: 1rem;
}
.srv-dur {
  font-size: 0.68rem; font-weight: 300; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent);
  border: 0.5px solid rgba(74,144,184,0.25); padding: 0.3rem 0.7rem;
  display: inline-block;
}
.srv-link {
  display: flex; align-items: center; gap: 0.5rem; justify-content: flex-end;
  padding: 1rem 1.75rem;
  font-size: 0.78rem; font-weight: 300; letter-spacing: 0.06em;
  color: var(--text-faint); border-top: 0.5px solid rgba(184,200,216,0.06);
  transition: color 0.3s;
  margin-top: auto;
}
.srv-card:hover .srv-link { color: var(--steel); }

/* ===== GALLERY ===== */
.gallery { padding: 9rem 0 0; background: var(--navy); }
.gal-header { text-align: center; margin-bottom: 3rem; }
.gal-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 400; color: var(--ice);
}
.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 260px);
  gap: 3px;
}
.gal-item { position: relative; overflow: hidden; cursor: pointer; }
.gi-tall { grid-row: span 2; }
.gi-wide { grid-column: span 2; }
.gal-item img { transition: transform 0.7s ease; }
.gal-item:hover img { transform: scale(1.08); }
.gi-layer {
  position: absolute; inset: 0;
  background: rgba(13,17,23,0);
  transition: background 0.4s;
}
.gal-item:hover .gi-layer {
  background: rgba(13,17,23,0.45);
}

/* ===== PROCESS ===== */
.process { padding: 9rem 0; background: var(--navy-2); }
.proc-inner { max-width: 1300px; margin: 0 auto; padding: 0 2rem; }
.proc-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 400;
  color: var(--ice); text-align: center; margin-bottom: 4rem;
}
.proc-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  position: relative;
}
.proc-step {
  position: relative;
  text-align: center;
}
.proc-icon {
  width: 64px; height: 64px;
  border: 0.5px solid rgba(184,200,216,0.15);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  transition: border-color 0.3s;
}
.proc-step:hover .proc-icon { border-color: var(--accent); }
.proc-line {
  position: absolute;
  top: 32px; left: calc(50% + 40px);
  width: calc(100% - 80px); height: 0.5px;
  background: rgba(184,200,216,0.08);
}
.proc-step:last-child .proc-line { display: none; }
.proc-n {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 0.7rem; font-weight: 700;
  color: var(--accent); letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.proc-step h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 400;
  color: var(--ice); margin-bottom: 0.6rem;
}
.proc-step p {
  font-size: 0.83rem; font-weight: 300; line-height: 1.75;
  color: var(--text-dim);
}

/* ===== CONTACT ===== */
.contact { position: relative; padding: 10rem 0; overflow: hidden; }
.contact-bg-img { position: absolute; inset: 0; }
.contact-bg-img img { width: 100%; height: 100%; object-fit: cover; }
.contact-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,17,23,0.95) 0%, rgba(13,17,23,0.85) 50%, rgba(13,17,23,0.7) 100%);
}
.contact-body {
  position: relative; z-index: 1;
  max-width: 1300px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
}
.contact-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 400;
  color: var(--ice); line-height: 1.1; margin-bottom: 1.5rem;
}
.contact-p {
  font-size: 0.95rem; font-weight: 300; line-height: 1.9;
  color: var(--text-dim); margin-bottom: 2rem;
}
.contact-facts { display: flex; flex-direction: column; gap: 0.75rem; }
.cf { display: flex; align-items: center; gap: 0.75rem; font-size: 0.88rem; font-weight: 300; color: var(--text-dim); }
.contact-card {
  background: rgba(21,28,38,0.9); backdrop-filter: blur(24px);
  border: 0.5px solid rgba(184,200,216,0.12);
  padding: 2.5rem;
}
.cc-profile {
  display: flex; align-items: center; gap: 1rem;
  padding-bottom: 1.5rem; margin-bottom: 1.5rem;
  border-bottom: 0.5px solid rgba(184,200,216,0.08);
}
.cc-avatar { width: 52px; height: 52px; border-radius: 50%; overflow: hidden; border: 2px solid var(--accent); flex-shrink: 0; }
.cc-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 400; color: var(--ice); }
.cc-role { font-size: 0.78rem; font-weight: 300; color: var(--text-dim); margin-top: 2px; }
.cc-online { display: flex; align-items: center; gap: 5px; margin-top: 4px; font-size: 0.72rem; font-weight: 300; color: #4CAF50; }
.online-dot { width: 6px; height: 6px; background: #4CAF50; border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.5} }
.cc-message { margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.6rem; }
.msg-in {
  background: rgba(184,200,216,0.06);
  border: 0.5px solid rgba(184,200,216,0.1);
  padding: 0.85rem 1.1rem; align-self: flex-start; max-width: 85%;
}
.msg-in p { font-size: 0.88rem; font-weight: 300; color: var(--text-dim); font-style: italic; line-height: 1.6; }
.msg-typing {
  display: flex; gap: 4px; align-items: center;
  padding: 0.6rem 0.75rem; align-self: flex-end;
}
.msg-typing span {
  width: 6px; height: 6px; background: var(--accent); border-radius: 50%;
  animation: typingBounce 1.2s ease-in-out infinite;
}
.msg-typing span:nth-child(2) { animation-delay: 0.15s; }
.msg-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typingBounce { 0%,60%,100%{transform:translateY(0)} 30%{transform:translateY(-5px)} }
.cc-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  background: var(--tg-grad); color: white;
  font-size: 0.85rem; font-weight: 400; letter-spacing: 0.06em;
  padding: 1rem; width: 100%; margin-bottom: 1rem;
  transition: var(--trans);
}
.cc-btn:hover { opacity: 0.88; transform: translateY(-2px); }
.cc-note { font-size: 0.73rem; font-weight: 300; color: var(--text-faint); text-align: center; line-height: 1.6; }

/* ===== FOOTER ===== */
.footer { background: var(--navy); border-top: 0.5px solid rgba(184,200,216,0.08); }
.footer-top {
  max-width: 1300px; margin: 0 auto; padding: 3rem 2rem;
  display: flex; align-items: center; gap: 3rem; flex-wrap: wrap;
}
.ft-brand { display: flex; align-items: center; gap: 0.75rem; }
.ft-name { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 400; color: var(--ice); }
.ft-sub { font-size: 0.72rem; font-weight: 300; color: var(--text-faint); margin-top: 2px; letter-spacing: 0.06em; }
.ft-nav { display: flex; gap: 2rem; margin-left: auto; flex-wrap: wrap; }
.ft-nav a { font-size: 0.78rem; font-weight: 300; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); transition: color 0.3s; }
.ft-nav a:hover { color: var(--steel); }
.ft-ig {
  display: flex; align-items: center; gap: 0.5rem;
  color: var(--steel); font-size: 0.8rem; font-weight: 300; letter-spacing: 0.06em;
  border: 0.5px solid rgba(184,200,216,0.15); padding: 0.5rem 1rem;
  transition: var(--trans);
}
.ft-ig:hover { border-color: var(--accent); color: var(--accent); }
.footer-bottom {
  border-top: 0.5px solid rgba(184,200,216,0.05);
  padding: 1.25rem 2rem;
  text-align: center;
}
.footer-bottom p { font-size: 0.72rem; font-weight: 300; color: var(--text-faint); letter-spacing: 0.06em; }

/* ===== FLOAT IG BTN ===== */
.float-btn {
  position: fixed; bottom: 2rem; right: 2rem;
  z-index: 100; width: 58px; height: 58px; border-radius: 50%;
  background: var(--tg-grad);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
  transition: var(--trans);
}
.float-btn:hover { transform: translateY(-4px) scale(1.05); }
.float-pulse {
  position: absolute; inset: -4px; border-radius: 50%;
  border: 1px solid rgba(253,29,29,0.4);
  animation: ringPulse 2.5s ease-in-out infinite;
}
@keyframes ringPulse { 0%,100%{transform:scale(1);opacity:0.5} 50%{transform:scale(1.15);opacity:0} }
.float-tip {
  position: absolute; right: 70px;
  background: rgba(13,17,23,0.92); backdrop-filter: blur(12px);
  border: 0.5px solid rgba(184,200,216,0.15);
  color: var(--ice); font-size: 0.72rem; font-weight: 300; letter-spacing: 0.05em;
  white-space: nowrap; padding: 0.4rem 0.9rem;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.float-btn:hover .float-tip { opacity: 1; }

/* ===== REVEAL ANIM ===== */
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .srv-grid { grid-template-columns: repeat(2,1fr); }
  .gal-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
  .gi-tall, .gi-wide { grid-row: span 1; grid-column: span 1; }
  .proc-steps { grid-template-columns: repeat(2,1fr); gap: 3rem; }
  .proc-line { display: none; }
}
@media (max-width: 900px) {
  .about-container { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { height: 420px; }
  .contact-body { grid-template-columns: 1fr; gap: 3rem; }
  .nav-links, .nav-ig-btn { display: none; }
  .nav-burger { display: flex; }
  .hero-left-bar, .hero-counter, .hero-stats { display: none; }
  .hero-content { padding: 0 2rem; padding-top: 6rem; }
  .footer-top { flex-direction: column; gap: 1.5rem; }
  .ft-nav { margin-left: 0; }
}
@media (max-width: 600px) {
  .srv-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: 1fr; }
  .proc-steps { grid-template-columns: 1fr; }
  .h1-bold { font-size: 3.2rem; }
  .about-visual { height: 340px; }
  .av-secondary { display: none; }
}


.legal-note {
  margin-top: 1.35rem;
  font-size: 0.76rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-faint);
  border-left: 1px solid rgba(184,200,216,0.25);
  padding-left: 1rem;
}
.tg-float-icon {
  font-size: 1.35rem;
  color: #fff;
  line-height: 1;
}
