/* =============================================
   DESIGN INSIDE — style.css
   Matches exact screenshot design
   ============================================= */

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

:root {
  --red:    #e63030;
  --dark:   #0d0d0d;
  --darker: #080808;
  --mid:    #1a1a1a;
  --white:  #ffffff;
  --muted:  rgba(255,255,255,0.55);
  --font-main: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}

/* =============================================
   CUSTOM CURSOR
   ============================================= */
.cursor-dot {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--white);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform 0.08s ease;
}

.cursor-ring {
  position: fixed;
  width: 38px; height: 38px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
  opacity: 0.7;
}

.cursor-ring.hovered {
  width: 56px; height: 56px;
  opacity: 0.3;
  border-color: var(--red);
}

/* ── Drag cursor (shown on hero right image panel) ── */
#dragCursor {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

#dragCursor.visible {
  opacity: 1;
  visibility: visible;
}

#dragCursor.scale-up {
  transform: translate(-50%, -50%) scale(1.15);
}

.drag-inner {
  position: relative;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(20, 20, 20, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3px;
  transition: border-color 0.3s, background 0.3s;
}

#dragCursor.visible .drag-inner {
  animation: dragPulse 2s ease infinite;
}

@keyframes dragPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.15); }
  50%       { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
}

.drag-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.drag-text {
  font-family: var(--font-main);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--white);
  line-height: 1;
  text-transform: uppercase;
}

.drag-arrow {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1;
  display: inline-block;
}

.drag-arrow.left  { transform: scaleX(-1); }

/* cursor-dot hidden state when over image */
.cursor-dot.hidden  { opacity: 0 !important; }
.cursor-ring.hidden { opacity: 0 !important; }

/* =============================================
   HEADER
   ============================================= */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 18px 28px 0;
  pointer-events: none;
}

.logo {
  pointer-events: all;
  text-decoration: none;
 /* background: var(--darker); */
  padding: 10px 16px 12px;
  display: inline-block;
  line-height: 1.15;
}

.logo-d {
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  display: block;
}

.logo-dot { color: var(--red); }

.logo-inside {
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  display: block;
}

.menu-trigger {
  pointer-events: all;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--darker);
  padding: 18px 24px;
  cursor: none;
  user-select: none;
}

.menu-label {
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--white);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

/* hamburger open state */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   FULLSCREEN NAV OVERLAY
   ============================================= */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--darker);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.nav-overlay-left {
  display: flex;
  align-items: center;
  padding: 120px 60px 60px;
  border-right: 1px solid rgba(255,255,255,0.06);
  background: #0a0a0a;
}

.overlay-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.overlay-link {
  font-family: var(--font-main);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.01em;
  line-height: 1.3;
  position: relative;
  display: inline-block;
  transition: color 0.25s ease;
  opacity: 0;
  transform: translateX(-30px);
  transition: color 0.25s ease, opacity 0.4s ease, transform 0.4s ease;
}

.nav-overlay.open .overlay-link {
  opacity: 1;
  transform: translateX(0);
}

.nav-overlay.open .overlay-link:nth-child(1) { transition-delay: 0.05s; }
.nav-overlay.open .overlay-link:nth-child(2) { transition-delay: 0.10s; }
.nav-overlay.open .overlay-link:nth-child(3) { transition-delay: 0.15s; }
.nav-overlay.open .overlay-link:nth-child(4) { transition-delay: 0.20s; }
.nav-overlay.open .overlay-link:nth-child(5) { transition-delay: 0.25s; }
.nav-overlay.open .overlay-link:nth-child(6) { transition-delay: 0.30s; }
.nav-overlay.open .overlay-link:nth-child(7) { transition-delay: 0.35s; }
.nav-overlay.open .overlay-link:nth-child(8) { transition-delay: 0.40s; }

.overlay-link:hover { color: var(--red); }
.overlay-link.active { color: var(--red); }

.nav-overlay-right {
  padding: 120px 60px 60px;
  overflow-y: auto;
}

.overlay-info { display: flex; flex-direction: column; gap: 28px; }

.info-block { display: flex; flex-direction: column; gap: 6px; }

.info-label {
  font-family: var(--font-main);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
}

.info-value {
  font-size: 0.92rem;
  color: var(--white);
  font-weight: 500;
}

.info-value.accent { color: var(--red); font-weight: 600; }

.info-addr {
  font-size: 0.82rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  max-width: 380px;
}

.info-phone {
  font-size: 0.85rem;
  color: var(--red);
  font-weight: 500;
  margin-top: 4px;
}

.pin { margin-right: 6px; }

.overlay-close {
  position: absolute;
  top: 20px; right: 28px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: none;
  padding: 8px;
  transition: color 0.25s;
  z-index: 10;
}

.overlay-close:hover { color: var(--red); }

/* =============================================
   HERO — SPLIT LAYOUT
   ============================================= */
.hero {
  position: relative;
  height: 100vh;
  display: grid;
  grid-template-columns: 540px 1fr;
  overflow: hidden;
}

/* LEFT DARK PANEL */
.hero-left {
  background: var(--darker);
  position: relative;
  display: flex;
  align-items: center;
  z-index: 10;
  overflow: hidden;
}

/* Dot grid — replaced by interactive canvas */
#dotCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 52px;
}

.slide-category {
  font-family: var(--font-main);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 150px;
}

/* red line before category text */
.cat-line {
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
  vertical-align: middle;
  margin-right: 2px;
}

/* animated dot-cluster bubble — shown via JS .dot-cluster element */
.dot-cluster {
  position: relative;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.dot-cluster span {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  animation: dotFloat 2.4s ease-in-out infinite;
}

/* 9 dots arranged in a 3x3 cluster like the screenshot */
.dot-cluster span:nth-child(1) { width:5px;height:5px; top:2px;  left:2px;  animation-delay:0s;    }
.dot-cluster span:nth-child(2) { width:5px;height:5px; top:2px;  left:16px; animation-delay:0.15s; }
.dot-cluster span:nth-child(3) { width:4px;height:4px; top:2px;  left:28px; animation-delay:0.3s;  }
.dot-cluster span:nth-child(4) { width:5px;height:5px; top:16px; left:0px;  animation-delay:0.1s;  }
.dot-cluster span:nth-child(5) { width:7px;height:7px; top:14px; left:14px; animation-delay:0.25s; background:rgba(255,255,255,0.75); }
.dot-cluster span:nth-child(6) { width:4px;height:4px; top:16px; left:28px; animation-delay:0.4s;  }
.dot-cluster span:nth-child(7) { width:4px;height:4px; top:28px; left:2px;  animation-delay:0.2s;  }
.dot-cluster span:nth-child(8) { width:5px;height:5px; top:28px; left:14px; animation-delay:0.35s; }
.dot-cluster span:nth-child(9) { width:3px;height:3px; top:30px; left:28px; animation-delay:0.5s;  }

@keyframes dotFloat {
  0%,100% { transform: translateY(0);   opacity: 0.55; }
  50%      { transform: translateY(-3px); opacity: 1;   }
}

.hero-title {
  font-family: var(--font-main);
  font-weight: 900;
  font-size: 4.6rem;
  line-height: 1.0;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.title-solid {
  color: var(--white);
  display: block;
}

.title-outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
  display: block;
  font-size: 4.2rem;
  margin-top: -76px;
  margin-bottom: -18px;
}

.hero-desc {
  font-size: 0.82rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.6);
  margin-bottom: 60px;
  max-width: 380px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  margin-bottom: 48px;
}

.btn-outline {
  font-family: var(--font-main);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 14px 28px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: var(--white);
  cursor: none;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

/* Progress bar at bottom of left panel */
.hero-progress {
  position: absolute;
  bottom: 40px;
  left: 52px;
  right: 52px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
}

.progress-bar {
  position: relative;
  height: 100%;
  background: linear-gradient(to right, #c02020, var(--red), #ff6060);
  width: 0%;
  transition: none;
  box-shadow: 0 0 8px rgba(230,48,48,0.7);
  border-radius: 1px;
}

.progress-bar::after {
  content: '';
  position: absolute;
  right: -3px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #ff9090;
  border-radius: 50%;
  box-shadow: 0 0 6px 2px rgba(230,48,48,0.9);
}

/* RIGHT IMAGE PANEL */
.hero-right {
  position: relative;
  overflow: hidden;
}

.slide-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--darker);
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slide-img.active { opacity: 1; }

/* Slider nav bar — bottom right */
.slider-nav-bar {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 0;
  z-index: 20;
  background: var(--darker);
}

.slider-nav-label {
  font-family: var(--font-main);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.5);
  padding: 18px 20px;
}

.slider-arrow {
  width: 52px; height: 52px;
  background: var(--mid);
  border: none;
  color: var(--white);
  font-size: 1.1rem;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
}

.slider-arrow:hover { background: #2a2a2a; }

.slider-arrow-close {
  background: var(--red);
  color: var(--white);
}

.slider-arrow-close:hover { background: #c02020; }

/* Side dots — right edge */
.side-dots {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 20;
}

.side-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: none;
  transition: all 0.3s;
}

.side-dot.active {
  background: var(--red);
  height: 22px;
  border-radius: 3px;
}

/* =============================================
   ABOUT HERO SECTION
   ============================================= */
.about-hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  display: none;
}

.about-hero.visible { display: flex; }

.about-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
}

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.about-eyebrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.eyebrow-line {
  width: 40px;
  height: 3px;
  background: var(--red);
}

.about-eyebrow span {
  font-family: var(--font-main);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.6);
}

.about-tagline {
  font-family: var(--font-main);
  font-weight: 900;
  font-size: 4.2rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.tagline-solid { color: var(--white); display: block; }

.tagline-outline {
  color: transparent;
  -webkit-text-stroke: 2.5px var(--white);
  display: block;
}

/* Mouse scroll icon */
.scroll-mouse {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.mouse-icon {
  width: 28px; height: 44px;
  border: 2px solid rgba(255,255,255,0.45);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.mouse-dot {
  width: 4px; height: 4px;
  background: var(--white);
  border-radius: 50%;
  animation: mouseScroll 1.6s ease infinite;
}

@keyframes mouseScroll {
  0%   { transform: translateY(0); opacity: 1; }
  80%  { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

.scroll-down-label {
  font-family: var(--font-main);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  color: rgba(255,255,255,0.5);
}

.about-nav-dots {
  position: absolute;
  right: 24px;
  bottom: 48px;
  display: flex;
  gap: 6px;
  z-index: 3;
}

.about-nav-dots span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  display: block;
}

.about-nav-dots span:first-child { background: var(--red); }

/* =============================================
   ABOUT BODY CONTENT
   ============================================= */
.about-body {
  background: var(--darker);
  padding: 100px 0;
  display: none;
}

.about-body.visible { display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 60px; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-col-left { display: flex; flex-direction: column; gap: 20px; }

.about-heading {
  font-family: var(--font-main);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.1;
  margin-top: 50px;
}

.red-line { width: 48px; height: 3px; background: var(--red); }

.about-col-left p {
  font-size: 0.9rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.65);
}

.btn-red {
  align-self: flex-start;
  font-family: var(--font-main);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  cursor: none;
  transition: background 0.3s;
  margin-top: 8px;
}

.btn-red:hover { background: #c02020; }

.about-col-right img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

/* =============================================
   PARTICLE CURSOR
   ============================================= */
.cursor-particle {
  position: fixed;
  pointer-events: none;
  z-index: 9997;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* =============================================
   FLOATING ACTION BUTTONS
   ============================================= */

/* outer wrapper — fixed position anchor */
.float-wrap {
  position: fixed;
  right: 20px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 300;
}

/* collapsible action buttons container */
.float-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* base button */
.float-btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: none;
  border: none;
  position: relative;
  /* transform & opacity driven by floattoggle.js */
}

/* Call — bright green */
.float-call {
  background: #22c55e;
  color: #fff;
  box-shadow: 0 4px 20px rgba(34,197,94,0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.float-call:hover {
  transform: scale(1.13) !important;
  box-shadow: 0 6px 28px rgba(34,197,94,0.7);
}

/* WhatsApp — WhatsApp green with pulse ring */
.float-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.float-whatsapp::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.45);
  animation: waPulse 2.2s ease infinite;
  pointer-events: none;
}
@keyframes waPulse {
  0%   { transform: scale(1);    opacity: 0.85; }
  70%  { transform: scale(1.45); opacity: 0; }
  100% { transform: scale(1.45); opacity: 0; }
}
.float-whatsapp:hover {
  transform: scale(1.13) !important;
  box-shadow: 0 6px 28px rgba(37,211,102,0.7);
}

/* Toggle button — red, always visible */
.float-toggle {
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 20px rgba(230,48,48,0.5);
  font-size: 1rem;
  transition: background 0.3s, transform 0.35s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.float-toggle:hover {
  box-shadow: 0 6px 28px rgba(230,48,48,0.7);
  transform: scale(1.1);
}
.toggle-plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Tooltip on hover */
.float-btn[title]::after {
  content: attr(title);
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(8,8,8,0.92);
  color: #fff;
  font-family: var(--font-main);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 2px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.float-btn[title]:hover::after { opacity: 1; }

/* =============================================
   PAGE SECTIONS (for sub-pages)
   ============================================= */
.page-hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-title {
  font-family: var(--font-main);
  font-size: 5rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.page-title .outline {
  color: transparent;
  -webkit-text-stroke: 2.5px var(--white);
}

/* =============================================
   PORTFOLIO GRID
   ============================================= */
.portfolio-section {
  background: var(--darker);
  padding: 100px 60px;
}

.section-header { text-align: center; margin-bottom: 60px; }

.section-tag {
  font-family: var(--font-main);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--red);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.section-tag::before, .section-tag::after {
  content: '';
  width: 32px; height: 1px;
  background: var(--red);
}

.section-title {
  font-family: var(--font-main);
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.section-title .outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  max-width: 1200px;
  margin: 0 auto;
}

.port-card {
  position: relative;
  overflow: hidden;
  height: 360px;
  cursor: none;
}

.port-card:first-child { grid-column: span 2; height: 440px; }

.port-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s ease;
}

.port-card:hover .port-card-img { transform: scale(1.07); }

.port-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.4s;
}

.port-card:hover .port-card-overlay { background: rgba(0,0,0,0.55); }

.port-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  transform: translateY(100%);
  transition: transform 0.45s ease;
}

.port-card:hover .port-card-info { transform: translateY(0); }

.port-card-cat {
  font-family: var(--font-main);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--red);
  text-transform: uppercase;
}

.port-card-name {
  font-family: var(--font-main);
  font-size: 1.5rem;
  font-weight: 800;
  margin-top: 4px;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section {
  background: var(--darker);
  padding: 120px 60px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 60px auto 0;
}

.contact-form { display: flex; flex-direction: column; gap: 22px; }

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.form-field input,
.form-field textarea,
.form-field select {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 12px 0;
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}

.form-field input:focus,
.form-field textarea:focus { border-bottom-color: var(--red); }

.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,0.25); }

.form-field textarea { resize: none; height: 100px; }

/* Form status message */
.form-status {
  display: none;
  padding: 14px 18px;
  font-size: 0.82rem;
  font-family: var(--font-main);
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 2px;
  margin-top: 4px;
  animation: fadeSlideIn 0.4s ease;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.form-status.success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
}

.form-status.error {
  background: rgba(230, 48, 48, 0.1);
  border: 1px solid rgba(230, 48, 48, 0.3);
  color: #f87171;
}

/* Submit button */
#contactSubmit {
  align-self: flex-start;
  font-family: var(--font-main);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 16px 44px;
  cursor: none;
  margin-top: 8px;
  transition: background 0.3s, transform 0.15s;
  position: relative;
  overflow: hidden;
}

#contactSubmit:hover:not(:disabled) { background: #c02020; }
#contactSubmit:active:not(:disabled) { transform: scale(0.97); }
#contactSubmit:disabled { opacity: 0.6; cursor: not-allowed; }

/* Sheets badge */
.sheets-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.08em;
  margin-top: -4px;
}

/* =============================================
   SERVICES GRID
   ============================================= */
.services-section {
  background: var(--dark);
  padding: 100px 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 60px auto 0;
}

.service-card {
  position: relative;
  overflow: hidden;
  height: 400px;
  cursor: none;
}

.service-card-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card-bg { transform: scale(1.07); }

.service-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 50%, rgba(0,0,0,0.3));
  transition: background 0.4s;
}

.service-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 30px;
  transform: translateY(30px);
  transition: transform 0.45s ease;
}

.service-card:hover .service-card-content { transform: translateY(0); }

.service-num {
  font-family: var(--font-main);
  font-size: 0.7rem;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 6px;
}

.service-name {
  font-family: var(--font-main);
  font-size: 1.6rem;
  font-weight: 800;
}

.service-desc {
  font-size: 0.78rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-top: 10px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.35s ease 0.1s;
}

.service-card:hover .service-desc { opacity: 1; transform: translateY(0); }

/* =============================================
   BLOG
   ============================================= */
.blog-section {
  background: var(--darker);
  padding: 100px 60px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 60px auto 0;
}

.blog-card { cursor: none; }

.blog-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  overflow: hidden;
}

.blog-card:hover .blog-card-img { transform: scale(1.04); }

.blog-card-body { padding: 20px 0; }

.blog-date {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--red);
  text-transform: uppercase;
}

.blog-title {
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 800;
  margin: 8px 0;
  line-height: 1.35;
}

.blog-excerpt {
  font-size: 0.8rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
}

/* =============================================
   REVEAL / SCROLL ANIMATION
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.in { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-left.in { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-right.in { opacity: 1; transform: translateX(0); }

/* =============================================
   PAGE TRANSITION
   ============================================= */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--red);
  z-index: 9000;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.77,0,0.175,1);
  pointer-events: none;
}

.page-transition.entering { transform: translateY(0); }
.page-transition.leaving  { transform: translateY(-100%); }


    /* =============================================
       DESIGN INSIDE — style.css
       Matches exact screenshot design
       ============================================= */

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

    :root {
      --red:    #e63030;
      --dark:   #0d0d0d;
      --darker: #080808;
      --mid:    #1a1a1a;
      --white:  #ffffff;
      --muted:  rgba(255,255,255,0.55);
      --font-main: 'Montserrat', sans-serif;
      --font-body: 'Inter', sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      background: var(--dark);
      color: var(--white);
      overflow-x: hidden;
      cursor: none;
    }

    /* =============================================
       CUSTOM CURSOR
       ============================================= */
    .cursor-dot {
      position: fixed;
      width: 8px; height: 8px;
      background: var(--white);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%,-50%);
      transition: transform 0.08s ease;
    }

    .cursor-ring {
      position: fixed;
      width: 38px; height: 38px;
      border: 1.5px solid rgba(255,255,255,0.5);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%,-50%);
      transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
      opacity: 0.7;
    }

    .cursor-ring.hovered {
      width: 56px; height: 56px;
      opacity: 0.3;
      border-color: var(--red);
    }

    /* ── Drag cursor (shown on hero right image panel) ── */
    #dragCursor {
      position: fixed;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    }

    #dragCursor.visible {
      opacity: 1;
      visibility: visible;
    }

    #dragCursor.scale-up {
      transform: translate(-50%, -50%) scale(1.15);
    }

    .drag-inner {
      position: relative;
      width: 88px;
      height: 88px;
      border-radius: 50%;
      background: rgba(20, 20, 20, 0.72);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border: 1.5px solid rgba(255, 255, 255, 0.55);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 3px;
      transition: border-color 0.3s, background 0.3s;
    }

    #dragCursor.visible .drag-inner {
      animation: dragPulse 2s ease infinite;
    }

    @keyframes dragPulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.15); }
      50%       { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
    }

    .drag-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
    }

    .drag-text {
      font-family: var(--font-main);
      font-size: 0.52rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      color: var(--white);
      line-height: 1;
      text-transform: uppercase;
    }

    .drag-arrow {
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.85);
      line-height: 1;
      display: inline-block;
    }

    .drag-arrow.left  { transform: scaleX(-1); }

    /* cursor-dot hidden state when over image */
    .cursor-dot.hidden  { opacity: 0 !important; }
    .cursor-ring.hidden { opacity: 0 !important; }

    /* =============================================
       HEADER
       ============================================= */
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 500;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      padding: 18px 28px 0;
      pointer-events: none;
    }

    .logo {
      pointer-events: all;
      text-decoration: none;
      padding: 10px 16px 12px;
      display: inline-block;
      line-height: 1.15;
    }

    .logo-d {
      font-family: var(--font-main);
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--white);
      letter-spacing: 0.02em;
      display: block;
    }

    .logo-dot { color: var(--red); }

    .logo-inside {
      font-family: var(--font-main);
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--white);
      letter-spacing: 0.02em;
      display: block;
    }

    .menu-trigger {
      pointer-events: all;
      display: flex;
      align-items: center;
      gap: 14px;
      background: var(--darker);
      padding: 18px 24px;
      cursor: none;
      user-select: none;
    }

    .menu-label {
      font-family: var(--font-main);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      color: var(--white);
    }

    .hamburger {
      display: flex;
      flex-direction: column;
      gap: 5px;
      cursor: none;
    }

    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--white);
      transition: all 0.3s ease;
    }

    /* hamburger open state */
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* =============================================
       FULLSCREEN NAV OVERLAY
       ============================================= */
    .nav-overlay {
      position: fixed;
      inset: 0;
      z-index: 400;
      display: grid;
      grid-template-columns: 1fr 1fr;
      background: var(--darker);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.45s ease, visibility 0.45s ease;
    }

    .nav-overlay.open {
      opacity: 1;
      visibility: visible;
    }

    .nav-overlay-left {
      display: flex;
      align-items: center;
      padding: 120px 60px 60px;
      border-right: 1px solid rgba(255,255,255,0.06);
      background: #0a0a0a;
    }

    .overlay-nav {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .overlay-link {
      font-family: var(--font-main);
      font-size: 2.1rem;
      font-weight: 800;
      color: var(--white);
      text-decoration: none;
      letter-spacing: -0.01em;
      line-height: 1.3;
      position: relative;
      display: inline-block;
      transition: color 0.25s ease;
      opacity: 0;
      transform: translateX(-30px);
      transition: color 0.25s ease, opacity 0.4s ease, transform 0.4s ease;
    }

    .nav-overlay.open .overlay-link {
      opacity: 1;
      transform: translateX(0);
    }

    .nav-overlay.open .overlay-link:nth-child(1) { transition-delay: 0.05s; }
    .nav-overlay.open .overlay-link:nth-child(2) { transition-delay: 0.10s; }
    .nav-overlay.open .overlay-link:nth-child(3) { transition-delay: 0.15s; }
    .nav-overlay.open .overlay-link:nth-child(4) { transition-delay: 0.20s; }
    .nav-overlay.open .overlay-link:nth-child(5) { transition-delay: 0.25s; }
    .nav-overlay.open .overlay-link:nth-child(6) { transition-delay: 0.30s; }
    .nav-overlay.open .overlay-link:nth-child(7) { transition-delay: 0.35s; }
    .nav-overlay.open .overlay-link:nth-child(8) { transition-delay: 0.40s; }

    .overlay-link:hover { color: var(--red); }
    .overlay-link.active { color: var(--red); }

    .nav-overlay-right {
      padding: 120px 60px 60px;
      overflow-y: auto;
    }

    .overlay-info { display: flex; flex-direction: column; gap: 28px; }

    .info-block { display: flex; flex-direction: column; gap: 6px; }

    .info-label {
      font-family: var(--font-main);
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      color: rgba(255,255,255,0.45);
      text-transform: uppercase;
    }

    .info-value {
      font-size: 0.92rem;
      color: var(--white);
      font-weight: 500;
    }

    .info-value.accent { color: var(--red); font-weight: 600; }

    .info-addr {
      font-size: 0.82rem;
      line-height: 1.75;
      color: rgba(255,255,255,0.6);
      max-width: 380px;
    }

    .info-phone {
      font-size: 0.85rem;
      color: var(--red);
      font-weight: 500;
      margin-top: 4px;
    }

    .pin { margin-right: 6px; }

    .overlay-close {
      position: absolute;
      top: 20px; right: 28px;
      background: none;
      border: none;
      color: var(--white);
      font-size: 1.4rem;
      cursor: none;
      padding: 8px;
      transition: color 0.25s;
      z-index: 10;
    }

    .overlay-close:hover { color: var(--red); }

    /* =============================================
       HERO — SPLIT LAYOUT (SWAPPED: left content on right, right image on left)
       ============================================= */
    .hero {
      position: relative;
      height: 100vh;
      display: grid;
      grid-template-columns: 1fr 540px;  /* image first (left), content second (right) */
      overflow: hidden;
    }

    /* LEFT PANEL — now the image (was .hero-right) */
    .hero-image {
      position: relative;
      overflow: hidden;
      background: var(--darker);
      order: 1;  /* ensure it stays left */
    }

    .slide-img {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      background-color: var(--darker);
      opacity: 0;
      transition: opacity 0.8s ease;
    }
    .slide-img.active { opacity: 1; }

    /* RIGHT PANEL — now the dark content (was .hero-left) */
    .hero-content-panel {
      background: var(--darker);
      position: relative;
      display: flex;
      align-items: center;
      z-index: 10;
      overflow: hidden;
      order: 2;  /* ensure it stays right */
    }

    /* Dot grid — replaced by interactive canvas */
    #dotCanvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 0 52px;
    }

    .slide-category {
      font-family: var(--font-main);
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.28em;
      color: rgba(255,255,255,0.55);
      margin-bottom: 0px;
      display: flex;
      align-items: center;
      gap: 14px;
      margin-top: 150px;
    }

    /* red line before category text */
    .cat-line {
      display: inline-block;
      width: 32px;
      height: 2px;
      background: var(--red);
      flex-shrink: 0;
      vertical-align: middle;
      margin-right: 2px;
    }

    /* animated dot-cluster bubble — shown via JS .dot-cluster element */
    .dot-cluster {
      position: relative;
      width: 38px;
      height: 38px;
      flex-shrink: 0;
    }

    .dot-cluster span {
      position: absolute;
      border-radius: 50%;
      background: rgba(255,255,255,0.55);
      animation: dotFloat 2.4s ease-in-out infinite;
    }

    /* 9 dots arranged in a 3x3 cluster like the screenshot */
    .dot-cluster span:nth-child(1) { width:5px;height:5px; top:2px;  left:2px;  animation-delay:0s;    }
    .dot-cluster span:nth-child(2) { width:5px;height:5px; top:2px;  left:16px; animation-delay:0.15s; }
    .dot-cluster span:nth-child(3) { width:4px;height:4px; top:2px;  left:28px; animation-delay:0.3s;  }
    .dot-cluster span:nth-child(4) { width:5px;height:5px; top:16px; left:0px;  animation-delay:0.1s;  }
    .dot-cluster span:nth-child(5) { width:7px;height:7px; top:14px; left:14px; animation-delay:0.25s; background:rgba(255,255,255,0.75); }
    .dot-cluster span:nth-child(6) { width:4px;height:4px; top:16px; left:28px; animation-delay:0.4s;  }
    .dot-cluster span:nth-child(7) { width:4px;height:4px; top:28px; left:2px;  animation-delay:0.2s;  }
    .dot-cluster span:nth-child(8) { width:5px;height:5px; top:28px; left:14px; animation-delay:0.35s; }
    .dot-cluster span:nth-child(9) { width:3px;height:3px; top:30px; left:28px; animation-delay:0.5s;  }

    @keyframes dotFloat {
      0%,100% { transform: translateY(0);   opacity: 0.55; }
      50%      { transform: translateY(-3px); opacity: 1;   }
    }

    .hero-title {
      font-family: var(--font-main);
      font-weight: 900;
      font-size: 4.6rem;
      line-height: 1.0;
      margin-bottom: 28px;
      letter-spacing: -0.02em;
    }

    .title-solid {
      color: var(--white);
      display: block;
    }

    .title-outline {
      color: transparent;
      -webkit-text-stroke: 2px var(--white);
      display: block;
      font-size: 4.2rem;
      margin-top: -76px;
      margin-bottom: -18px;
    }

    .hero-desc {
      font-size: 0.82rem;
      line-height: 1.85;
      color: rgba(255,255,255,0.6);
      margin-bottom: 60px;
      max-width: 380px;
    }

    .hero-btns {
      display: flex;
      gap: 14px;
      margin-bottom: 48px;
    }

    .btn-outline {
      font-family: var(--font-main);
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      padding: 14px 28px;
      background: transparent;
      border: 1.5px solid rgba(255,255,255,0.5);
      color: var(--white);
      cursor: none;
      transition: all 0.3s ease;
    }

    .btn-outline:hover {
      background: var(--white);
      color: var(--dark);
      border-color: var(--white);
    }

    /* Progress bar at bottom of content panel */
    .hero-progress {
      position: absolute;
      bottom: 40px;
      left: 52px;
      right: 52px;
      height: 2px;
      background: rgba(255,255,255,0.1);
      overflow: hidden;
    }

    .progress-bar {
      position: relative;
      height: 100%;
      background: linear-gradient(to right, #c02020, var(--red), #ff6060);
      width: 0%;
      transition: none;
      box-shadow: 0 0 8px rgba(230,48,48,0.7);
      border-radius: 1px;
    }

    .progress-bar::after {
      content: '';
      position: absolute;
      right: -3px;
      top: 50%;
      transform: translateY(-50%);
      width: 6px;
      height: 6px;
      background: #ff9090;
      border-radius: 50%;
      box-shadow: 0 0 6px 2px rgba(230,48,48,0.9);
    }

    /* Slider nav bar — bottom right of image panel */
    .slider-nav-bar {
      position: absolute;
      bottom: 0;
      right: 0;
      display: flex;
      align-items: center;
      gap: 0;
      z-index: 20;
      background: var(--darker);
    }

    .slider-nav-label {
      font-family: var(--font-main);
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      color: rgba(255,255,255,0.5);
      padding: 18px 20px;
    }

    .slider-arrow {
      width: 52px; height: 52px;
      background: var(--mid);
      border: none;
      color: var(--white);
      font-size: 1.1rem;
      cursor: none;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.25s;
    }

    .slider-arrow:hover { background: #2a2a2a; }

    .slider-arrow-close {
      background: var(--red);
      color: var(--white);
    }

    .slider-arrow-close:hover { background: #c02020; }

    /* Side dots — right edge of image panel */
    .side-dots {
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 20;
    }

    .side-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: rgba(255,255,255,0.2);
      cursor: none;
      transition: all 0.3s;
    }

    .side-dot.active {
      background: var(--red);
      height: 22px;
      border-radius: 3px;
    }

    /* =============================================
       ABOUT HERO SECTION
       ============================================= */
    .about-hero {
      position: relative;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      display: none;
    }

    .about-hero.visible { display: flex; }

    .about-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
    }

    .about-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.72);
    }

    .about-hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 40px;
    }

    .about-eyebrow {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }

    .eyebrow-line {
      width: 40px;
      height: 3px;
      background: var(--red);
    }

    .about-eyebrow span {
      font-family: var(--font-main);
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.28em;
      color: rgba(255,255,255,0.6);
    }

    .about-tagline {
      font-family: var(--font-main);
      font-weight: 900;
      font-size: 4.2rem;
      line-height: 1.1;
      letter-spacing: -0.02em;
    }

    .tagline-solid { color: var(--white); display: block; }

    .tagline-outline {
      color: transparent;
      -webkit-text-stroke: 2.5px var(--white);
      display: block;
    }

    /* Mouse scroll icon */
    .scroll-mouse {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }

    .mouse-icon {
      width: 28px; height: 44px;
      border: 2px solid rgba(255,255,255,0.45);
      border-radius: 14px;
      display: flex;
      justify-content: center;
      padding-top: 8px;
    }

    .mouse-dot {
      width: 4px; height: 4px;
      background: var(--white);
      border-radius: 50%;
      animation: mouseScroll 1.6s ease infinite;
    }

    @keyframes mouseScroll {
      0%   { transform: translateY(0); opacity: 1; }
      80%  { transform: translateY(12px); opacity: 0; }
      100% { transform: translateY(0); opacity: 0; }
    }

    .scroll-down-label {
      font-family: var(--font-main);
      font-size: 0.62rem;
      font-weight: 600;
      letter-spacing: 0.26em;
      color: rgba(255,255,255,0.5);
    }

    .about-nav-dots {
      position: absolute;
      right: 24px;
      bottom: 48px;
      display: flex;
      gap: 6px;
      z-index: 3;
    }

    .about-nav-dots span {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: rgba(255,255,255,0.3);
      display: block;
    }

    .about-nav-dots span:first-child { background: var(--red); }

    /* =============================================
       ABOUT BODY CONTENT
       ============================================= */
    .about-body {
      background: var(--darker);
      padding: 100px 0;
      display: none;
    }

    .about-body.visible { display: block; }

    .container { max-width: 1200px; margin: 0 auto; padding: 0 60px; }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .about-col-left { display: flex; flex-direction: column; gap: 20px; }

    .about-heading {
      font-family: var(--font-main);
      font-size: 2.8rem;
      font-weight: 900;
      line-height: 1.1;
      margin-top: 50px;
    }

    .red-line { width: 48px; height: 3px; background: var(--red); }

    .about-col-left p {
      font-size: 0.9rem;
      line-height: 1.9;
      color: rgba(255,255,255,0.65);
    }

    .btn-red {
      align-self: flex-start;
      font-family: var(--font-main);
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      background: var(--red);
      color: var(--white);
      border: none;
      padding: 14px 32px;
      cursor: none;
      transition: background 0.3s;
      margin-top: 8px;
    }

    .btn-red:hover { background: #c02020; }

    .about-col-right img {
      width: 100%;
      height: 480px;
      object-fit: cover;
      display: block;
    }

    /* =============================================
       PARTICLE CURSOR
       ============================================= */
    .cursor-particle {
      position: fixed;
      pointer-events: none;
      z-index: 9997;
      border-radius: 50%;
      transform: translate(-50%, -50%);
    }

    /* =============================================
       FLOATING ACTION BUTTONS
       ============================================= */

    /* outer wrapper — fixed position anchor */
    .float-wrap {
      position: fixed;
      right: 20px;
      bottom: 80px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      z-index: 300;
    }

    /* collapsible action buttons container */
    .float-actions {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }

    /* base button */
    .float-btn {
      width: 50px; height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      cursor: none;
      border: none;
      position: relative;
      /* transform & opacity driven by floattoggle.js */
    }

    /* Call — bright green */
    .float-call {
      background: #22c55e;
      color: #fff;
      box-shadow: 0 4px 20px rgba(34,197,94,0.5);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .float-call:hover {
      transform: scale(1.13) !important;
      box-shadow: 0 6px 28px rgba(34,197,94,0.7);
    }

    /* WhatsApp — WhatsApp green with pulse ring */
    .float-whatsapp {
      background: #25d366;
      color: #fff;
      box-shadow: 0 4px 20px rgba(37,211,102,0.5);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .float-whatsapp::before {
      content: '';
      position: absolute;
      inset: -5px;
      border-radius: 50%;
      border: 2px solid rgba(37,211,102,0.45);
      animation: waPulse 2.2s ease infinite;
      pointer-events: none;
    }
    @keyframes waPulse {
      0%   { transform: scale(1);    opacity: 0.85; }
      70%  { transform: scale(1.45); opacity: 0; }
      100% { transform: scale(1.45); opacity: 0; }
    }
    .float-whatsapp:hover {
      transform: scale(1.13) !important;
      box-shadow: 0 6px 28px rgba(37,211,102,0.7);
    }

    /* Toggle button — red, always visible */
    .float-toggle {
      background: var(--red);
      color: #fff;
      box-shadow: 0 4px 20px rgba(230,48,48,0.5);
      font-size: 1rem;
      transition: background 0.3s, transform 0.35s cubic-bezier(0.34,1.56,0.64,1),
                  box-shadow 0.25s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .float-toggle:hover {
      box-shadow: 0 6px 28px rgba(230,48,48,0.7);
      transform: scale(1.1);
    }
    .toggle-plus {
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    /* Tooltip on hover */
    .float-btn[title]::after {
      content: attr(title);
      position: absolute;
      right: 60px;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(8,8,8,0.92);
      color: #fff;
      font-family: var(--font-main);
      font-size: 0.58rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 6px 12px;
      border-radius: 2px;
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s ease;
    }
    .float-btn[title]:hover::after { opacity: 1; }

    /* =============================================
       PAGE SECTIONS (for sub-pages)
       ============================================= */
    .page-hero {
      position: relative;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .page-hero-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
    }

    .page-hero-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.7);
    }

    .page-hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
    }

    .page-title {
      font-family: var(--font-main);
      font-size: 5rem;
      font-weight: 900;
      line-height: 1.05;
      letter-spacing: -0.02em;
    }

    .page-title .outline {
      color: transparent;
      -webkit-text-stroke: 2.5px var(--white);
    }

    /* =============================================
       PORTFOLIO GRID
       ============================================= */
    .portfolio-section {
      background: var(--darker);
      padding: 100px 60px;
    }

    .section-header { text-align: center; margin-bottom: 60px; }

    .section-tag {
      font-family: var(--font-main);
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.28em;
      color: var(--red);
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
    }

    .section-tag::before, .section-tag::after {
      content: '';
      width: 32px; height: 1px;
      background: var(--red);
    }

    .section-title {
      font-family: var(--font-main);
      font-size: 3rem;
      font-weight: 900;
      letter-spacing: -0.02em;
    }

    .section-title .outline {
      color: transparent;
      -webkit-text-stroke: 2px var(--white);
    }

    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 3px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .port-card {
      position: relative;
      overflow: hidden;
      height: 360px;
      cursor: none;
    }

    .port-card:first-child { grid-column: span 2; height: 440px; }

    .port-card-img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.65s ease;
    }

    .port-card:hover .port-card-img { transform: scale(1.07); }

    .port-card-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0);
      transition: background 0.4s;
    }

    .port-card:hover .port-card-overlay { background: rgba(0,0,0,0.55); }

    .port-card-info {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 28px;
      transform: translateY(100%);
      transition: transform 0.45s ease;
    }

    .port-card:hover .port-card-info { transform: translateY(0); }

    .port-card-cat {
      font-family: var(--font-main);
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      color: var(--red);
      text-transform: uppercase;
    }

    .port-card-name {
      font-family: var(--font-main);
      font-size: 1.5rem;
      font-weight: 800;
      margin-top: 4px;
    }

    /* =============================================
       CONTACT PAGE
       ============================================= */
    .contact-section {
      background: var(--darker);
      padding: 120px 60px;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      max-width: 1200px;
      margin: 60px auto 0;
    }

    .contact-form { display: flex; flex-direction: column; gap: 22px; }

    .form-field {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .form-field label {
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
    }

    .form-field input,
    .form-field textarea,
    .form-field select {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1);
      border-bottom: 1px solid rgba(255,255,255,0.3);
      color: var(--white);
      padding: 12px 0;
      font-family: var(--font-body);
      font-size: 0.88rem;
      outline: none;
      transition: border-color 0.3s;
      width: 100%;
      background: transparent;
      border: none;
      border-bottom: 1px solid rgba(255,255,255,0.18);
    }

    .form-field input:focus,
    .form-field textarea:focus { border-bottom-color: var(--red); }

    .form-field input::placeholder,
    .form-field textarea::placeholder { color: rgba(255,255,255,0.25); }

    .form-field textarea { resize: none; height: 100px; }

    /* Form status message */
    .form-status {
      display: none;
      padding: 14px 18px;
      font-size: 0.82rem;
      font-family: var(--font-main);
      font-weight: 500;
      letter-spacing: 0.05em;
      border-radius: 2px;
      margin-top: 4px;
      animation: fadeSlideIn 0.4s ease;
    }

    @keyframes fadeSlideIn {
      from { opacity: 0; transform: translateY(-8px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .form-status.success {
      background: rgba(34, 197, 94, 0.1);
      border: 1px solid rgba(34, 197, 94, 0.3);
      color: #4ade80;
    }

    .form-status.error {
      background: rgba(230, 48, 48, 0.1);
      border: 1px solid rgba(230, 48, 48, 0.3);
      color: #f87171;
    }

    /* Submit button */
    #contactSubmit {
      align-self: flex-start;
      font-family: var(--font-main);
      font-size: 0.7rem;
      font-weight: 800;
      letter-spacing: 0.26em;
      text-transform: uppercase;
      background: var(--red);
      color: var(--white);
      border: none;
      padding: 16px 44px;
      cursor: none;
      margin-top: 8px;
      transition: background 0.3s, transform 0.15s;
      position: relative;
      overflow: hidden;
    }

    #contactSubmit:hover:not(:disabled) { background: #c02020; }
    #contactSubmit:active:not(:disabled) { transform: scale(0.97); }
    #contactSubmit:disabled { opacity: 0.6; cursor: not-allowed; }

    /* Sheets badge */
    .sheets-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: 0.6rem;
      color: rgba(255,255,255,0.28);
      letter-spacing: 0.08em;
      margin-top: -4px;
    }

    /* =============================================
       SERVICES GRID
       ============================================= */
    .services-section {
      background: var(--dark);
      padding: 100px 60px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 2px;
      max-width: 1200px;
      margin: 60px auto 0;
    }

    .service-card {
      position: relative;
      overflow: hidden;
      height: 400px;
      cursor: none;
    }

    .service-card-bg {
      position: absolute; inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform 0.6s ease;
    }

    .service-card:hover .service-card-bg { transform: scale(1.07); }

    .service-card-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.88) 50%, rgba(0,0,0,0.3));
      transition: background 0.4s;
    }

    .service-card-content {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 30px;
      transform: translateY(30px);
      transition: transform 0.45s ease;
    }

    .service-card:hover .service-card-content { transform: translateY(0); }

    .service-num {
      font-family: var(--font-main);
      font-size: 0.7rem;
      color: var(--red);
      font-weight: 700;
      letter-spacing: 0.2em;
      margin-bottom: 6px;
    }

    .service-name {
      font-family: var(--font-main);
      font-size: 1.6rem;
      font-weight: 800;
    }

    .service-desc {
      font-size: 0.78rem;
      line-height: 1.8;
      color: rgba(255,255,255,0.6);
      margin-top: 10px;
      opacity: 0;
      transform: translateY(8px);
      transition: all 0.35s ease 0.1s;
    }

    .service-card:hover .service-desc { opacity: 1; transform: translateY(0); }

    /* =============================================
       BLOG
       ============================================= */
    .blog-section {
      background: var(--darker);
      padding: 100px 60px;
    }

    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 24px;
      max-width: 1200px;
      margin: 60px auto 0;
    }

    .blog-card { cursor: none; }

    .blog-card-img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
      overflow: hidden;
    }

    .blog-card:hover .blog-card-img { transform: scale(1.04); }

    .blog-card-body { padding: 20px 0; }

    .blog-date {
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      color: var(--red);
      text-transform: uppercase;
    }

    .blog-title {
      font-family: var(--font-main);
      font-size: 1.1rem;
      font-weight: 800;
      margin: 8px 0;
      line-height: 1.35;
    }

    .blog-excerpt {
      font-size: 0.8rem;
      line-height: 1.75;
      color: rgba(255,255,255,0.55);
    }

    /* =============================================
       REVEAL / SCROLL ANIMATION
       ============================================= */
    .reveal {
      opacity: 0;
      transform: translateY(36px);
      transition: opacity 0.75s ease, transform 0.75s ease;
    }

    .reveal.in { opacity: 1; transform: translateY(0); }

    .reveal-left {
      opacity: 0;
      transform: translateX(-36px);
      transition: opacity 0.75s ease, transform 0.75s ease;
    }

    .reveal-left.in { opacity: 1; transform: translateX(0); }

    .reveal-right {
      opacity: 0;
      transform: translateX(36px);
      transition: opacity 0.75s ease, transform 0.75s ease;
    }

    .reveal-right.in { opacity: 1; transform: translateX(0); }

    /* =============================================
       PAGE TRANSITION
       ============================================= */
    .page-transition {
      position: fixed;
      inset: 0;
      background: var(--red);
      z-index: 9000;
      transform: translateY(100%);
      transition: transform 0.5s cubic-bezier(0.77,0,0.175,1);
      pointer-events: none;
    }

    .page-transition.entering { transform: translateY(0); }
    .page-transition.leaving  { transform: translateY(-100%);