/* Basic reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
html,body { height: 100%; font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; color: #eaeaea; background: #0b0b0b; }

/* Scroll snap enabled by default; JS will disable after About section */
html { scroll-snap-type: none; }

/* Intro (black fullscreen) */
.intro-screen {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: transparent;
  background-size: 80%;
  background-position: center;
  image-rendering: pixelated;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  flex-shrink: 0;
}

.project-screen{
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background-color: #000;
  background-size: 80%;
  background-position: center;
  image-rendering: pixelated;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.intro-screen .intro-video,
.intro-screen .video-controls,
.intro-screen .video-fallback,
.intro-screen .intro-center,
.intro-screen .scroll-indicator,
.intro-screen .intro-action-controls {
  pointer-events: auto;
}

/* place overlays above the intro video */
.intro-center,
.video-controls,
.intro-action-controls,
.intro-screen .scroll-indicator {
  z-index: 2;
}

.intro-video {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.video-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
  z-index: 2;
}

.video-fallback.active {
  opacity: 1;
  pointer-events: auto;
}

.video-play-btn {
  padding: 1rem 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease;
}

.video-play-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.video-controls {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 3;
}

.intro-action-controls {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 3;
}

.intro-action-btn {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 200ms ease, opacity 200ms ease;
}

.intro-action-btn:hover {
  background: rgba(255, 255, 255, 0.18);
}

.video-volume {
  width: 180px;
  appearance: none;
  background: rgba(255, 255, 255, 0.12);
  height: 10px;
  border-radius: 999px;
  outline: none;
}

.video-volume::-webkit-slider-thumb {
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ff81d6;
  border: 2px solid rgba(255, 255, 255, 0.9);
  cursor: pointer;
}

.video-volume::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ff81d6;
  border: 2px solid rgba(255, 255, 255, 0.9);
  cursor: pointer;
}

.video-mute-btn {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease;
}

.video-mute-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.video-mute-btn:focus,
.video-play-btn:focus,
.video-volume:focus {
  outline: 2px solid rgba(255, 129, 214, 0.7);
  outline-offset: 2px;
}

.Other-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
  z-index: -1;
  opacity: 0.9;
}

.about-me {
  background: transparent; 
  background-size: cover; 
  background-attachment: fixed; 
  background-position: center; 
  position: relative;
  border-top: 4px solid rgb(156, 156, 156);
  border-bottom: 4px solid rgb(156, 156, 156);
  width: 100vw;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-me .wrap {
  display: flex;
  width: 100%;
  gap: 4rem;
  align-items: center;
  justify-content: center;
}

.about-me-content {
  flex: 1;
  max-width: 600px;
}

.about-me-image-container {
  flex: 1;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.about-me-image {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
}

.about-me-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.about-me-image img.active {
  display: block;
}

.about-me-role-toggle {
  display: flex;
  gap: 0.5rem;
}

.about-me-role-btn {
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.08);
  color: #aaa;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 300ms ease;
}

.about-me-role-btn:hover {
  background: rgba(255,255,255,0.12);
}

.about-me-role-btn.active {
  background: rgba(255, 161, 219, 0.2);
  color: #ff81d6;
  border-color: rgba(255, 161, 219, 0.4);
}

.about-me-role-text {
  color: #ff81d6;
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section.about-me::before { content: ''; position: absolute; inset: 0; background: rgba(26, 26, 31, 0.8); pointer-events: none; }
.section.about-me > * { position: relative; z-index: 1; }
.section:not(.about-me) { background: transparent; }
.wrap { max-width: 1100px; margin: 0 auto; }
.section:not(.about-me) .wrap > h3 { text-align: center; 
}

.intro-center {
  text-align: center;
  user-select: none;
}

.intro-title {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  font-family: 'Orbitron', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  letter-spacing: 0.02em;
  margin-bottom: 0.3rem;
  color: #fff;
}

.intro-sub {
  color: #999;
  margin-top: 0.4rem;
  font-size: 0.95rem;
}

.section-sound-design {
  padding: 0;
  background: #000;
}
/* remove any accidental gap between intro and first section */
.intro-screen { margin-bottom: 0; }
.section-sound-design { margin-top: 0; padding-top: 0; }
.section-sound-design .wrap {
  width: 100%;
  max-width: none;
  padding: 0;
  position: relative;
  margin-top: -2rem; 
}
.sound-design-image-wrap {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  height:110vh;
  min-height:100vh;
  overflow:hidden;
  border-radius:0;
  border: none;
  background: #000;
}
.sound-design-image {
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}
.sound-design-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.sound-design-overlay .intro-title {
  margin: 0;
  color: #fff;
  text-shadow: 0 0 24px rgba(0, 0, 0, 0.7);
}

/* ensure wrap areas can anchor absolute indicators */
.section .wrap { position: relative; }

.scroll-indicator { position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); }

/* Move Sound Design Projects section indicator down 3 rem */
.section:nth-of-type(2) .scroll-indicator {
  bottom: calc(28px - 3rem);
}

/* Main content starts after the intro */
.main-content {
  transform: translateY(0);
  margin-top: 0;
  background: linear-gradient(180deg, rgba(88, 11, 81, 0.6), rgba(28, 12, 30, 0.593));
  background-position: center;
  background-attachment: fixed;
  image-rendering: pixelated;
  min-height: 200vh;
  position: relative;
}
.main-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 20px;
  background: #000;
  pointer-events: none;
}

/* Hero */
.hero {
  padding: 6rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image:
    radial-gradient(circle at 10% 10%, rgba(255,255,255,0.02), transparent 10%),
    radial-gradient(circle at 90% 90%, rgba(255,255,255,0.01), transparent 12%);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.hero-inner { max-width: 1000px; text-align: center; color: #f5f5f5; }
.hero h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 0.5rem; }
.hero p { color: #cfcfcf; font-size: 1.05rem; }

/* Sections */
.section { padding: calc(3rem + 4px) 1.25rem calc(7rem + 6px); color: #e6e6e6; }
.section.dark { background: #e0e0e0; background-image: url('images/about-bg.gif'); 
  background-size: cover; 
  background-attachment: fixed; 
  background-position: center; 
  position: relative;
  border-top: 8px solid rgb(156, 156, 156);
  border-bottom: 8px solid rgb(156, 156, 156); }
.section.dark::before { content: ''; position: absolute; inset: 0; background: rgba(26, 26, 31, 0.8); pointer-events: none; }
.section.dark > * { position: relative; z-index: 1; }
.section:not(.dark) { background: transparent; }
.wrap { max-width: 1100px; margin: 0 auto; }
.section:not(.dark) .wrap > h3 { text-align: center; }


/* More button */
.more-container { display: flex; justify-content: center; margin-top: 2rem; }
.more-btn { display: inline-block; padding: 0.75rem 1.8rem; background: rgba(255,255,255,0.08); color: #fff; text-decoration: none; border-radius: 8px; border: 1px solid rgba(255,255,255,0.15); transition: all 300ms ease; font-size: 1rem; }
.more-btn:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25); }

/* Grid of cards */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* three columns across on wide screens */
  margin-top: 1.2rem;

  /* make the grid stretch full-bleed edge-to-edge while still
     keeping the content centered inside each card */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
}

/* Responsive: 2 columns on medium, 1 column on small screens */
@media (max-width: 1100px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .grid { grid-template-columns: 1fr; }
}
.card {
  background: linear-gradient(180deg, rgb(66, 39, 72), rgb(35, 12, 37));
  padding: 1.25rem;
  border-radius: 1px;
  border: 1px solid rgb(255, 161, 219);
  backdrop-filter: blur(3px);
}

/* Thumbnail inside card */
.card-thumb {
  width: 100%;
  /* responsive height: scales with viewport but stays within readable bounds */
  height: clamp(180px, 20vw, 360px);
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.card-meta { margin-top: 0.6rem; }

/* Project video player styles */
.project-video-wrap { display:flex; justify-content:center; align-items:center; gap:1rem; margin-top:1.2rem; }
.project-video-frame { width:100%; max-width:100%; border:1px solid rgba(255,161,219,0.25); border-radius:16px; overflow:hidden; background: rgba(255,255,255,0.02); }
.project-video-title-wrap { width:100%; border-bottom:1px solid rgba(255,161,219,0.25); background: rgba(255, 163, 220, 0.12); }
.project-video-container { position:relative; }
.project-media { text-align:left; width:100%; margin:0 auto; transition: transform 260ms ease, opacity 260ms ease; }
.project-video-title { text-align:center; margin:0; width:100%; font-size:3rem; border:none; color:#ffffff; padding:0.85rem 1rem; }
.project-video { width:100%; max-width:100%; aspect-ratio: 1538 / 864; background:#000; cursor:pointer; border-radius:0; overflow:hidden; display:block; }
.project-controls { display:flex; flex-wrap:wrap; align-items:center; gap:0.65rem; padding:0.75rem 1rem; border-top:1px solid rgba(255,161,219,0.15); background: rgba(0,0,0,0.18); }
.project-control-btn { padding:0.5rem 0.85rem; border:1px solid rgba(255,255,255,0.18); border-radius:999px; background: rgba(255,255,255,0.08); color:#fff; cursor:pointer; font-size:0.85rem; transition: background 200ms ease, opacity 200ms ease; }
.project-control-btn:hover { background: rgba(255,255,255,0.16); }
.project-progress-group { flex:1 1 240px; display:flex; align-items:center; gap:0.6rem; min-width:0; }
.project-progress { flex:1 1 auto; appearance:none; width:100%; height:6px; border-radius:999px; background: rgba(255,255,255,0.1); cursor: pointer; }
.project-progress::-webkit-slider-thumb { appearance:none; width:0; height:0; }
.project-progress::-moz-range-thumb { width:0; height:0; }
.project-progress::-webkit-slider-runnable-track { height:6px; border-radius:999px; background: transparent; }
.project-progress::-moz-range-track { height:6px; border-radius:999px; background: transparent; }
.project-volume { width:120px; appearance:none; height:6px; background: rgba(255,255,255,0.1); border-radius:999px; cursor:pointer; }
.project-volume::-webkit-slider-thumb { appearance:none; width:16px; height:16px; border-radius:50%; background:#ff81d6; border:2px solid rgba(255,255,255,0.9); cursor:pointer; }
.project-volume::-moz-range-thumb { width:16px; height:16px; border-radius:50%; background:#ff81d6; border:2px solid rgba(255,255,255,0.9); cursor:pointer; }
.project-time { color:#cfcfcf; font-size:0.78rem; white-space:nowrap; }
.project-caption { margin-top:0; padding:0 1.25rem 1.25rem; color:#cfcfcf; width:100%; text-align:left; }
.project-category { text-align:left; }
.project-alt { font-weight:600; margin-bottom:0.2rem; }
.project-desc { color:#bdbdbd; font-size:0.95rem; text-align:left; }
.project-nav { position:relative; background: rgba(255,255,255,0.08); border:none; color:#fff; width:4rem; min-width:4rem; padding:0; display:flex; align-items:center; justify-content:center; cursor:pointer; font-size:1.8rem; opacity:0.25; border-radius:12px; z-index:1; pointer-events: auto; transform: scaleY(1.4); transition: opacity 200ms ease, background 200ms ease; }
.project-prev, .project-next { border:none; }
.project-nav:hover { background: rgba(255,255,255,0.15); opacity:0.95; }
.project-media.slide-out-left { transform: translateX(-22px); opacity: 0; }
.project-media.slide-out-right { transform: translateX(22px); opacity: 0; }
.project-media.slide-in-left { transform: translateX(-22px); opacity: 0; animation: slide-in-left 260ms ease forwards; }
.project-media.slide-in-right { transform: translateX(22px); opacity: 0; animation: slide-in-right 260ms ease forwards; }
@keyframes slide-in-left { to { transform: translateX(0); opacity:1; } }
@keyframes slide-in-right { to { transform: translateX(0); opacity:1; } }

.project-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #fff;
    border: 1px solid rgba(255, 161, 219, 0.4);
  }

.project-category {
    display: inline-block;
    background: rgba(255, 161, 219, 0.15);
    border: 1px solid rgba(255, 161, 219, 0.4);
    color: #ff81d6;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
   }


/* Viewer (large centered image) */
.viewer {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
}
.viewer.active { display: flex; }
.viewer-backdrop {
  position: absolute; inset: 0; background: rgba(6,6,8,0.6); backdrop-filter: blur(6px);
}

/* Make the viewer full-bleed (covers viewport) */
.viewer-inner {
  position: relative;
  width: 100vw;
  height: 100vh;
  z-index: 3001;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* centered viewer box with fixed aspect (1024x620) but responsive */
.viewer-box {
  position: relative;
  /* larger centered box: up to 1280px but responsive */
  width: min(1280px, 96vw);
  aspect-ratio: 1280 / 775; /* slightly larger box than before */
  max-height: 96vh;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 100px rgba(0,0,0,0.6);
}
.viewer-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform-origin: center center;
  will-change: transform, opacity;
  transition: transform 1000ms cubic-bezier(0.2,0.8,0.2,1), opacity 500ms ease;
}

/* Caption bottom-left on the image */
.viewer-caption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  color: #fff;
  z-index: 3002;
  max-width: 70%;
  background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.45));
  padding: 12px 14px;
  border-radius: 8px;
}
.viewer-caption h4 { margin-bottom: 6px; font-size: 1.05rem; }
.viewer-caption p { margin: 0; color: #ddd; font-size: 0.95rem; }

/* Close button */
#viewer-close {
  position: absolute;
  right: 10px;
  top: 10px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  font-size: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 3003;
}

/* When viewer active, blur page behind and prevent scroll */
body.viewer-active {
  overflow: hidden;
}
body.viewer-active .main-content,
body.viewer-active .hero,
body.viewer-active .section,
body.viewer-active .footer {
  filter: blur(6px) saturate(0.95);
  pointer-events: none;
}

/* Footer */
.footer { padding: 2rem 1.25rem; text-align: center; color: #9a9a9a; border-top: 1px solid rgba(255,255,255,0.02); }

/* Intro hidden state (applied by JS after scroll threshold) */
.intro-screen.intro-hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(-6px);
}

.intro-screen.intro-hidden * {
  pointer-events: none !important;
}

/* Scroll indicator (small arrow) */
.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  z-index: 2;
}
.scroll-indicator:focus { outline: 2px solid rgba(255,255,255,0.12); border-radius: 20px; }

.scroll-indicator .arrow {
  width: 14px;
  height: 14px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  display: inline-block;
  opacity: 0.95;
  animation: arrow-bounce 1.4s infinite;
  margin-top: 2px;
}

@keyframes arrow-bounce {
  0% { transform: rotate(45deg) translateY(0); opacity: 0.95; }
  50% { transform: rotate(45deg) translateY(6px); opacity: 0.5; }
  100% { transform: rotate(45deg) translateY(0); opacity: 0.95; }
}

/* subtle fade/shift for intro text */
.intro-center {
  text-align: center;
  user-select: none;
  transition: transform 360ms ease, opacity 360ms ease;
}
.intro-screen.intro-hidden .intro-center {
  opacity: 0;
  transform: translateY(-8px);
}

/* Visual debug indicator for the configured fade threshold */
.threshold-indicator {
  position: fixed;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
  z-index: 2000;
  mix-blend-mode: screen;
}
.threshold-label {
  position: fixed;
  left: 12px;
  transform: translateY(-110%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 6px;
  pointer-events: none;
  z-index: 2001;
}

/* Top-right site menu toggle (small logo) */
.site-menu-toggle {
  position: fixed;
  top: 12px;
  right: 12px;
  width: 6rem;
  height: 6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffffbb;
  background-image: linear-gradient(0, #353535ad, transparent 30%), url('images/logo.png');
  background-size: 100%, 80%;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.397);
  border-radius: 3rem;
  z-index: 4000;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}
.site-menu-toggle:active { transform: scale(0.98); }
.site-menu-toggle:focus { outline: 2px solid rgba(255,255,255,0.14); }

/* hide the inline SVG icon when using a background logo image */
.site-menu-toggle svg { display: none; }

/* Expandable menu panel */
.site-menu {
  position: fixed;
  top: calc(12px + 4rem + 8px);
  right: 12px;
  width: 0; /* collapsed */
  max-width: 280px;
  overflow: hidden;
  opacity: 0;
  background: linear-gradient(180deg, rgba(167, 167, 167, 0.95), rgba(32, 32, 32, 0.96));
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 10px;
  padding: 6px;
  z-index: 3999;
  transition: width 240ms cubic-bezier(.2,.9,.3,1), opacity 180ms ease, transform 200ms ease;
  transform-origin: top right;
}
.site-menu.open { width: 220px; opacity: 1; }
.site-menu ul { list-style: none; }
.site-menu a { display: block; padding: 10px 12px; color: #eaeaea; text-decoration: none; border-radius: 6px; font-size: 0.95rem; }
.site-menu a:hover, .site-menu a:focus { background: rgba(255,255,255,0.03); color: #fff; }

/* Contact form styles */
form div { margin-bottom: 1rem; }
form label { display: block; margin-bottom: 0.5rem; color: #eaeaea; font-weight: 500; }
form input, form textarea { width: 100%; padding: 0.75rem; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 6px; color: #eaeaea; font-family: inherit; font-size: 1rem; }
form input:focus, form textarea:focus { outline: none; border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.12); }
form textarea { resize: vertical; min-height: 120px; }
form button { padding: 0.75rem 1.5rem; background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; cursor: pointer; font-size: 1rem; transition: background 300ms ease; }
form button:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25); }

/* Contact section with white background */
.contact-section {
  background: #ffffff !important;
  color: #1a1a1a;
}
.contact-section h3 {
  color: #1a1a1a;
  margin-bottom: 2rem;
}

/* Contact form box - centered and enlarged */
.contact-form-box {
  max-width: 700px;
  margin: 3rem auto;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 245, 245, 0.95));
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-form-box h3 {
  color: #1a1a1a;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.contact-form-box form div {
  margin-bottom: 2rem;
}

.contact-form-box form label {
  display: block;
  margin-bottom: 0.75rem;
  color: #333;
  font-weight: 600;
  font-size: 1.25rem;
}

.contact-form-box form input,
.contact-form-box form textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: #ffffff;
  border: 2px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  color: #1a1a1a;
  font-family: inherit;
  font-size: 1.15rem;
  transition: border-color 300ms ease;
}

.contact-form-box form input:focus,
.contact-form-box form textarea:focus {
  outline: none;
  border-color: rgba(0, 0, 0, 0.3);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.contact-form-box form textarea {
  resize: vertical;
  min-height: 200px;
}

.contact-form-box form button {
  padding: 1.2rem 2.5rem;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  border: 2px solid rgba(0, 0, 0, 0.85);
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  transition: background 300ms ease, border-color 300ms ease;
  width: 100%;
}

.contact-form-box form button:hover {
  background: rgba(0, 0, 0, 0.95);
  border-color: rgba(0, 0, 0, 0.95);
}

/* Contact info list */
.contact-section ul {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.contact-section li {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  color: #1a1a1a;
}

.contact-section li strong {
  color: #000;
  font-weight: 700;
}

/* Contact info list */
.section ul { list-style: none; padding: 0; }
.section li { margin-bottom: 0.75rem; font-size: 1.05rem; }


