:root {
  /* ===== GLOBAL FONT TOKENS ===== */
  --font-hero: 'Playfair Display', serif;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --font-ui: 'Poppins', sans-serif;
  --font-label: 'Poppins', sans-serif;

  /* ===== FONT WEIGHTS ===== */
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  /* ===== COLORS ===== */
  --matte-black: #0b0b0b;
  --white: #ffffff;
  --muted: #bfbfbf;
  --text: #111111;
  --accent: #7b4a2f;
    /* Primary Palette - #A95c68 based */
  --primary: #A95c68;
  --primary-dark: #8a4f5c;
  --primary-light: #e8cfd4;
  --primary-lighter: #fdf2f4;
  
  /* Apple-style Neutrals */
  --black: #1d1d1f;
  --dark-gray: #86868b;
  --medium-gray: #a1a1a6;
  --light-gray: #f5f5f7;
  --white: #ffffff;
  
  /* UI Elements */
  --card-bg: rgba(255, 255, 255, 0.85);
  --card-border: rgba(0, 0, 0, 0.06);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
  
  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}


/* Reset */
*{box-sizing:border-box;margin:0;padding:0}
html,body{height:100%}
body{
  font-family: 'Poppins', sans-serif;
  color:var(--text);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* ================= INTRO LOADER ================= */
#intro-loader{
  position:fixed; inset:0;
  display:flex; align-items:center; justify-content:center;
  background:var(--matte-black); z-index:999999;
  flex-direction:column;
}
#intro-loader .intro-inner{
  text-align:center; color:#fff;
}
#intro-name{
  font-family: 'Playfair Display', serif;
  font-weight:700;
  font-size:46px;
  letter-spacing:2px;
  opacity:0;
  transform:translateY(12px);
  filter:blur(8px);
  transition: all 1000ms cubic-bezier(.2,.9,.3,1);
}
#intro-name.revealed{
  opacity:1; transform:translateY(0); filter:blur(0);
}
#intro-loader .intro-sub{
  color: rgba(255,255,255,0.65);
  margin-top:14px;
  font-size:14px;
  opacity:0;
  transform:translateY(8px);
  transition: all 800ms 350ms cubic-bezier(.2,.9,.3,1);
}
#intro-loader.revealed .intro-sub{ opacity:1; transform:translateY(0) }

/* hide after done */
#intro-loader.hidden{ opacity:0; visibility:hidden; pointer-events:none; transition:opacity .8s ease, visibility .8s ease; }

/* ================= NAV (pill style) ================= */
#main-nav{
  position:fixed; top:24px; left:50%; transform:translateX(-50%);
  display:flex; align-items:center; gap:24px;
  background: rgba(236, 167, 87, 0.733); padding:10px 26px;
  border-radius:999px; box-shadow:0 12px 30px rgb(255, 255, 255);
  z-index:99998; opacity:0; transform-origin:center; transition:all .6s ease;
}
#main-nav.show{ opacity:1; transform: translateX(-50%) translateY(0) }
#main-nav #logo{ font-weight:600; letter-spacing:2px; font-size:16px; color:var(--text) }
#main-nav ul{ list-style:none; display:flex; gap:22px; align-items:center; margin-left:18px }
#main-nav a{ text-decoration:none; color:var(--text); font-size:13px; text-transform:uppercase; letter-spacing:1.4px }
#main-nav a:hover{ color:var(--muted) }

/* smaller nav for mobile: we keep simple */
@media (max-width:900px){
  #main-nav{ left:50%; padding:8px 18px; }
  #main-nav ul{ gap:14px; display:none } /* hide items on small screens; you can add hamburger later */
}

/* ================= HERO ================= */
.hero{
  position:relative; width:100%; height:100vh; overflow:hidden;
}

/* make video cover entire viewport */
#bg-video{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:1;
  -o-object-fit:cover;
}

/* overlay darkening for readability */
.hero-overlay{ position:absolute; inset:0; background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.25)); z-index:2; }
/* hero text (large serif) */
.hero-content{
  position:absolute; z-index:3; top:50%; left:8%; transform:translateY(-50%); max-width:2900px;
  opacity:0; transform-origin:left center; transition: all 900ms 200ms cubic-bezier(.2,.9,.3,1);
}
.hero-content.show{ opacity:1; transform:translateY(-50%) scale(1) }
.hero-title{
  font-family:'Playfair Display', serif;
  font-size: clamp(436px, 8vw, 96px);
  line-height:0.95;
  color:var(--white);
  letter-spacing: .5px;
  margin-bottom:12px;
  text-shadow: 0 10px 30px rgba(0,0,0,0.45);
}
.hero-content {
  width: 1000;
}
.hero-sub{ color:rgba(0, 0, 0, 0.9); font-size:16px; letter-spacing:1px }
/* ==================== HERO FORM (Apple Style) ==================== */
.hero-form {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 32px;
  border-radius: 18px;
  z-index: 5;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--card-border);
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}
.service-image
.hero-form h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 600;
}

.hero-form p {
  font-size: 13px;
  color: var(--dark-gray);
  margin-bottom: 20px;
  font-family: var(--font-body);
}

.hero-form input,
.hero-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--medium-gray);
  padding: 12px 8px;
  margin-bottom: 16px;
  font-size: 14px;
  background: transparent;
  outline: none;
  transition: border-color 0.3s ease;
  font-family: var(--font-body);
  border-radius: 4px;
}

.hero-form input:focus,
.hero-form textarea:focus {
  border-bottom-color: var(--primary);
  background: rgb(169, 92, 104);
}

.hero-form textarea {
  resize: none;
  height: 70px;
}

.phone-field {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.phone-field span {
  font-size: 14px;
  color: var(--dark-gray);
  font-weight: 500;
  font-family: var(--font-body);
}

.whatsapp-check {
  display: flex;
  align-items: center;
  font-size: 12px;
  margin: 12px 0 20px;
  gap: 8px;
  color: var(--dark-gray);
  cursor: pointer;
}

.whatsapp-check input {
  width: auto;
  margin: 0;
  accent-color: var(--primary);
}

.hero-form button {
  width: 100%;
  padding: 14px;
  border: none;
  background: var(--primary);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition-smooth);
  letter-spacing: 0.5px;
  font-family: var(--font-body);
}
.hero-logo
.hero-form button:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgb(169, 92, 104);
}
/* ================= SECTIONS ================= */
section{ padding:90px 10%; background:var(--white) }
section h2{ font-size:28px; margin-bottom:18px; font-weight:600 }
.grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:22px }
.card{ background:var(--light); padding:28px; border-radius:8px; }


/* Separate services from projects visually */
#services {
  margin-bottom: 120px;
}

/* ================= POPUP ================= */
#popup{ position:fixed; inset:0; display:none; align-items:center; justify-content:center; background:rgba(0,0,0,0.9); z-index:999999 }
#popup img{ max-width:92%; max-height:92%; border-radius:6px }

/* ================= MISC / RESPONSIVE ================= */
@media (max-width:900px){
  .hero-content{ left:6%; right:6% }
  .hero-title{ font-size: clamp(28px, 9vw, 48px) }
  section{ padding:60px 6% }
  .projects-grid{ grid-template-columns: 1fr }
}
/* MULTI VIDEO BACKGROUND */
.video-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero-video.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 2;
}

/* ==================== LIGHTBOX ==================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 9999;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  display: flex;
  gap: 40px;
  align-items: center;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-img {
  max-width: 70%;
  max-height: 90vh;
  border-radius: 16px;
  transform: scale(0.9);
  transition: transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
  box-shadow: var(--shadow-lg);
}

.lightbox.active .lightbox-img {
  transform: scale(1);
}

.lightbox-text {
  color: var(--white);
  max-width: 360px;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.4s ease 0.1s;
}

.lightbox.active .lightbox-text {
  opacity: 1;
  transform: translateY(0);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 36px;
  color: var(--white);
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s ease;
  line-height: 1;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.lightbox-close:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-text h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 12px;
  color: var(--white);
  font-family: var(--font-hero);
}

.lightbox-text span {
  display: inline-block;
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 16px;
  color: var(--primary-light);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.lightbox-text p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.9;
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.9);
}
.projects-section {
  padding: 120px 0;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f5f5f7 100%
  );
  overflow: hidden;
  position: relative;
}

/* =========================================================
   PROJECTS
========================================================= */
/* Prevent horizontal page shift */
body {
  overflow-x: hidden;
}

/* ============================= */
/* PROJECTS SECTION */
/* ============================= */

.projects-section {
  padding: 100px 0;
  background: linear-gradient(180deg,#ffffff 0%,#f5f5f7 100%);
  overflow: hidden;
  position: relative;
}

.projects-title {
  font-family: var(--font-hero);
  font-size: clamp(32px,5vw,44px);
  margin-left: 8%;
  margin-bottom: 40px;
}

.projects-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

/* JS controls transform */
.projects-track {
  display: flex;
  gap: 30px;
  will-change: transform;
}

/* ============================= */
/* PROJECT CARD */
/* ============================= */

.project-card {
  min-width: 340px;
  height: 420px;
  flex: 0 0 auto;
  border-radius: 26px;
  overflow: hidden;
  position: relative;

  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);

  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);

  transition: transform 0.45s cubic-bezier(.25,.1,.25,1),
              box-shadow 0.45s cubic-bezier(.25,.1,.25,1);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 90px rgba(0,0,0,0.12);
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.25,.1,.25,1);
}

.project-card:hover img {
  transform: scale(1.07);
}

/* Dark gradient overlay */
.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.6),
    rgba(0,0,0,0.2),
    transparent
  );
  z-index: 1;
}

/* Glass shine effect */
.project-card::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.25),
    transparent 40%
  );
  transform: rotate(25deg);
  transition: 0.8s;
  opacity: 0;
}

.project-card:hover::before {
  opacity: 1;
  top: 0;
  left: 0;
}

/* Project Info Text */
.project-info {
  position: absolute;
  bottom: 25px;
  left: 25px;
  color: #ffffff;
  z-index: 2;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.project-info h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
}

.project-info span {
  font-size: 14px;
  opacity: 0.9;
  letter-spacing: 0.6px;
}

/* Edge fade effect */
.projects-wrapper::before,
.projects-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.projects-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #f5f5f7, transparent);
}

.projects-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #f5f5f7, transparent);
}
/* ============================= */
/* GALLERY MODAL */
/* ============================= */

.gallery-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 40px;
}

/* Hide when not active */
.gallery-modal:not(.active) {
  display: none;
}

/* Content Wrapper */
.gallery-content {
  position: relative;
  max-width: 95%;
  max-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Image */
#galleryImage {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 20px;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* Close Button */
.gallery-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 32px;
  color: white;
  cursor: pointer;
  z-index: 10000;
}

/* Controls */
.gallery-controls {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.gallery-controls button {
  pointer-events: auto;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: none;
  color: white;
  font-size: 30px;
  padding: 14px 22px;
  cursor: pointer;
  border-radius: 12px;
  transition: 0.3s ease;
}

.gallery-controls button:hover {
  background: rgba(255,255,255,0.3);
}
#galleryImage {
  transition: opacity 0.4s ease;
}
/* Arrows */
#prevBtn,
#nextBtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  font-size: 28px;
  padding: 12px 18px;
  cursor: pointer;
}

#prevBtn {
  left: 30px;
}

#nextBtn {
  right: 30px;
}

/* Close Button */
.gallery-close {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 28px;
  color: white;
  cursor: pointer;
}
/* =========================================================
   PARTNERS
========================================================= */
#partners {
  padding: 80px 0 40px;   /* reduce bottom */
  background: var(--light-gray);
  overflow: hidden;
}

.partner-title {
  font-family: var(--font-hero);
  text-align: center;
  font-size: clamp(30px,5vw,42px);
  margin-bottom: 50px;
}

.partner-wrapper {
  overflow: hidden;
}

.partner-track {
  display: flex;
  gap: 40px;
  animation: scroll 50s linear infinite;
}

.partner {
  min-width: 200px;
  height: 110px;
  background: rgba(255,255,255,0.85);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.partner:hover {
  transform: translateY(-6px);
}

.partner img {
  max-width: 75%;
  max-height: 70%;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: var(--transition);
}

.partner:hover img {
  filter: none;
}
.partner-title span {
  color: rgb(169, 92, 104);
}


@keyframes partnerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.portfolio-contact

.projectcard {
  min-width: 220px;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
}

.projectcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}
walkthrough-title
.projectcard img {
  width: auto;
  max-width: 80%;
  max-height: 70%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.projectcard:hover img {
  filter: grayscale(0%);
  opacity: 1;
}
.projects-title span {
    font-style: italic;
    font-weight: 300;
    color: #c47a55; /* soft warm accent */
}


/* =========================================================
   WALKTHROUGH
========================================================= */
.walkthrough-section {
  padding: 60px 10% 100px; /* reduce top */
  background: var(--light-gray);
}

.walkthrough-title {
  font-family: var(--font-hero);
  font-size: clamp(28px,5vw,42px);
  text-align: center;
  margin-bottom: 60px;
}

.walkthrough-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.5fr;
  gap: 40px;
}

/* Normal state */
.walkthrough-main {
  aspect-ratio: 16/9;
  transition: aspect-ratio 0.4s ease; /* Smooth transition */
}

/* Vertical state */
.walkthrough-main.is-vertical {
  aspect-ratio: 9/16;
  max-height: 70vh; /* Prevents it from getting too tall on large screens */
  margin: 0 auto;   /* Centers it */
}

.walkthrough-main video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.walkthrough-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: 520px;
  overflow-y: auto;
  scrollbar-width: none;
}

.walkthrough-side::-webkit-scrollbar {
  display: none;
}

.walkthrough-side video {
  height: 110px;
  border-radius: 16px;
  object-fit: cover;
  opacity: 0.65;
  transition: var(--transition);
  cursor: pointer;
}

.walkthrough-side video.active,
.walkthrough-side video:hover {
  opacity: 1;
  transform: scale(1.03);
}
/* ===== INSTAGRAM REEL (9:16 FIX) ===== */

.reel-card {
  position: relative;
  width: 100%;
  max-width: 320px;        /* control reel width */
  aspect-ratio: 9 / 16;   /* 🔥 THIS IS THE KEY */
  overflow: hidden;
  border-radius: 14px;
  background: #000;
  cursor: pointer;
}

/* Video should NEVER stretch */
.reel-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* crop correctly */
  object-position: center;
  transition: transform 0.8s ease;
}

/* Premium hover zoom */
.reel-card:hover video {
  transform: scale(1.05);
}

/* Optional text overlay */
.reel-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.55),
    transparent
  );
}

.reel-overlay h4 {
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
}
/* ===== HOVER PLAY VIDEO (9:16) ===== */

.hover-video-card {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 9 / 16;     /* FIXES INSTAGRAM REEL ISSUE */
  overflow: hidden;
  border-radius: 14px;
  background: #000;
  cursor: pointer;
}

/* Video behavior */
.hover-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* NO STRETCH */
  transition: transform 0.6s ease;
}

/* Zoom on hover */
.hover-video-card:hover video {
  transform: scale(1.06);
}

/* Overlay text */
.hover-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.6),
    transparent
  );
}

.hover-overlay h4 {
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
}
.hover-overlay {
  pointer-events: none; /* 🔥 THIS WAS BLOCKING VIDEO */
}
/* ===== 3 VIDEOS IN SAME ROW ===== */

.reel-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 500px;
  margin: 0 auto;
}

/* Responsive fallback */
@media (max-width: 900px) {
  .reel-row {
    grid-template-columns: 1fr;
  }
}



/* Optional center alignment */
.reel-column {
  margin-left: auto;
  margin-right: auto;
}

/* CONTACT OVERLAY */
#contact-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
}

.contact-box {
  background: #ffffff;
  width: 380px;
  padding: 36px;
  border-radius: 18px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  animation: scaleIn .5s ease;
}

.contact-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  margin-bottom: 6px;
}

.contact-box p {
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
}

.contact-box input,
.contact-box textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  margin-bottom: 14px;
  padding: 10px 4px;
  font-size: 14px;
}

.phone-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.contact-box textarea {
  height: 80px;
  resize: none;
}

.contact-box button {
  width: 100%;
  padding: 12px;
  border-radius: 30px;
  border: 1px solid #7b4a2f;
  background: transparent;
  color: #7b4a2f;
  font-size: 14px;
  cursor: pointer;
}

.contact-box button:hover {
  background: #7b4a2f;
  color: white;
}

.close-btn {
  position: absolute;
  top: 16px;
  right: 18px;
  cursor: pointer;
  font-size: 18px;
}

@keyframes scaleIn {
  from { transform: scale(.9); opacity: 0 }
  to { transform: scale(1); opacity: 1 }
}
/* SECTION */
#contact-section {
  padding: 140px 12%;
  background: linear-gradient(to bottom, #f5f5f7, #ffffff);
}

/* GRID */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  align-items: center;
}

/* TEXT */
.contact-text h2 {
  font-family: -apple-system, BlinkMacSystemFont, "San Francisco", sans-serif;
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -1px;
  margin-bottom: 24px;
  color: #1d1d1f;
}

.contact-text p {
  font-size: 18px;
  line-height: 1.8;
  max-width: 540px;
  color: #6e6e73;
}

.contact-info h4 {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #86868b;
  margin-top: 40px;
  margin-bottom: 8px;
}

/* IMAGE */
.contact-image img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.08);
}

/* BUTTON WRAPPER */
.portfolio-contact {
  display: flex;
  gap: 60px;
  margin-top: 60px;
}

/* CIRCLE BUTTON */
.circle-btn {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  backdrop-filter: blur(25px);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 
      0 8px 32px rgba(0,0,0,0.06),
      inset 0 1px 1px rgba(255,255,255,0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: #1d1d1f;
  transition: all .45s cubic-bezier(.22,.61,.36,1);
  position: relative;
  overflow: hidden;
}
/* WhatsApp Brand Color */
.whatsapp-btn {
  color: #25D366;
}

/* Icon Size */
.whatsapp-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
}

/* Hover Effect (Brand Glow) */
.whatsapp-btn:hover {
 background: #25D366;
 color: white;
 box-shadow: 0 25px 60px rgba(37, 211, 102, 0.35);
} 

/* Instagram Hover Effect */
.instagram-btn:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: white;
  box-shadow: 0 25px 60px rgba(214, 36, 159, 0.35);
  border-color: transparent; /* Ensures no border interferes with the gradient */
}


/* ICON */
.circle-btn .icon {
  font-size: 28px;
  margin-bottom: 10px;
}

/* HOVER EFFECT */
.circle-btn:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 
      0 25px 70px rgba(0,0,0,0.15),
      inset 0 1px 1px rgba(255,255,255,0.9);
}

/* Subtle Glow */
.circle-btn::after {
  content: "";
  position: absolute;
  width: 220%;
  height: 220%;
  background: radial-gradient(circle at center, rgba(0,0,0,0.05), transparent 60%);
  opacity: 0;
  transition: opacity .4s ease;
}

.circle-btn:hover::after {
  opacity: 1;
}

/* ================= SERVICES – EDITORIAL STYLE ================= */
/* ================= SERVICES – EDITORIAL STYLE ================= */

.services-editorial {
  padding: 120px 10%;
  background: #ffffff;
}

.service-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 140px;
}

.service-row:last-child {
  margin-bottom: 0;
}

/* Reverse layout */
.service-row.reverse {
  grid-template-columns: 1fr 1.1fr;
}

.service-row.reverse .service-text {
  order: 2;
}

.service-row.reverse .service-image {
  order: 1;
}

/* TEXT */
.service-title {
  font-family: var(--font-heading);
  font-size: 42px;
  margin-bottom: 60px;
}


.service-title span {
  font-weight: 5;        /* ultra-thin */
  font-style: italic;     /* elegant italic */
  letter-spacing: 3.6px;  /* luxury spacing */
  opacity: 0.85;          /* soft premium feel */
  color: #cf602c;
}

.service-in {
  font-weight: 600;        /* ultra-thin */
  font-style: italic;     /* elegant italic */
  letter-spacing: 0.6px;  /* luxury spacing */
  opacity: 1.0;          /* soft premium feel */
  color: #cf372c;
}

.construction-text {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 42px;
  max-width: 900px;
  margin-bottom: 80px;
    color: #000000;
}





/* IMAGE */
.service-image img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .service-row,
  .service-row.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-text h2 {
    font-size: 32px;
  }

  .services-editorial {
    padding: 80px 6%;
  }
}

.service-row {
  opacity: 0;
  transform: translateY(80px) perspective(1200px) rotateX(8deg);
  transition:
    opacity 1s ease,
    transform 1.2s cubic-bezier(.2,.8,.2,1);
  will-change: transform, opacity;
}

/* When visible */
.service-row.in-view {
  opacity: 1;
  transform: translateY(0) perspective(1200px) rotateX(0deg);
}

/* Subtle depth on image */
.service-image img {
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1);
}

.service-row.in-view .service-image img {
  transform: scale(1);
}

/* Initial slight zoom */
.service-image img {
  transform: scale(1.05);
}

/* TEXT stagger (optional premium touch) */
.service-text {
  transition: transform 1s ease, opacity 1s ease;
}

.service-row.in-view .service-text {
  transform: translateY(0);
  opacity: 1;
}
.hero-logo-wrap {
  position: absolute;
  top: 40px;
  left: 50px;
  z-index: 20;
}

.hero-logo {
  width: 240px;
  height: auto;
  background: transparent;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.35));



  /* premium look */
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.25));
  
  /* floating animation */
  animation: floatLogo 6s ease-in-out infinite;

  /* smooth interaction */
  transition: transform 0.8s cubic-bezier(.2,.8,.2,1);
}

/* HOVER = subtle 3D tilt */
.hero-logo-wrap:hover .hero-logo {
  transform: rotateY(-10deg) rotateX(6deg) translateY(-6px);
}

@media (max-width: 768px) {
  .hero-logo {
    width: 180px;
  }
}

/* FLOATING MOTION */
@keyframes floatLogo {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
  100% {
    transform: translateY(0);
  }
}
.hero-logo {
  opacity: 0;
  animation:
    fadeLogo 1.2s ease forwards,
    floatLogo 6s ease-in-out infinite;
  animation-delay: 0.4s, 1.2s;
}

@keyframes fadeLogo {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/* SERVICE IMAGE SLIDER */
.service-image-slider {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-radius: 22px;
}

/* Images */
.service-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;
  transform: scale(1.05);
  transition: 
    opacity 1s ease,
    transform 1.2s cubic-bezier(.2,.8,.2,1);
}

/* Active image */
.service-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}


/* ================= WALKTHROUGH SLIDER ================= */

#walkthrough-showcase {
  padding: 120px 6%;
  text-align: center;
}

.walkthrough-title {
  font-family: var(--font-heading);
  font-size: 42px;
  margin-bottom: 60px;
}

.walkthrough-title span {
  color: rgb(169, 92, 104);
}

/* Layout */
.walkthrough-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

/* Side previews */
.preview-video {
  width: 140px;
  height: 260px;
  border-radius: 80px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.4s ease;
}

.preview-video:hover {
  opacity: 1;
  transform: scale(1.05);
}

.preview-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* MAIN VIDEO */
.main-video video {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
}

/* SIDE PREVIEWS */
.side-previews {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.preview-video {
  width: 120px;
  height: 70px;
  object-fit: cover;
  border-radius: 14px;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.preview-video:hover {
  opacity: 1;
  transform: scale(1.05);
}

.preview-video.active {
  opacity: 1;
  outline: 2px solid #7b4a2f;
}

/* Text inside video */
.video-label {
  position: absolute;
  bottom: 20px;
  left: 30px;
  color: white;
  font-size: 18px;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 900px) {
  .walkthrough-slider {
    flex-direction: column;
  }

  .preview-video {
    display: none;
  }

  .main-video {
    width: 100%;
  }
}
/* ================= HERO SCROLL TRANSFORM ================= */

.hero {
  transition: all 0.6s ease;
}

.hero.shrink {
  height: 72vh;                 /* shrink height */
  margin: 40px auto;
  border-radius: 28px;          /* rounded corners */
  overflow: hidden;
  width: calc(100% - 80px);     /* side gap */
}

/* Ensure videos respect rounding */
.hero.shrink .video-wrapper,
.hero.shrink .hero-video {
  border-radius: 28px;
}

/* Smooth overlay adjustment */
.hero.shrink .hero-overlay {
  background: rgba(0,0,0,0.35);
}

/* Mobile safety */
@media (max-width: 900px) {
  .hero.shrink {
    width: calc(100% - 24px);
    border-radius: 18px;
  }
}
/* ================= LUXURY SCROLL ANIMATION ================= */

.service-row
.hero-logo-wrap {
  position: absolute;
  top: 40px;
  left: 50px;
  z-index: 20;
}

.hero-logo {
  width: 240px;
  height: auto;
  background: transparent;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.35));



  /* premium look */
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.25));
  
  /* floating animation */
  animation: floatLogo 6s ease-in-out infinite;

  /* smooth interaction */
  transition: transform 0.8s cubic-bezier(.2,.8,.2,1);
}

/* HOVER = subtle 3D tilt */
.hero-logo-wrap:hover .hero-logo {
  transform: rotateY(-10deg) rotateX(6deg) translateY(-6px);
}

@media (max-width: 768px) {
  .hero-logo {
    width: 180px;
  }
}

/* FLOATING MOTION */
@keyframes floatLogo {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
  100% {
    transform: translateY(0);
  }
}
.hero-logo {
  opacity: 0;
  animation:
    fadeLogo 1.2s ease forwards,
    floatLogo 6s ease-in-out infinite;
  animation-delay: 0.4s, 1.2s;
}

@keyframes fadeLogo {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/* SERVICE IMAGE SLIDER */
.service-image-slider {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-radius: 22px;
}
.portfolio-contact
/* Images */
.service-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;
  transform: scale(1.05);
  transition: 
    opacity 1s ease,
    transform 1.2s cubic-bezier(.2,.8,.2,1);
}

/* Active image */
.service-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}


/* Auto scroll animation */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* Lightbox background */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 9999;
}

/* Active state */
.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

/* Image zoom animation */
.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 16px;
  transform: scale(0.85);
  transition: transform 0.45s ease;
}

.lightbox.active .lightbox-img {
  transform: scale(1);
}

/* Close button */
.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  font-weight: 300;
}
.lightbox-content {
  display: flex;
  gap: 40px;
  align-items: center;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-text {
  color: #fff;
  max-width: 360px;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.4s ease;
}

.lightbox.active .lightbox-text {
  opacity: 1;
  transform: translateY(0);
}

.lightbox-text h2 {
  font-size: 28px;
  margin-bottom: 8px;
}

.lightbox-text span {
  display: inline-block;
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 14px;
}

.lightbox-text p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .lightbox-content {
    flex-direction: column;
    text-align: center;
  }

  .lightbox-text {
    max-width: 100%;
  }
}
.gallery-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.gallery-modal img {
  max-width: 85%;
  max-height: 85%;
  border-radius: 14px;
}

.gallery-modal.active {
  display: flex;
}

.gallery-close {
  position: absolute;
  top: 40px;
  right: 60px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

.gallery-controls {
  position: absolute;
  bottom: 60px;
  display: flex;
  gap: 40px;
}

.gallery-controls button {
  background: white;
  border: none;
  font-size: 28px;
  padding: 10px 18px;
  cursor: pointer;
  border-radius: 6px;
}
.project-hint {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.92);
  color: #1d1d1f;
  padding: 8px 16px 8px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.pulse-dot {
  width: 8px;
  height: 8px;
  background: #a95c68;
  border-radius: 50%;
  position: relative;
}

.pulse-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #a95c68;
  animation: pulse 1.6s ease-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(2.8);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.project-card:hover .project-hint {
  background: #a95c68;
  color: white;
  transform: translateY(-3px);
}

.project-card:hover .pulse-dot,
.project-card:hover .pulse-dot::after {
  background: white;
}

.project-card:hover .project-hint {
  opacity: 1;
  transform: translateY(0);
}
.click-note {
  display: block;
  font-size: 12px;
  opacity: 0.8;
  margin-top: 4px;
}

.walkthrough-title


.walkthrough-side {
  display: flex;
  flex-direction: column;
  gap: 14px;

  max-height: 520px;              /* SAME HEIGHT AS MAIN VIDEO */
  overflow-y: auto;

  scroll-behavior: smooth;
  overscroll-behavior: contain;

  padding-right: 6px;             /* prevents cut-off */
}

/* Hide scrollbar – Apple style */
.walkthrough-side::-webkit-scrollbar {
  width: 0;
}
.walkthrough-side {
  scrollbar-width: none;          /* Firefox */
}

/* Side video style */
.walkthrough-side video {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 16px;
  cursor: pointer;
  opacity: 0.65;
  transition: all 0.35s ease;
}

/* Hover */
.walkthrough-side video:hover {
  opacity: 1;
  transform: scale(1.03);
}

/* Active video */
.walkthrough-side video.active {
  opacity: 1;
  outline: 2px solid #e7c18c;
  transform: scale(1.04);
}

/* ================= APPLE PREMIUM FOOTER ================= */

.site-footer {
  position: relative;
  background: #f5f5f7;
  padding: 100px 10% 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  font-family: 'Poppins', sans-serif;
  color: #1d1d1f;
}

/* Subtle Apple gradient depth */
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(169,92,104,0.06), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0,0,0,0.03), transparent 50%);
  pointer-events: none;
}

/* Layout */
.footer-container {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.8fr;
  gap: 80px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: relative;
  z-index: 2;
}

/* BRAND */
.footer-logo {
  font-size: 22px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.9;
  color: #6e6e73;
  max-width: 520px;
}

/* CONTACT */
.footer-contact h4,
.footer-social h4 {
  font-size: 13px;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  color: #6e6e73;
}
.partner-wrapper
.footer-contact p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
  color: #1d1d1f;
}

/* SOCIAL ICONS – Apple glass style */
.social-icons {
  display: flex;
  gap: 18px;
}

.social-icons a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border: 1px solid rgba(0,0,0,0.08);
  color: #1d1d1f;

  transition: all 0.35s cubic-bezier(.25,.1,.25,1);
  text-decoration: none;
  font-size: 16px;
}

/* Premium hover */
.social-icons a:hover {
  background: #a95c68;
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(169,92,104,0.25);
}

/* Bottom bar */
.footer-bottom {
  text-align: center;
  font-size: 13px;
  padding: 28px 0;
  color: #6e6e73;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
/* =================cssssssssssssssssssssssssssssssssssssss================= */
/* ============================= */
/* ARCHITECTURAL PIN CARD STYLE */
/* ============================= */

.pin-card.architectural {
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6vw;
    padding: 12vh 8vw;
    border-bottom: none;
}

/* LEFT SIDE */
.pin-left {
    width: 50%;
}

.arch-title {
    font-size: 3.5vw;
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -0.05rem;
    color: #111;
}

.arch-title span {
    font-style: italic;
    font-weight: 300;
    color: #c47a55; /* soft warm accent */
}

.arch-list {
    list-style: disc;
    padding-left: 1.5rem;
    color: #555;
}

.arch-list li {
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 1rem;
}

/* RIGHT SIDE */
.pin-right {
    width: 50%;
    display: flex;
    justify-content: flex-end;
}

.pin-right img {
    width: 100%;
    max-width: 600px;
    border-radius: 28px;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}


.pin-card {
    position: relative;
    min-height: 100vh;
    perspective: 1200px;
    transform-style: preserve-3d;
}

.pin-card .overlay {
    position: absolute;
    inset: 0;
    background: #000;
    opacity: 0;
    pointer-events: none;
}
.rotating-img {
    transition: opacity 0.4s ease-in-out;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {

    .pin-card.architectural {
        flex-direction: column;
        padding: 8vh 6vw;
        text-align: left;
    }

    .pin-left,
    .pin-right {
        width: 100%;
    }

    .arch-title {
        font-size: 6vw;
    }

    .pin-right {
        margin-top: 2rem;
    }

    .pin-right img {
        border-radius: 20px;
    }
}
#partners {
  padding-bottom: 0;
}

/* This handles the Mobile View (Screens smaller than 768px) */
@media (max-width: 768px) {
  .walkthrough-section {
    padding: 20px 10px;
  }

  .walkthrough-title {
    font-size: 1.5rem; /* Shrink title so it fits */
    text-align: center;
    margin-bottom: 20px;
  }

  .walkthrough-layout {
    display: flex;
    flex-direction: column; /* Stack main video on top of previews */
    gap: 15px;
  }

  .walkthrough-main {
    width: 100%;
    aspect-ratio: 16 / 9; /* Ensure the video container has a height */
  }

  #mainWalkthrough {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Prevents video from looking squashed */
    border-radius: 8px;
  }

  /* SIDE PREVIEWS: Turn them into a horizontal scroll or a grid */
  .walkthrough-side {
    display: flex;
    flex-direction: row; /* Side-by-side thumbnails */
    overflow-x: auto;    /* Allow swiping left/right */
    gap: 10px;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }

  .preview-video {
    flex: 0 0 45%; /* Show nearly two videos at once */
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 6px;
    min-height: 80px; /* Ensures they don't disappear */
    cursor: pointer;
  }
}