/* CSS Variables & Global Settings */
:root {
  --bg-color: #080808;
  --bg-darker: #040404;
  --gold: #F7DC29;
  --gold-glow: rgba(247, 220, 41, 0.2);
  --secondary: #F7DC29;
  --secondary-glow: rgba(247, 220, 41, 0.2);
  --cream: #F0E8D8;
  --text-muted: #A09D96;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Outfit', sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --glass-bg: rgba(8, 8, 8, 0.7);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}

@media (hover: hover) and (pointer: fine) {
  html {
    cursor: none;
  }
}

body {
  background-color: var(--bg-color);
  color: var(--cream);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
  position: relative;
  /* Subtle noise texture */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.1;
  color: var(--cream);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding-left: max(1.25rem, env(safe-area-inset-left, 0px));
  padding-right: max(1.25rem, env(safe-area-inset-right, 0px));
}

.section {
  padding: 8rem 0;
}

.bg-darker {
  background-color: var(--bg-darker);
}

.text-center {
  text-align: center;
}

.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.overflow-hidden {
  overflow: hidden;
}

/* Custom Cursor */
.cursor {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background 0.3s;
}

.cursor-ring {
  width: 40px;
  height: 40px;
  border: 1px solid var(--secondary);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, transform 0.1s ease-out;
}

.cursor.hovered {
  width: 60px;
  height: 60px;
  background: var(--gold-glow);
  mix-blend-mode: screen;
}

.cursor-ring.hovered {
  width: 0;
  height: 0;
  opacity: 0;
}

/* Scroll Progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--gold);
  z-index: 10000;
  box-shadow: 0 0 10px var(--gold);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 2px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media (hover: hover) and (pointer: fine) {
  .btn {
    cursor: none;
  }
}

.btn-primary {
  background: var(--gold);
  color: var(--bg-color);
  border: 1px solid var(--gold);
}

.btn-primary:hover {
  background: transparent;
  color: var(--gold);
  box-shadow: 0 0 20px var(--gold-glow);
}

.btn-outline {
  background: transparent;
  color: var(--secondary);
  border: 1px solid var(--secondary);
}

.btn-outline:hover {
  background: var(--secondary);
  color: var(--bg-color);
  box-shadow: 0 0 20px var(--secondary-glow);
}

/* Common Section Elements */
.section-label {
  display: inline-block;
  color: var(--gold);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  position: relative;
}

.section-label::before {
  content: '';
  position: absolute;
  left: -40px;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.text-center .section-label::before {
  display: none;
}

.section-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  max-width: 600px;
}

.text-center .section-desc {
  margin: 0 auto 3rem auto;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0.6rem 0;
  z-index: 1000;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav.scrolled {
  padding: 0.4rem 0;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

nav.scrolled .logo-img {
  height: 50px;
}

nav.scrolled .nav-brand-title {
  font-size: clamp(1rem, 2vw, 1.3rem);
}

nav.scrolled .nav-brand-tagline {
  font-size: clamp(0.5rem, 0.9vw, 0.6rem);
}

.nav-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: max(1.25rem, env(safe-area-inset-left, 0px));
  padding-right: max(1.25rem, env(safe-area-inset-right, 0px));
  gap: 0.75rem 1rem;
}

.logo {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  text-align: right;
  gap: 0.1rem;
  min-width: 0;
}

.nav-brand-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #FFFFFF;
  line-height: 1.15;
}

.nav-brand-tagline {
  font-family: var(--font-body);
  font-size: clamp(0.6rem, 1.1vw, 0.72rem);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  width: 100%;
  text-align: right;
  display: block;
}

.nav-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  height: 65px;
  max-width: 250px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav-links {
  display: flex;
  gap: 1rem;
}

.nav-links a {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  position: relative;
}

.nav-menu .btn {
  padding: 0.45rem 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  padding: 0.65rem;
  margin: -0.65rem -0.65rem -0.65rem 0;
  -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) and (pointer: fine) {
  .hamburger {
    cursor: none;
  }
}

.hamburger span {
  width: 30px;
  height: 2px;
  background: var(--cream);
  transition: var(--transition);
}

/* Hero Section */
#hero {
  height: 80vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  height: 80vw;
  background: radial-gradient(circle, rgba(201, 160, 80, 0.1) 0%, rgba(8, 8, 8, 0) 70%);
  z-index: -2;
}

.hero-grid-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 100px 100px;
  z-index: -1;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

.hero-rings {
  position: absolute;
  right: -10vw;
  top: 50%;
  transform: translateY(-50%);
  width: 40vw;
  height: 40vw;
  z-index: 0;
  opacity: 0.6;
}

.ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(201, 160, 80, 0.3);
  border-radius: 50%;
  animation: rotate 40s linear infinite;
}

.ring-1 {
  width: 100%;
  height: 100%;
  border-style: dashed;
}

.ring-2 {
  width: 75%;
  height: 75%;
  animation-direction: reverse;
  animation-duration: 30s;
}

.ring-3 {
  width: 50%;
  height: 50%;
}

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 4.8rem);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: #FFFFFF;
  max-width: 600px;
  margin-bottom: 2.5rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
}

.hero-stats {
  position: absolute;
  bottom: 4rem;
  right: 4rem;
  display: flex;
  gap: 3rem;
  z-index: 1;
}

.stat-item {
  text-align: center;
}

.stat-number,
.stat-static {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 3.2rem;
  color: var(--gold);
  line-height: 1;
}

.stat-static {
  font-size: 2.6rem;
  letter-spacing: -0.5px;
}

.stat-plus {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 2rem;
  color: var(--gold);
  margin-left: 2px;
  vertical-align: super;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 4rem;
  left: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  z-index: 1;
}

.scroll-indicator span {
  writing-mode: vertical-rl;
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--gold);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(200%);
  }
}

/* Marquee Strip */
.marquee-strip {
  background: transparent;
  border-top: 1px solid rgba(201, 160, 80, 0.3);
  border-bottom: 1px solid rgba(201, 160, 80, 0.3);
  padding: 1.5rem 0;
  display: flex;
  overflow: hidden;
  position: relative;
}

.marquee-content {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.marquee-content span {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--gold);
  margin: 0 2rem;
}

.marquee-content .dot {
  font-size: 1rem;
  color: var(--cream);
  font-style: normal;
  margin: 0;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* About Section */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-col,
.about-text-col {
  min-width: 0;
}

.about-img-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-darker);
  border-radius: 4px;
  padding: 0.5rem;
  box-sizing: border-box;
  margin-bottom: 2.5rem;
}

.about-img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: min(600px, 72vh);
  border-radius: 4px;
}

.experience-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--bg-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: float 6s ease-in-out infinite;
}

.badge-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}

.badge-text {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.skills-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.chip {
  padding: 0.6rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.02);
  transition: var(--transition);
}

.chip:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 160, 80, 0.05);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem 2rem;
  position: relative;
  transition: var(--transition);
  border-radius: 4px;
}

.service-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.05);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
  transition: var(--transition);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 2rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.service-arrow {
  color: var(--gold);
  font-size: 1.2rem;
  transform: translateX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(201, 160, 80, 0.1);
  background: rgba(201, 160, 80, 0.02);
}

.service-card:hover .service-number {
  color: rgba(201, 160, 80, 0.2);
}

.service-card:hover .service-arrow {
  transform: translateX(10px);
}

/* Process Section */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
}

.process-line {
  position: absolute;
  top: 40px;
  left: 10%;
  width: 80%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-node {
  width: 80px;
  height: 80px;
  background: var(--bg-color);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin: 0 auto 2rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  transition: var(--transition);
}

.step:hover .step-node {
  border-color: var(--gold);
  box-shadow: 0 0 20px var(--gold-glow);
  background: var(--gold);
  color: var(--bg-color);
}

.step-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.step-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Featured portfolio gallery (dynamic + Swiper lightbox) */
#portfolio.portfolio-pro {
  position: relative;
  overflow: hidden;
}

#portfolio.portfolio-pro::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(247, 220, 41, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

#portfolio.portfolio-pro .section-header {
  margin-bottom: 2rem;
}

.portfolio-pro-tagline {
  max-width: 42rem;
  margin: 1rem auto 0;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.65;
  font-weight: 400;
}

.portfolio-pro-app {
  margin-top: 2.5rem;
}

.portfolio-pro-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-bottom: 1.25rem;
}

.portfolio-pro-meta {
  font-size: 0.88rem;
  color: rgba(240, 232, 216, 0.75);
  letter-spacing: 0.03em;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
}

.portfolio-pro-meta strong {
  color: var(--gold);
  font-weight: 600;
}

.pg-meta-hint {
  opacity: 0.65;
  font-size: 0.82rem;
}

.pg-meta-hint kbd {
  font-family: var(--font-body);
  font-size: 0.72rem;
  padding: 0.12rem 0.35rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
}

.portfolio-pro-search-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  min-width: min(100%, 280px);
}

.portfolio-pro-search-wrap i {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.portfolio-pro-search {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
}

.portfolio-pro-search::placeholder {
  color: rgba(160, 157, 150, 0.7);
}

.portfolio-pro-filter-track {
  margin-bottom: 2rem;
  padding: 0.65rem 0.75rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.portfolio-pro-filter-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(247, 220, 41, 0.35) transparent;
  padding: 0.2rem 0;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 16px, #000 calc(100% - 16px), transparent);
  mask-image: linear-gradient(to right, transparent, #000 16px, #000 calc(100% - 16px), transparent);
}

.portfolio-pro-filter-list {
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  padding: 0.15rem;
  min-width: min-content;
}

.pg-filter-tab {
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 8, 8, 0.5);
  color: var(--cream);
  padding: 0.55rem 1.1rem;
  min-height: 44px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
  max-width: 13rem;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pg-filter-tab:hover {
  border-color: rgba(247, 220, 41, 0.45);
  color: var(--gold);
  transform: translateY(-1px);
}

.pg-filter-tab--active {
  background: linear-gradient(135deg, var(--gold) 0%, #e8c820 100%);
  color: var(--bg-color);
  border-color: transparent;
  box-shadow: 0 6px 28px rgba(247, 220, 41, 0.25);
}

.pg-filter-tab--hidden {
  display: none !important;
}

.portfolio-pro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pg-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0.35) 100%);
  transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.45s ease, border-color 0.35s ease;
  /* `both` keeps final opacity:1; `backwards` alone can leave cards invisible if animation is skipped (some mobile WebKit). */
  animation: pgCardIn 0.65s ease both;
}

.pg-card:nth-child(1) {
  animation-delay: 0.02s;
}

.pg-card:nth-child(2) {
  animation-delay: 0.05s;
}

.pg-card:nth-child(3) {
  animation-delay: 0.08s;
}

.pg-card:nth-child(n + 4) {
  animation-delay: 0.1s;
}

@keyframes pgCardIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(247, 220, 41, 0.15);
  border-color: rgba(247, 220, 41, 0.25);
}

.pg-card.hide {
  display: none !important;
}

.pg-card-media {
  position: relative;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  cursor: pointer;
}

.pg-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.85s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.pg-card:hover .pg-card-media img {
  transform: scale(1.07);
}

.pg-card-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, transparent 40%, rgba(255, 255, 255, 0.06) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.8s ease;
  pointer-events: none;
}

.pg-card:hover .pg-card-shine {
  transform: translateX(100%);
}

.pg-card-body {
  padding: 1rem 1.15rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.pg-card-count {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 600;
}

.pg-card-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--cream);
  cursor: pointer;
  transition: color 0.25s ease;
}

.pg-card-title:hover {
  color: var(--gold);
}

.pg-card-sub {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.pg-card-cta {
  margin-top: 0.4rem;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.9rem;
  border-radius: 8px;
  border: 1px solid rgba(247, 220, 41, 0.4);
  background: rgba(247, 220, 41, 0.08);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.pg-card-cta:hover {
  background: var(--gold);
  color: var(--bg-color);
  border-color: var(--gold);
}

/* Project gallery modal + Swiper */
body.gallery-modal-open {
  overflow: hidden;
  touch-action: none;
}

.project-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(0.75rem, env(safe-area-inset-top)) max(0.75rem, env(safe-area-inset-right))
    max(0.75rem, env(safe-area-inset-bottom)) max(0.75rem, env(safe-area-inset-left));
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  pointer-events: none;
}

.project-gallery-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.project-gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 2, 2, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.project-gallery-modal-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1080px;
  max-height: min(94dvh, 900px);
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #101010 0%, var(--bg-darker) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.75), 0 0 0 1px rgba(247, 220, 41, 0.08);
  overflow: hidden;
}

.project-gallery-modal-close {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 5;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}

.project-gallery-modal-close:hover {
  background: var(--gold);
  color: var(--bg-color);
}

.project-gallery-modal-title {
  margin: 0;
  padding: 0.9rem 3.5rem 0.75rem 1.1rem;
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 500;
  color: var(--cream);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.pg-swiper {
  width: 100%;
  flex: 1;
  min-height: 0;
  --swiper-theme-color: var(--gold);
  --swiper-navigation-size: 26px;
  --swiper-pagination-bullet-inactive-color: rgba(255, 255, 255, 0.35);
  --swiper-pagination-color: var(--gold);
}

.pg-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #080808;
  min-height: 200px;
}

.pg-swiper .swiper-slide img {
  max-width: 100%;
  max-height: min(72vh, 640px);
  width: auto;
  height: auto;
  object-fit: contain;
}

.pg-swiper .swiper-button-prev,
.pg-swiper .swiper-button-next {
  color: var(--gold);
  background: rgba(0, 0, 0, 0.45);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(247, 220, 41, 0.25);
}

.pg-swiper .swiper-button-prev::after,
.pg-swiper .swiper-button-next::after {
  font-size: 0.9rem;
  font-weight: 700;
}

.pg-swiper .swiper-pagination {
  position: relative;
  margin-top: 0.5rem;
  padding-bottom: 0.75rem;
}
/* Why Choose Us (Hex Grid) */
.hex-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 4rem;
}

.hex-card {
  flex: 1 1 260px;
  width: min(100%, 400px);
  max-width: 100%;
  min-width: 0;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem 2rem;
  text-align: center;
  clip-path: polygon(50% 0%, 100% 15%, 100% 85%, 50% 100%, 0% 85%, 0% 15%);
  transition: var(--transition);
}

.hex-card:hover {
  background: rgba(201, 160, 80, 0.05);
  border-color: var(--gold);
  transform: translateY(-10px);
}

.hex-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hex-card h4 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.hex-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Clients Marquee */
.clients-marquee-wrapper {
  display: flex;
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 2rem 0;
  /* Fade edges */
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.clients-marquee {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
}

.clients-marquee span {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.3);
  margin: 0 3rem;
  transition: var(--transition);
}

.clients-marquee span:hover {
  color: var(--gold);
  text-shadow: 0 0 10px var(--gold-glow);
}

/* Contact Section */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.contact-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 992px) {
  .contact-grid.cols-3 {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-box {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  text-align: left;
  background: rgba(255, 255, 255, 0.02);
  padding: 1.5rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.contact-box:hover {
  border-color: var(--gold);
  background: rgba(201, 160, 80, 0.05);
}

.box-icon {
  width: 40px;
  height: 40px;
  background: rgba(201, 160, 80, 0.1);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-box h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
}

.contact-box p,
.contact-box a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-box a:hover {
  color: var(--gold);
}

.inquiry-form {
  background: rgba(255, 255, 255, 0.02);
  padding: 3rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: 2px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 10px rgba(201, 160, 80, 0.1);
}

.btn-submit {
  width: 100%;
  margin-top: 1rem;
  font-size: 1.1rem;
}

.btn-submit i {
  margin-left: 10px;
}

.form-success {
  display: none;
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid #2ecc71;
  color: #2ecc71;
  border-radius: 4px;
  text-align: center;
}

/* Footer */
footer {
  background: #000;
  padding: 5rem 0 0 0;
  border-top: 1px solid rgba(201, 160, 80, 0.2);
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
  font-family: var(--font-heading);
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 1rem;
  max-width: 350px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a {
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold);
  transform: translateX(5px);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 45px;
  height: 45px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 160, 80, 0.1);
  transform: translateY(-5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 0;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
}


/* --- ANIMATION CLASSES --- */
.reveal-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-out;
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease-out;
}

.reveal-fade {
  opacity: 0;
  transition: all 0.8s ease-out;
}

.reveal-text {
  opacity: 0;
  transition: opacity 1.1s ease-out;
}

.active.reveal-text {
  opacity: 1;
}

.active.reveal-up,
.active.reveal-left,
.active.reveal-right,
.active.reveal-fade {
  opacity: 1;
  transform: translate(0, 0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}


/* --- RESPONSIVE --- */
body.nav-open {
  overflow: hidden;
  touch-action: none;
}

@media (max-width: 1200px) {
  .section-title {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  }

  .section-desc {
    font-size: 1rem;
  }
}

@media (max-width: 1024px) {
  .section {
    padding: 5.5rem 0;
  }

  .services-grid,
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-pro-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-pro-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .portfolio-pro-meta {
    justify-content: center;
    text-align: center;
  }

  .about-container,
  .contact-container {
    grid-template-columns: 1fr;
  }

  .about-img-wrapper {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-img {
    max-height: min(520px, 68vh);
  }

  #hero {
    height: auto;
    min-height: min(92vh, 820px);
    min-height: min(92dvh, 820px);
    padding-top: 80px;
    padding-bottom: 2.5rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .hero-stats {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 2.25rem;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem 2.5rem;
  }

  .stat-item {
    text-align: center;
  }

  .inquiry-form {
    padding: 2rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-links {
    align-items: center;
  }

  .footer-social {
    justify-content: center;
  }

  .marquee-content span {
    font-size: clamp(1rem, 2.8vw, 1.35rem);
    margin: 0 1.25rem;
  }

  .clients-marquee span {
    font-size: clamp(1.15rem, 3.5vw, 1.65rem);
    margin: 0 1.5rem;
  }
}

@media (max-width: 991px) {
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 100svh;
    z-index: 1002;
    padding: max(5rem, env(safe-area-inset-top)) max(1.25rem, env(safe-area-inset-right))
      max(2rem, env(safe-area-inset-bottom)) max(1.25rem, env(safe-area-inset-left));
    background: rgba(8, 8, 8, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    flex-direction: column;
    justify-content: flex-start;
    gap: 2rem;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.35s ease, visibility 0.35s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-menu.active {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .nav-menu .btn {
    padding: 0.85rem 1.5rem;
    font-size: 0.85rem;
    letter-spacing: 0.07em;
  }

  .nav-links {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .nav-links a {
    font-size: 1.15rem;
    padding: 0.35rem 0;
  }

  .hamburger {
    display: flex;
    position: relative;
    z-index: 1003;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }

  .section-title {
    font-size: clamp(1.85rem, 8vw, 2.5rem);
    margin-bottom: 1.1rem;
  }

  .section-label {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
  }

  #hero {
    min-height: 100svh;
    min-height: 100dvh;
    padding-top: 88px;
    padding-bottom: 1.5rem;
    justify-content: center;
  }

  .hero-slide {
    justify-content: center;
  }

  .hero-content {
    text-align: center;
    width: 100%;
    padding: 1rem;
  }

  .hero-title {
    font-size: clamp(2.2rem, 9vw, 3rem);
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9);
  }

  .hero-subtitle {
    font-size: clamp(1rem, 4vw, 1.15rem);
    margin-bottom: 1.75rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.9);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 100%;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
  }

  .stat-number {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }

  .stat-static {
    font-size: clamp(1.6rem, 6vw, 2.1rem);
  }

  .stat-plus {
    font-size: clamp(1.3rem, 5vw, 1.7rem);
  }

  .logo-img {
    height: 52px;
  }

  nav.scrolled .logo-img {
    height: 42px;
  }

  .nav-brand {
    max-width: min(48vw, 220px);
  }

  .experience-badge {
    position: absolute;
    bottom: -15px;
    right: 15px;
    margin: 0;
    width: 110px;
    height: 110px;
    z-index: 10;
  }

  .badge-number {
    font-size: 2.2rem;
  }

  .badge-text {
    font-size: 0.8rem;
    line-height: 1.1;
  }

  .services-grid,
  .process-steps,
  .portfolio-pro-grid,
  .contact-grid,
  .contact-grid.cols-3 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .portfolio-pro-app {
    margin-top: 1.75rem;
  }

  .portfolio-pro-filter-track {
    margin-bottom: 1.25rem;
  }

  .process-line {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
  }

  .inquiry-form {
    padding: 1.5rem;
  }

  .portfolio-pro-meta {
    flex-direction: column;
    text-align: center;
  }

  .pg-card-cta {
    min-height: 44px;
    padding: 0.5rem 1rem;
    align-items: center;
  }

  .project-gallery-modal-panel {
    border-radius: 10px;
    max-height: min(92dvh, calc(100% - 1rem));
  }

  .project-gallery-modal-title {
    padding: 0.75rem 3rem 0.65rem 0.9rem;
    font-size: 1.05rem;
  }

  .project-gallery-modal-close {
    top: max(0.35rem, env(safe-area-inset-top));
    right: max(0.35rem, env(safe-area-inset-right));
  }

  .pg-swiper .swiper-slide {
    min-height: 160px;
  }

  .pg-swiper .swiper-slide img {
    max-height: min(50svh, 62vh);
  }

  .pg-swiper .swiper-button-prev,
  .pg-swiper .swiper-button-next {
    width: 38px;
    height: 38px;
  }

  .portfolio-pro-search {
    min-height: 44px;
  }

  /* Entrance animation + lazy IO can leave cards at opacity 0 on some phones — keep grid always visible. */
  .pg-card {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .scroll-indicator {
    display: none;
  }

  .cursor,
  .cursor-ring {
    display: none !important;
  }

  html {
    cursor: auto;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
  }

  .section {
    padding: 3.25rem 0;
  }

  .service-card,
  .hex-card {
    padding: 2rem 1.35rem;
  }

  .clients-marquee span {
    margin: 0 1.1rem;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .marquee-content,
  .clients-marquee {
    animation: none !important;
  }

  .reveal-up,
  .reveal-left,
  .reveal-right,
  .reveal-fade,
  .reveal-text {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .pg-card {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .ring {
    animation: none !important;
  }

  .scroll-line::after {
    animation: none !important;
  }
}

/* Hero Slider Styles */
.hero-slider-section {
  padding: 0 !important;
  position: relative;
}

.hero-swiper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-slide {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 100px; /* added to prevent header overlap */
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
}

.swiper-slide-active .slide-bg {
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: -1;
}

.hero-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.hero-swiper .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 20px;
  border-radius: 4px;
}

.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
  color: var(--gold);
  background: rgba(0, 0, 0, 0.5);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--gold);
}

.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after {
  font-size: 20px;
}

/* Fix text overlap during fade transitions */
.hero-slide .hero-content {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.swiper-slide-active .hero-content {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
}

/* Image Cards for Homepage Segments */
.image-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.image-card:hover img {
  transform: scale(1.08);
}

.image-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 1rem;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transform: translateY(10px);
  transition: transform 0.4s ease;
}

.image-card:hover .image-card-content {
  transform: translateY(0);
}

.image-card h3 {
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.image-card p {
  color: white;
  font-size: 0.95rem;
  margin-bottom: 0;
  opacity: 0.9;
}