﻿/* ===== BASE STYLES ===== */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
  font-size: 16px;
}

body {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
  color: #faf7f2;
  overflow-x: hidden;
  position: relative;
  width: 100vw;
  max-width: 100%;
  box-sizing: border-box;
}

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

/* Improved metallic gradient text with better sizing */
h1, h2, h3, p, span, li, a, .service-title, .service-flowing-link, .header-title, #header-subtitle, .site-title {
  background: linear-gradient(135deg, #d4af37 0%, #f9e79f 25%, #d4af37 50%, #aa8f3b 75%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Better section title sizing */
.section-title {
  text-align: center;
  font-size: clamp(24px, 5vw, 48px);
  margin: 10px auto;
  padding: 0 16px;
  max-width: 100%;
  word-wrap: break-word;
}

/* Service text sizing improvements */
.service-title {
  font-size: clamp(22px, 5vw, 45px);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.service-desc {
  font-size: clamp(14px, 3.5vw, 20px);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.service-details {
  font-size: clamp(14px, 3.5vw, 25px);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

/* Keep the shine only on menus */
.nav-menu li,
.service-item span {
  animation: shine 3s linear infinite;
}

@keyframes shine { to { background-position: 200% center; } }

/* ===== NAVIGATION ===== */
.main-nav {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  max-width: 100vw;
  background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
  z-index: 1000;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  padding: 0 16px;
  column-gap: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
  margin: 0 auto;
  overflow-x: hidden;
}


.nav-logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  z-index: 1200;
  justify-self: start; 
  margin-left: 8px;
  position: relative;
}

.nav-logo img {
  height: 45px;
  width: auto;
  filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.6));
  transition: transform 0.3s ease, filter 0.3s ease;
}
.nav-logo img:hover { transform: scale(1.05); filter: drop-shadow(0 0 10px rgba(249, 231, 159, 0.8)); }

#nav-logo-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#nav-logo-btn .logo-lines {
  width: 32px;
  height: 32px;
  inset: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}


.site-title {
  text-align: center;
  letter-spacing: 3px;
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
  justify-self: center;
  grid-column: 2;
}

.nav-drawer { display: flex; flex: 1; align-items: center; justify-content: center; position: relative; }
.nav-menu  { display: flex; justify-content: center; flex: 1; margin: 0; padding: 0; list-style: none; }

.nav-menu li {
  padding: 20px 40px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}
html[lang="fr"] .nav-menu li, html[lang="nl"] .nav-menu li { padding: 18px 32px; }
.nav-menu li::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 3px;
  background: linear-gradient(135deg, #d4af37 0%, #f9e79f 100%);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.nav-menu li:hover { transform: translateY(-2px); text-shadow: 0 0 10px rgba(212, 175, 55, 0.7), 0 0 20px rgba(249, 231, 159, 0.5); }
.nav-menu li:hover::after { width: 60%; }

.language-switcher {
  margin-left: 16px;
  justify-self: end;
  margin-right: 8px;
  position: relative;
  z-index: 1201;
  min-width: 60px;
}

.language-switcher select {
  background: transparent;
  border: none;
  color: #f9e79f;
  font-family: 'Cinzel', serif;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: color 0.3s ease;
  font-size: clamp(12px, 2.5vw, 14px);
  min-width: 50px;
}

.language-switcher select:hover { color: #d4af37; }
.language-switcher option { background: #16213e; color: #f9e79f; }

/* ===== DROPDOWN BAR ===== */
.dropdown-bar {
  position: fixed;
  top: 50px; /* anchor directly under the fixed nav */
  left: 0;
  right: 0;
  width: 100vw;
  background: linear-gradient(135deg, rgba(15, 52, 96, 0.95) 0%, rgba(22, 33, 62, 0.95) 100%);
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.dropdown-bar.show { max-height: 200px; opacity: 1; }

.dropdown-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  width: 100%;
  max-width: 100vw;
  padding: 20px 40px;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
overflow-x: auto;
box-sizing: border-box;
}
.dropdown-bar.show .dropdown-content { opacity: 1; transform: translateY(0); }

/* Service dropdown items */
.service-item {
  padding: 20px 40px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}
.service-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 3px;
  background: linear-gradient(135deg, #d4af37 0%, #f9e79f 100%);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.service-item:hover { transform: translateY(-2px); }
.service-item:hover::after { width: 60%; }
.service-item:hover span { text-shadow: 0 0 10px rgba(212, 175, 55, 0.7), 0 0 20px rgba(249, 231, 159, 0.5); }

/* CTA buttons */
.contact-button,
.booking-button {
  background: linear-gradient(135deg, #d4af37 0%, #aa8f3b 100%);
  color: #16213e;
  padding: 15px 40px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
  -webkit-text-fill-color: #16213e !important;
}
.contact-button:hover,
.booking-button:hover {
  background: linear-gradient(135deg, #f9e79f 0%, #d4af37 100%);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 5px 18px rgba(212, 175, 55, 0.5);
}

/* Social links */
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px 40px;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.social-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 3px;
  background: linear-gradient(135deg, #d4af37 0%, #f9e79f 100%);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.social-link:hover { transform: translateY(-2px); }
.social-link:hover::after { width: 60%; }
.social-link span { font-size: 1rem; transition: text-shadow 0.3s ease; }
.social-link:hover span { text-shadow: 0 0 12px rgba(212, 175, 55, 0.8); }
.social-icon { width: 22px; height: 22px; transition: transform 0.3s ease; }
.social-link:hover .social-icon { transform: translateY(-2px); }

/* ===== PORTFOLIO FOLDERS ===== */
.portfolio-folders {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  width: 100%;
  padding: 20px 16px;
  flex-wrap: wrap;
}

.portfolio-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 100vw;
  padding: 80px 16px 20px;
  box-sizing: border-box;
  position: relative;
  margin: 0 auto;
}

.portfolio-card-grid.portfolio-lift {
  transition: transform 0.6s ease, opacity 0.6s ease;
}

#portfolio-view.portfolio-revealing {
  animation: portfolioReveal 0.7s ease forwards;
}

@keyframes portfolioReveal {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.portfolio-card {
  position: relative;
  background: linear-gradient(135deg, rgba(15,52,96,0.85), rgba(22,33,62,0.9));
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 14px;
  padding: 18px 16px 16px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
  overflow: hidden;
  display: grid;
  gap: 10px;
  min-height: 180px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.45);
  border-color: rgba(249, 231, 159, 0.55);
}

.portfolio-card h3 {
  margin: 0;
  font-size: 1.3rem;
  letter-spacing: 1px;
}

.portfolio-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #f0ecde;
}


.card-accent {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(249,231,159,0.08), transparent 50%),
              radial-gradient(circle at 80% 0%, rgba(212,175,55,0.06), transparent 45%);
  pointer-events: none;
}

.card-button {
  justify-self: start;
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid rgba(249, 231, 159, 0.4);
  background: linear-gradient(135deg, rgba(249,231,159,0.14), rgba(212,175,55,0.2));
  color: #f9e79f;
  font-weight: 700;
  letter-spacing: 0.8px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.portfolio-card:hover .card-button {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.3);
  background: linear-gradient(135deg, rgba(249,231,159,0.22), rgba(212,175,55,0.3));
}

.portfolio-box {
  position: relative;
  width: 140px;
  height: 160px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.folder-shell { padding: 8px; }
.folder-title { font-size: 1rem; letter-spacing: 2px; text-transform: uppercase; text-align: center; margin-bottom: 6px; }

.folder { transition: all 0.2s ease-in; cursor: pointer; }
.folder:not(.folder--click):hover { transform: translateY(-8px); }
.folder:not(.folder--click):hover .paper { transform: translate(-50%, 0%); }
.folder:not(.folder--click):hover .folder__front { transform: skew(15deg) scaleY(0.6); }
.folder:not(.folder--click):hover .folder__front.right { transform: skew(-15deg) scaleY(0.6); }
.folder.open { transform: translateY(-8px); }
.folder.open .paper:nth-child(1) { transform: translate(-120%, -70%) rotateZ(-15deg); }
.folder.open .paper:nth-child(1):hover { transform: translate(-120%, -70%) rotateZ(-15deg) scale(1.1); }
.folder.open .paper:nth-child(2) { transform: translate(10%, -70%) rotateZ(15deg); height: 80%; }
.folder.open .paper:nth-child(2):hover { transform: translate(10%, -70%) rotateZ(15deg) scale(1.1); }
.folder.open .paper:nth-child(3) { transform: translate(-50%, -100%) rotateZ(5deg); height: 80%; }
.folder.open .paper:nth-child(3):hover { transform: translate(-50%, -100%) rotateZ(5deg) scale(1.1); }
.folder.open .folder__front { transform: skew(15deg) scaleY(0.6); }
.folder.open .folder__front.right { transform: skew(-15deg) scaleY(0.6); }

.folder__back {
  position: relative;
  width: 120px;
  height: 90px;
  background: var(--folder-back-color);
  border-radius: 0 10px 10px 10px;
}
.folder__back::after {
  position: absolute;
  z-index: 0;
  bottom: 98%;
  left: 0;
  content: '';
  width: 32px;
  height: 12px;
  background: var(--folder-back-color);
  border-radius: 5px 5px 0 0;
}

.paper {
  position: absolute;
  z-index: 2;
  bottom: 10%;
  left: 50%;
  transform: translate(-50%, 10%);
  width: 70%;
  height: 80%;
  background: var(--paper-1);
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
}
.paper:nth-child(2) { background: var(--paper-2); width: 80%; height: 70%; }
.paper:nth-child(3) { background: var(--paper-3); width: 90%; height: 60%; }

.folder__front {
  position: absolute;
  z-index: 3;
  width: 100%;
  height: 100%;
  background: var(--folder-color);
  border-radius: 5px 10px 10px 10px;
  transform-origin: bottom;
  transition: all 0.3s ease-in-out;
}
.folder__front.right { transform-origin: bottom; }

.paper img,
.paper video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  z-index: 1;
}
.paper video { background: #000; }

/* ===== HEADER ===== */
header {
  margin-top: 55px;
  text-align: center;
  padding: 20px;
  color: white;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: var(--hero-block-height);
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  width: 100%;
  max-width: 100vw;
  margin-left: 0;
  margin-right: 0;
  box-sizing: border-box;
}


.header-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  pointer-events: none;
  z-index: 0;
}
.header-video.active { opacity: 1; visibility: visible; z-index: 1; }

.section-title {
text-align: center;
font-size: clamp(32px, 5vw, 48px);
margin: 10px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 80px 20px 60px;
  background: linear-gradient(180deg, #0f1b3a 0%, #1a1a2e 100%);
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  margin: 0;
}

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

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

.about-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-title {
  font-size: clamp(32px, 5vw, 48px);
  margin: 0 0 20px;
  background: linear-gradient(135deg, #d4af37 0%, #f9e79f 50%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
}

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

.about-description p {
  font-size: clamp(15px, 3vw, 18px);
  line-height: 1.8;
  color: #e9e9ef;
  margin: 0;
  text-align: left;
}

.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-badge {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(15,52,96,0.4), rgba(22,33,62,0.6));
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
}

.about-logo {
  width: 180px;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
  animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.about-location-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #d4af37, #aa8f3b);
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.location-icon {
  font-size: 20px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.location-text {
  font-size: clamp(14px, 2.5vw, 16px);
  font-weight: 700;
  color: #16213e;
  letter-spacing: 1px;
  -webkit-text-fill-color: #16213e !important;
  background: none !important;
}

/* ===== SERVICES ===== */
section { padding: 60px 0; max-width: 100%; margin: auto; }

#services {
  padding: 0;
  width: 100%;
  max-width: 100vw;
  margin: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

.flowing-services {
  display: flex;
  flex-direction: column;
  min-height: 60vh;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}
.service-flowing-item[data-service="photography"] { background-image: url('portfolio/images/DSC05916.JPG'); align-items: flex-start; }
.service-flowing-item[data-service="videography"] { background-image: url('portfolio/images/DSC05220.JPG'); align-items: flex-end; }
.service-flowing-item[data-service="drone"]        { background-image: url('portfolio/drone/DJI_0102.JPG'); align-items: flex-start; }
.service-flowing-item[data-service="editing"]      { background-image: url('icons/basics of adobe premiere pro.jpg'); align-items: flex-end; }
.service-flowing-item.expanded { min-height: 720px; padding-bottom: 12px; }
.service-flowing-item.hidden   { height: 0; min-height: 0; opacity: 0; max-height: 0; border: none; overflow: hidden; }

/* Base: slightly zoomed-in, centered */
.service-flowing-item {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 240px;
  max-height: 240px;
  overflow: hidden;
  padding: 12px clamp(12px, 4vw, 24px) 0;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  transition:
    max-height 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    min-height 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    padding-bottom 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    background-size 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    background-position 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-flowing-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.65) 100%);
  z-index: 0;
  pointer-events: none;
}
.service-flowing-item > * {
  position: relative;
  z-index: 1;
}


/* Expanded: fill and allow more height */
.service-flowing-item.expanded {
  background-size: cover;
  background-position: center;
  min-height: 720px;
  max-height: 720px;
  padding-bottom: 12px;
  position: relative;
}

.learn-more-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: clamp(12px, 3vw, 16px);
  text-decoration: none;
  color: #f9e79f;
  letter-spacing: 1px;
  margin: auto clamp(12px, 4vw, 80px) 18px;
  transition: color 0.2s ease, transform 0.2s ease;
  word-wrap: break-word;
  max-width: calc(100% - 24px);
}

.learn-more-link:hover { color: #d4af37; transform: translateY(2px); }


.service-head {
  display: grid;
  align-items: center;
  gap: clamp(12px, 3vw, 32px);
  padding-inline: clamp(24px, 6vw, 80px);
  width: 100%;
}

.service-head-inline {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "text side";
  align-items: center;
  gap: clamp(16px, 4vw, 48px);
  position: relative; /* allow absolute positioning of side content when needed */
}
.service-head-inline .service-flowing-link { grid-area: text; }
.service-head-reverse {
  grid-template-columns: auto 1fr;
  grid-template-areas: "side text";
}
.service-head-reverse .service-flowing-link { text-align: right; }

.service-side {
  grid-area: side;
  display: grid;
  place-items: center;
  gap: 12px;
}

.service-video-box {
  display: none;
  width: clamp(200px, 40vw, 700px);
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(249, 231, 159, 0.25);
  pointer-events: none;
  justify-self: center;
  align-self: center;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(28px);
  position: relative;
}
.service-video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  position : relative;
  z-index: 1
}
.service-video-cta {
  position: absolute;
  z-index: 0;
  opacity: 0;
  font-size: clamp(14px, 3.5vw, 30px);
  letter-spacing: 0.8px;
  color: #f9e79f;
  pointer-events: none;
  cursor: pointer;
  width: auto;
}

.service-video-cta:hover {
  transform: translateY(-1px);
text-shadow: 0 0 8px rgba(249, 231, 159, 0.9), 0 0 14px rgba(212, 175, 55, 0.8);
}

.service-video-cta:active {
  transform: translateY(1px);
}
.service-video-cta.cta-pos-start {
  opacity: 0;
}
.service-video-cta.cta-pos-end {
  opacity: 1;
}

/* Starting offsets (pre-animation) per service */
.service-flowing-item[data-service="photography"] .service-video-cta.cta-pos-start,
.service-flowing-item[data-service="drone"] .service-video-cta.cta-pos-start {
  position: absolute;
  bottom: -70px;
  right: 180px;
  left: auto;
}
.service-flowing-item[data-service="videography"] .service-video-cta.cta-pos-start,
.service-flowing-item[data-service="editing"] .service-video-cta.cta-pos-start {
  position: absolute;
  bottom: -70px;
  left: 190px;
  right: auto;
}

.service-flowing-item[data-service="photography"] .service-video-cta.cta-pos-end,
.service-flowing-item[data-service="drone"] .service-video-cta.cta-pos-end {
  position: absolute;
  bottom: -20px;
  right: 180px; 
  left: auto;
}
.service-flowing-item[data-service="videography"] .service-video-cta.cta-pos-end,
.service-flowing-item[data-service="editing"] .service-video-cta.cta-pos-end {
  position: absolute;
  bottom: -20px;
  left: 190px;
  right: auto;
}


.service-flowing-item[data-service="photography"] .service-video-box.video-cta-visible + .service-video-cta.cta-pos-start,
.service-flowing-item[data-service="drone"]       .service-video-box.video-cta-visible + .service-video-cta.cta-pos-start {
  animation: cta-rise-right 0.7s ease forwards;
  pointer-events: auto;
  z-index: 3
}
.service-flowing-item[data-service="videography"] .service-video-box.video-cta-visible + .service-video-cta.cta-pos-start,
.service-flowing-item[data-service="editing"]     .service-video-box.video-cta-visible + .service-video-cta.cta-pos-start {
  animation: cta-rise-left 0.7s ease forwards;
  pointer-events: auto;
  z-index: 3;
}



.service-flowing-item.expanded .service-head-inline {
  grid-template-columns: 1fr clamp(200px, 28vw, 320px);
  grid-template-areas: "text side";
}
.service-flowing-item.expanded .service-head-inline.service-head-reverse {
  grid-template-columns: clamp(200px, 28vw, 320px) 1fr;
  grid-template-areas: "side text";
}
.service-flowing-item.expanded .service-video-box.video-revealed {
  display: block;
  animation: video-rise 2s ease forwards;
}

.service-side .learn-more-link {
  position: static !important;
  margin: 0;
  left: auto;
  right: auto;
  bottom: auto;
}

@keyframes video-rise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes cta-rise-right {
  from { bottom: 100px; opacity: 0; }
  to   { bottom: -100px; opacity: 1; }
}

@keyframes cta-rise-left {
  from { bottom: 100px; opacity: 0; }
  to   { bottom: -100px; opacity: 1; }
}

/* Service-specific video positioning */
.service-flowing-item[data-service="photography"] .service-head-inline,
.service-flowing-item[data-service="drone"] .service-head-inline {
  grid-template-columns: 1fr clamp(200px, 28vw, 320px);
  grid-template-areas: "text side";
}

.service-flowing-item[data-service="photography"] .service-side,
.service-flowing-item[data-service="drone"] .service-side {
  position: absolute;
  top: 300px;
  right: -50px; 
  transform: translateY(-50%);
}

.service-flowing-item[data-service="videography"] .service-head-inline,
.service-flowing-item[data-service="editing"] .service-head-inline {
  grid-template-columns: clamp(200px, 28vw, 320px) 1fr;
  grid-template-areas: "side text";
}
.service-flowing-item[data-service="videography"] .service-side,
.service-flowing-item[data-service="editing"] .service-side {
  position: absolute;
  top: 300px;
  left: -50px; 
  transform: translateY(-50%);
}

/* Videography + Editing fully right-aligned */
.service-flowing-item[data-service="videography"] .service-head,
.service-flowing-item[data-service="editing"] .service-head {
  justify-items: end;
  text-align: right;
}
.service-flowing-item[data-service="videography"],
.service-flowing-item[data-service="editing"] {
  position: relative;
}

.service-flowing-item[data-service="videography"] .learn-more-link,
.service-flowing-item[data-service="editing"] .learn-more-link {
  display: block;
  position: absolute;
  left: clamp(24px, 6vw, 80px);
  bottom: 20px;              /* matches the expanded gap */
  margin: 0;
}

.service-flowing-item[data-service="videography"] .service-flowing-link,
.service-flowing-item[data-service="editing"] .service-flowing-link {
  justify-content: flex-end;
  text-align: right;
}

.service-flowing-item.expanded[data-service="videography"] .learn-more-link,
.service-flowing-item.expanded[data-service="editing"] .learn-more-link {
  position: absolute;
  bottom: 20px; /* adjust spacing as needed */
}

/* Move Photography + Droning "Learn more" to the right */
.service-flowing-item[data-service="photography"] .learn-more-link,
.service-flowing-item[data-service="drone"] .learn-more-link {
display: block;
  text-align: right;
  position: absolute;
  bottom: 20px;                    /* same as expanded */
  right: clamp(24px, 6vw, 80px);
  margin: 0;   
}
.service-flowing-item.expanded[data-service="photography"] .learn-more-link,
.service-flowing-item.expanded[data-service="drone"] .learn-more-link {
  position: absolute;
  bottom: 20px;
  right: clamp(24px, 6vw, 80px);
  margin: 0;
}

.service-flowing-item[data-service="collab"] {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-flowing-item[data-service="collab"] .service-flowing-link {
  padding-inline: 0;        /* remove shared inset */
  margin: 0 auto;
  width: 100%;
}

.service-flowing-item[data-service="collab"] .booking-button {
  margin: 0 auto 22px;
}
.service-desc {
  font-size: 20px;
}
.service-title {
  font-size: 45px;
}

.service-media {
  flex: 0 0 clamp(120px, 22vw, 180px);
  height: clamp(80px, 14vw, 120px);
  border: 1px dashed rgba(212, 175, 55, 0.5);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(0, 0, 0, 0.3));
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(2px);
}

.service-flowing-link {
  display: inline-block;
}

.service-details {
  display: none;
  margin: 10px 0 0;
  text-align: left;
  max-width: 960px;
  font-size: 25px;
}
.service-flowing-item.expanded .service-details { display: block; }

.service-details .word-anim {
  opacity: 0;
  filter: blur(6px);
  transform: translateY(10px);
  display: inline-block;
}
.service-flowing-item.expanded .service-details .word-anim {
  animation: detailWord 0.4s ease forwards;
  animation-delay: calc(var(--i) * 0.04s); /* stagger each word */
}
@keyframes detailWord {
  from { opacity: 0; filter: blur(6px); transform: translateY(10px); }
  to   { opacity: 1; filter: blur(0);  transform: translateY(0); }
}

/* Keep video/editing details aligned under their headings like other services */
.service-flowing-item[data-service="videography"] .service-details,
.service-flowing-item[data-service="editing"] .service-details {
  text-align: right;
  padding-inline: 0px;
  margin: 10px 0 0;
  margin-left: auto;
  max-width: 960px;
}

/* ===== PORTFOLIO ===== */
#portfolio-view {
  background: linear-gradient(180deg, #1a1a2e 0%, #0f1b3a 100%);
  color: #f9e79f;
  padding: 60px 40px;
  text-align: center;
  min-height: 80vh;
  animation: fadeIn 0.6s ease;
}
#portfolio-view.hidden { display: none; }

.portfolio-gallery { display: none; animation: fadeIn 0.6s ease; }
.portfolio-gallery.active { display: block; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.gallery-grid img,
.gallery-grid video {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Portfolio item reveal */
.fade-in-item {
  opacity: 0;
  transform: translateY(12px);
  animation: portfolioFadeUp 0.6s ease forwards;
}

@keyframes portfolioFadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.gallery-grid img:hover,
.gallery-grid video:hover { transform: scale(1.05); box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5); }
.gallery-grid img,
.video-thumb-media {
  -webkit-user-drag: none;
  user-select: none;
}

/* ===== PORTFOLIO VIEWER ===== */
.portfolio-viewer {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 10, 20, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.portfolio-viewer.show { display: flex; animation: fadeIn 0.4s ease forwards; }

.portfolio-viewer-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  height: 90%;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
}

.portfolio-viewer img,
.portfolio-viewer video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
  position: relative;
}

.video-thumb {
  position: relative;
  background: #0a0a0a;
  min-height: 220px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  overflow: hidden;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.video-thumb-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-thumb .play-icon {
  position: absolute;
  z-index: 2;
  font-size: 42px;
  color: #f9e79f;
  text-shadow: 0 3px 10px rgba(0,0,0,0.6);
  pointer-events: none;
}
.video-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,0,0,0.0), rgba(0,0,0,0.45));
  z-index: 1;
  pointer-events: none;
}

/* Watermark */
.portfolio-viewer .watermark {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
  --watermark-opacity: 0.08;
}
.portfolio-viewer .watermark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('icons/logo2.png');
  background-repeat: repeat;
  background-size: 220px;
  transform: rotate(-18deg);
  opacity: var(--watermark-opacity);
  mix-blend-mode: screen;
  animation: watermark-drift-slow 18s linear infinite;
}
.portfolio-viewer .watermark::after {
  content: "LION'S EYE   ●   LION'S EYE   ●   LION'S EYE";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(212,175,55,0.07) 0 2px, rgba(212,175,55,0) 2px 160px);
  opacity: calc(var(--watermark-opacity) * 1.1);
  color: rgba(212,175,55,0.06);
  font-weight: 700;
  font-family: 'Cinzel', serif;
  font-size: 36px;
  letter-spacing: 8px;
  text-transform: uppercase;
  transform: rotate(-25deg) translateY(-10%);
  text-align: center;
  line-height: 1;
  padding-top: 40%;
  mix-blend-mode: overlay;
  animation: watermark-drift-fast 10s linear infinite, watermark-pulse 3.5s ease-in-out infinite;
  white-space: nowrap;
}

@keyframes watermark-drift-slow {
  0% { background-position: 0 0; transform: rotate(-18deg) translate(0,0); }
  50% { background-position: 400px 400px; transform: rotate(-18deg) translate(30px,30px); }
  100% { background-position: 0 0; transform: rotate(-18deg) translate(0,0); }
}
@keyframes watermark-drift-fast {
  0% { transform: rotate(-25deg) translateX(-5%); opacity: 0.95; }
  50%{ transform: rotate(-25deg) translateX(5%);  opacity: 1; }
  100%{ transform: rotate(-25deg) translateX(-5%); opacity: 0.95; }
}
@keyframes watermark-pulse { 0% { filter: brightness(1); } 50% { filter: brightness(1.08); } 100% { filter: brightness(1); } }

/* ===== POPUPS ===== */
.contact-popup,
.popup-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  backdrop-filter: blur(5px);
}

.contact-popup-content,
.popup-content {
  background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
  border: 2px solid #d4af37;
  border-radius: 15px;
  padding: 20px 22px;
  text-align: center;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
  animation: fadeInPopup 0.4s ease forwards;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  width: min(92vw, 420px);
  max-width: 420px;
}
.popup-content { width: min(94vw, 580px); max-width: 580px; }
.booking-popup  { width: min(94vw, 580px); max-width: 580px; padding: 18px 22px; max-height: none; overflow: visible; }

.popup-logo {
  display: block;
  margin: 0 auto 20px;
  width: 140px;
  height: auto;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
}

.contact-popup-content h2,
.popup-content h2 {
  font-family: 'Cinzel', serif;
  font-weight: bold;
  margin-bottom: 20px;
}

.contact-popup-content p { color: #faf7f2; font-size: 1.1rem; line-height: 1.6; }
.contact-popup-content a { color: #d4af37; text-decoration: none; font-weight: bold; }
.contact-popup-content a:hover { color: #f9e79f; }

.close-popup {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  color: #d4af37;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}
.close-popup:hover { transform: scale(1.2); color: #f9e79f; }

@keyframes fadeInPopup { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }

/* ===== BOOKING FORM ===== */
.form-section { margin-bottom: 20px; }
.form-section h3 { font-size: 1.1rem; color: #d4af37; margin-bottom: 10px; }

label { display: block; margin-bottom: 10px; }

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select {
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.05);
  color: #f9e79f;
  margin-bottom: 10px;
}
select#booking-time {
  background: rgba(15, 52, 96, 0.9);
  color: #f9e79f;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 5px;
  padding: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
}
select#booking-time:focus { outline: none; box-shadow: 0 0 8px rgba(212, 175, 55, 0.5); }

.confirm-button {
  background: linear-gradient(135deg, #d4af37, #aa8f3b);
  color: #16213e;
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: bold;
  font-family: 'Cinzel', serif;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  margin: 20px auto 0;
}
.confirm-button:hover { background: linear-gradient(135deg, #f9e79f, #d4af37); transform: translateY(-2px); }

.booking-popup .popup-logo { width: 110px; margin-bottom: 16px; }
.booking-popup .form-section { margin-bottom: 14px; }

.booking-popup .form-section h3 { margin-bottom: 8px; }
.booking-popup label { margin-bottom: 8px; }
.booking-popup input[type="text"],
.booking-popup input[type="email"],
.booking-popup input[type="tel"],
.booking-popup input[type="date"],
.booking-popup select {
  width: calc(100% - 20px);
  max-width: 520px;
  padding: 4px 8px;
  min-height: 28px;
  line-height: 1.2;
  margin: 6px auto;
  display: block;
}
.booking-popup select#booking-time { padding: 4px 8px; }
.booking-popup .confirm-button { padding: 12px 20px; margin: 16px auto 0; }

/* Booking services list: center column, left-aligned items */
.booking-popup .form-section:first-of-type {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  text-align: left;
  width: max-content;
  margin: 0 auto 14px;
}

.booking-popup .form-section:first-of-type h3 {
  align-self: center;
}

.booking-popup .form-section:first-of-type label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

/* ===== CUSTOM ALERT ===== */
.alert-backdrop {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 9999;
}

.custom-alert {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
  border: 2px solid #d4af37;
  border-radius: 15px;
  padding: 40px 50px;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
  z-index: 10001;
  text-align: center;
  min-width: 300px;
  max-width: 500px;
  width: 90%;
  cursor: pointer;
  animation: fadeInPopup 0.4s ease forwards;
  margin: 0;
}

.custom-alert-logo {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.6));
  animation: fadeIn 0.5s ease;
}
.custom-alert-logo.success { filter: drop-shadow(0 0 12px rgba(76, 175, 80, 0.8)); }
.custom-alert-logo.error   { filter: drop-shadow(0 0 12px rgba(244, 67, 54, 0.8)); }

.custom-alert-content {
  color: #f9e79f;
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

#collab {
  padding: 40px 20px;
  text-align: center;
}
#collab h2 { 
  margin: 4px 0 6px;
  font-size: 30px;
}
#collab p  { 
  margin: 0 0 20px;
  font-size: 1.1rem;
}

.collab-card {
  margin: 0 auto;
}

.collab-logo {
  width: 120px;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.6));
  margin-bottom: 6px;
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
  color: #d4af37;
  text-align: center;
  padding: 20px;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  margin: 0;
}

footer a { color: #00aced; text-decoration: none; transition: color 0.3s ease; }
footer a:hover { color: #0084b4; }

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  justify-items: center;
}

.footer-text  { grid-column: 2; text-align: center; line-height: 1.4; }
.footer-logo  { grid-column: 1; justify-self: start; }

.footer-socials {
  grid-column: 3;
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  text-align: left;   
    max-width: 100%;
  overflow: hidden;  
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d4af37;
  text-decoration: none;
}

.footer-socials img {
  width: 26px;
  height: 26px;
  filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.6));
  transition: transform 0.2s ease;
}

.footer-socials img:hover { transform: scale(1.05); }
.footer-logo img { width: 100px; height: auto; }

/* ===== SCREEN ADJUSTMENTS ===== */

/* Staggered menu styling improvements */
.staggered-menu {
  position: fixed;
  inset: 0;
  display: block;
  pointer-events: none;
  z-index: 1999;
}

.staggered-menu .staggered-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1999;
  pointer-events: none;
}

body.staggered-open .staggered-menu {
  pointer-events: auto;
}

body.staggered-open .staggered-menu .staggered-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.staggered-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: clamp(280px, 72vw, 420px);
  max-width: calc(100vw - 20px);
  height: 100vh;
  background: linear-gradient(135deg, rgba(15,52,96,0.98), rgba(22,33,62,0.98));
  border-right: 2px solid rgba(212,175,55,0.45);
  box-shadow: 10px 0 30px rgba(0,0,0,0.5);
  transform: translateX(-105%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2000;
  padding: 72px clamp(18px, 4vw, 32px) 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow-y: auto;
  overflow-x: hidden;
}

body.staggered-open .staggered-panel {
  transform: translateX(0);
}

.staggered-panel-header {
  font-size: clamp(18px, 4vw, 22px);
  letter-spacing: 2px;
  text-align: left;
  margin: 0 0 6px;
  background: linear-gradient(135deg, #d4af37 0%, #f9e79f 50%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.staggered-panel-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.staggered-item {
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: 10px;
  padding: 14px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: clamp(0.95rem, 3.5vw, 1.1rem);
  letter-spacing: 1px;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #d4af37 0%, #f9e79f 50%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.staggered-item:hover,
.staggered-item:active {
  background-color: rgba(212,175,55,0.15);
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
  transform: translateY(-1px);
  border-color: rgba(212,175,55,0.6);
}

.staggered-item::after {
  content: '+';
  font-weight: 700;
  font-size: 1.3rem;
  color: #d4af37;
  -webkit-text-fill-color: #d4af37;
  background: none;
}

.staggered-item.active {
  background-color: rgba(212,175,55,0.2);
  border-color: rgba(212,175,55,0.7);
}

.staggered-item.active::after {
  content: '–';
}

.staggered-sublist {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 8px 12px 12px;
  border-left: 2px solid rgba(212,175,55,0.5);
  margin-left: 12px;
}

.staggered-sublist.show {
  display: flex;
}

.staggered-subitem {
  padding: 10px 12px;
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 8px;
  font-size: clamp(0.85rem, 3vw, 0.95rem);
  letter-spacing: 0.5px;
  background: rgba(0,0,0,0.15);
  color: #f9e79f;
  cursor: pointer;
  transition: all 0.3s ease;
}

.staggered-subitem:hover,
.staggered-subitem:active {
  background: rgba(212,175,55,0.2);
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
  border-color: rgba(212,175,55,0.6);
}

.logo-lines {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45px;
  height: 45px;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2100;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.logo-line {
  position: absolute;
  width: 28px;
  height: 3px;
  background: linear-gradient(135deg, #d4af37, #f9e79f);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  opacity: 0;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.logo-line.line1 {
  transform: translateY(-6px);
}

.logo-line.line2 {
  transform: translateY(6px);
}

/* ===== PRICING PAGE ===== */
#pricing-view {
  background: linear-gradient(180deg, #1a1a2e 0%, #0f1b3a 100%);
  color: #f9e79f;
  padding: 80px 20px 60px;
  min-height: 80vh;
}

#pricing-view.hidden { display: none; }

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

.pricing-title {
  text-align: center;
  font-size: clamp(32px, 6vw, 56px);
  margin: 0 0 60px;
}

.pricing-subtitle {
  text-align: center;
  font-size: clamp(28px, 5vw, 42px);
  margin: 60px 0 40px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.pricing-card {
  background: linear-gradient(135deg, rgba(15,52,96,0.85), rgba(22,33,62,0.9));
  border: 2px solid rgba(212, 175, 55, 0.35);
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.45);
  border-color: rgba(249, 231, 159, 0.55);
}

.pricing-card h3 {
  font-size: clamp(20px, 4vw, 26px);
  margin: 0 0 20px;
  letter-spacing: 1.5px;
    hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
}

.pricing-card .price {
  font-size: clamp(36px, 6vw, 48px);
  font-weight: 800;
  margin: 20px 0;
  background: linear-gradient(135deg, #f9e79f 0%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-card .price span {
  font-size: clamp(18px, 3vw, 22px);
  font-weight: 600;
}

.pricing-includes {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  text-align: left;
}

.pricing-includes li {
  padding: 8px 0;
  font-size: clamp(14px, 3vw, 16px);
  color: #faf7f2;
  position: relative;
  padding-left: 24px;
}

.pricing-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #d4af37;
  font-weight: bold;
  font-size: 18px;
}

.pricing-card.package {
  background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(15,52,96,0.9));
  border-color: rgba(212, 175, 55, 0.5);
}

.package-savings {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37, #aa8f3b);
  color: #16213e;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: clamp(13px, 2.5vw, 15px);
  margin-top: 12px;
  -webkit-text-fill-color: #16213e !important;
}

.pricing-cta {
  text-align: center;
  margin-top: 60px;
  padding: 40px 20px;
  background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(15,52,96,0.5));
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.pricing-cta p {
  font-size: clamp(18px, 4vw, 24px);
  margin: 0 0 24px;
}

.prices-button {
  background: linear-gradient(135deg, #d4af37 0%, #aa8f3b 100%);
  color: #16213e;
  padding: 15px 40px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
  -webkit-text-fill-color: #16213e !important;
  display: inline-block;
}

.prices-button:hover {
  background: linear-gradient(135deg, #f9e79f 0%, #d4af37 100%);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 5px 18px rgba(212, 175, 55, 0.5);
}

#pricing-view:not(.hidden) ~ .portfolio-card-grid,
#pricing-view:not(.hidden) ~ #collab {
  display: none;
}

.pricing-note {
  text-align: center;
  color: #e9e9ef;
  margin-top: 6px;
  font-size: 2rem;
}

.price-sets {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: -10px;
  margin-bottom: 12px;
}

.price-sets > div {
  font-size: clamp(20px, 4vw, 26px);
  font-weight: 700;
  background: linear-gradient(135deg, #f9e79f 0%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-sets span {
  font-size: clamp(14px, 2.5vw, 18px);
  font-weight: 600;
}

.price-addon {
  font-size: clamp(14px, 2.5vw, 16px);
  color: #d4af37;
  margin-top: 4px;
  font-weight: 600;
}

.price .price-context {
  font-size: clamp(14px, 2.5vw, 18px);
  font-weight: 600;
  opacity: 0.85;
}

@media screen and (orientation: portrait) {
  .main-nav {
    grid-template-columns: auto 1fr auto;
    padding: 6px 10px;
    column-gap: 8px;
  }
  .nav-menu, .nav-drawer { display: none !important; }
  .language-switcher { display: block !important; justify-self: end; }
  .site-title {
    display: block;
    text-align: center;
    font-size: clamp(16px, 4vw, 22px);
    letter-spacing: 3px;
  }

  .about-section {
    padding: 60px 16px 40px;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-badge {
    padding: 30px 20px;
  }
  
  .about-logo {
    width: 140px;
  }
  
  .about-description p {
    text-align: left;
  }

  .staggered-menu { display: block; }
  body.staggered-open .staggered-menu { pointer-events: auto; }
  body.staggered-open .staggered-menu .staggered-backdrop { opacity: 1; pointer-events: auto; }
  body.staggered-open .staggered-panel { transform: translateX(0); }
  .site-title { display: block; }

    .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  #pricing-view {
    padding: 70px 16px 40px;
  }
  /* Unified layout for all services (expanded or not) */
  .service-flowing-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    min-height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    gap: 8px;
    padding-bottom: 14px !important; /* give Learn More breathing room above bottom */
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: clamp(12px, 4vw, 24px);
    padding-right: clamp(12px, 4vw, 24px);
  }

  .service-flowing-item.expanded {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    min-height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    gap: 8px;
    padding-bottom: 20px !important;
  }

  .service-head,
  .service-head-inline {
    display: contents !important;
    position: relative;
    z-index: 2;
  }

  .service-flowing-item .service-head,
  .service-flowing-item.expanded .service-head {
    justify-items: start !important;
    text-align: left !important;
    margin-top: 0 !important;
  }

  .service-flowing-item .service-head-inline,
  .service-flowing-item.expanded .service-head-inline {
    grid-template-columns: none !important;
    grid-template-areas: unset !important;
  }

  .service-flowing-item .service-side,
  .service-flowing-item.expanded .service-side {
    order: 3;
    display: flex !important;
    flex-direction: column !important;
    position: static !important;
    transform: none !important;
    left: auto !important;
    top: auto !important;
    justify-self: flex-start !important;
    align-items: flex-start !important;
    width: 100%;
    padding-inline: clamp(12px, 4vw, 24px) !important;
    margin: 8px 0 0 !important;
    gap: 8px;
  }

  .service-flowing-item .service-flowing-link,
  .service-flowing-item.expanded .service-flowing-link {
    order: 1;
    text-align: left !important;
    width: 100%;
    padding-inline: clamp(12px, 4vw, 24px) !important;
    margin: 12px clamp(12px, 4vw, 24px) 0 !important;
  }

  .service-flowing-item .service-title,
  .service-flowing-item .service-desc {
    text-align: left !important;
  }

  /* Restore metallic shine for service headings/text in this layout */
  .service-flowing-item .service-title,
  .service-flowing-item .service-desc,
  .service-flowing-item .service-flowing-link,
  .service-flowing-item .service-details,
  .service-flowing-item .learn-more-link,
  .service-flowing-item .service-video-cta {
    color: #f9e79f !important; /* fallback if text-clip fails */
    background: linear-gradient(135deg, #d4af37 0%, #f9e79f 25%, #d4af37 50%, #aa8f3b 75%, #d4af37 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    background-size: 200% auto !important;
    animation: shine 3s linear infinite !important;
    text-shadow: 0 0 8px rgba(249, 231, 159, 0.45);
    position: relative;
    z-index: 3;
  }

  .service-flowing-item .service-details,
  .service-flowing-item.expanded .service-details {
    order: 2;
    display: block !important;
    text-align: left !important;
    margin: 10px 0 0 !important;
    max-width: 960px !important;
    width: 100%;
    align-self: flex-start !important;
    position: relative;
    z-index: 2;
  }

  .service-flowing-item .learn-more-link,
  .service-flowing-item.expanded .service-learn-more-link {
    position: static !important;
    display: block !important;
    width: fit-content !important;
    align-self: flex-start !important;
    order: 4;
    margin-top: auto !important;
    margin-bottom: 20px !important;
    margin-left: clamp(24px, 6vw, 80px) !important;
    margin-right: auto !important;
    text-align: left !important;
    left: auto !important;
    right: auto !important;
  }

  /* Force photo/drone learn-more to stay left and visible in this layout */
  .service-flowing-item[data-service="photography"] .learn-more-link,
  .service-flowing-item.expanded[data-service="photography"] .learn-more-link,
  .service-flowing-item[data-service="drone"] .learn-more-link,
  .service-flowing-item.expanded[data-service="drone"] .learn-more-link {
    position: static !important;
    display: block !important;
    width: fit-content !important;
    align-self: flex-start !important;
    order: 4;
    margin-top: auto !important;
    margin-bottom: 20px !important;
    margin-left: clamp(24px, 6vw, 80px) !important;
    margin-right: auto !important;
    text-align: left !important;
    left: auto !important;
    right: auto !important;
  }
  /* Keep video/edit learn-more aligned with photo/drone spacing */
  .service-flowing-item[data-service="videography"] .learn-more-link,
  .service-flowing-item.expanded[data-service="videography"] .learn-more-link,
  .service-flowing-item[data-service="editing"] .learn-more-link,
  .service-flowing-item.expanded[data-service="editing"] .learn-more-link {
    margin-top: auto !important;
    margin-bottom: 20px !important;
    margin-left: clamp(24px, 6vw, 80px) !important;
    margin-right: auto !important;
  }

  /* Collapse details when not expanded to keep normal cards shorter */
  .service-flowing-item:not(.expanded) .service-details {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
    max-height: 0 !important;
  }

.service-flowing-item .service-video-box,
.service-flowing-item.expanded .service-video-box {
  order: 3;
  position: static !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  width: clamp(200px, 85vw, 720px) !important;
  max-width: 92vw !important;
  margin: 12px auto 0 !important;
  justify-self: center !important; 
  align-self: center !important; 
  opacity: 0;
  transform: translateY(24px);
}

  /* Keep space reserved in expanded state so layout doesn't jump */
  .service-flowing-item.expanded .service-video-box {
    display: block !important;
    visibility: hidden;
    opacity: 0;
    transform: translateY(24px);
  }
  .service-flowing-item.expanded .service-video-box.video-revealed {
    visibility: visible;
    opacity: 1;
    animation: video-rise-mobile 2s ease forwards !important;
  }

.service-video-cta,
.service-flowing-item.expanded .service-video-cta {
  order: 4;
  position: static !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
  margin: 12px auto 0 !important; 
  padding-inline: 0 !important; 
  text-align: center !important; 
  width: auto;
  align-self: center !important; 
  opacity: 0;
  transform: translateY(18px);
  visibility: hidden;
  pointer-events: none;
}

  /* Hide media/CTA on collapsed cards to keep them compact */
  .service-flowing-item:not(.expanded) .service-video-box,
  .service-flowing-item:not(.expanded) .service-video-cta {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
    max-height: 0 !important;
    opacity: 0 !important;
    transform: none !important;
  }

  /* Make CTA visible in expanded state */
  .service-flowing-item.expanded .service-video-cta {
    display: block !important;
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    margin-left: clamp(96px, 16vw, 260px) !important;
    visibility: hidden;
  }

  /* Animate CTA after video reveal */
  .service-flowing-item.expanded .service-video-box.video-cta-visible + .service-video-cta,
  .service-flowing-item.expanded .service-video-box.video-cta-visible ~ .service-video-cta {
    animation: cta-slide-mobile 0.7s ease forwards !important; /* JS adds video-cta-visible 2s after video */
    animation-fill-mode: forwards !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    margin: 12px auto 0 !important; /* CHANGED */
  }

  /* Keep the same hover lift/glow for CTA in this layout */
  .service-flowing-item.expanded .service-video-cta:hover {
    transform: translateY(-1px) !important;
    text-shadow: 0 0 8px rgba(249, 231, 159, 0.9), 0 0 14px rgba(212, 175, 55, 0.8) !important;
  }

  /* Trim extra gap after services before Portfolio */
  #services {
    padding-bottom: 0 !important;
  }
  .flowing-services {
    min-height: auto !important;
  }
  .service-flowing-item:last-child {
    margin-bottom: 0 !important;
  }

  /* Fresh animations for stacked mobile layout */
  @keyframes video-rise-mobile {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes cta-slide-mobile {
    from { opacity: 0; transform: translateY(18px);}
    to   { opacity: 1; transform: translateY(0); }
  }
  
  /* Full-bleed layout: stretch everything edge-to-edge */
  html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .main-nav {
    width: 100vw;
    max-width: 100vw;
    left: 0;
    right: 0;
    transform: none;
    margin: 0;
    padding-left: 10px;
    padding-right: 10px;
  }

  .nav-logo { margin-left: 0; }
.dropdown-bar,
  header,
  section,
  #services,
  .flowing-services,
  .portfolio-card-grid,
  .gallery-grid,
  footer,
  .footer-inner {
    width: 100vw;
    max-width: 100vw;
    margin-left: 0;
    margin-right: 0;
  }

  .dropdown-bar {
    left: 0;
    right: 0;
    transform: none;
    position: fixed;
    top: 50px;
  }
  /* Keep three-column footer layout with socials on the far right */

  .footer-inner {
  display: grid;
  grid-template-columns: minmax(60px, 1fr) auto minmax(60px, 1fr);
  align-items: center;
  justify-items: center;
  padding: 0 10px;
  gap: 8px;
  max-width: 100vw;
  overflow: hidden;
}

  .footer-logo  { grid-column: 1; justify-self: start; }
  .footer-text  { grid-column: 2; text-align: center; }
  .footer-socials {
    grid-column: 3;
    justify-self: end;
    flex-wrap: nowrap;
    width: auto;
     max-width: 100%; 
  overflow: hidden;
  }

  .footer-socials a {
  font-size: clamp(0.75rem, 2.5vw, 0.9rem); /* ADD THIS */
  white-space: nowrap; /* ADD THIS */
}

  /* Ultra-narrow phones: hide footer text to avoid overflow */
  @media screen and (max-width: 500px) {
   .footer-socials a {
    gap: 0;
    padding: 0;
  }
  
  .footer-socials span {
    display: none;
  }
  
  .footer-socials img {
    width: 24px !important;
    height: 24px !important;
    margin: 0;
  }
  
  .footer-socials {
    gap: 8px;
    padding-right: 4px;

  }
  
  .footer-logo img {
    width: 60px;
  }
  
  .footer-text {
    font-size: 0.75rem;
    padding: 0 4px;
  }

  }

  header { min-height: clamp(300px, 50vh, 500px); }
  .section-title { font-size: clamp(20px, 7vw, 28px); margin: 12px 0 8px; }
  .service-title { font-size: clamp(20px, 7vw, 26px); }
  .service-desc { font-size: clamp(14px, 5vw, 18px); }
  .service-details { font-size: clamp(16px, 4.5vw, 20px); max-width: 94vw; }
  
  .portfolio-card-grid { 
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    padding: 40px 10px 16px;
  }
  .portfolio-card { min-height: 140px; padding: 12px 10px 10px; }
  .portfolio-card h3 { font-size: 1.05rem; }
  .portfolio-card p { font-size: 0.82rem; line-height: 1.5; }
  .card-button { padding: 8px 14px; font-size: 0.85rem; }
  
  .gallery-grid { 
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }
  
  .dropdown-content { 
    gap: 20px; 
    padding: 12px 20px;
    flex-wrap: wrap;
    max-width: 100vw;
    justify-content: flex-start;
  }
  .service-item, .social-link { padding: 12px 20px; font-size: 0.9rem; }
  .social-icon { width: 20px; height: 20px; }
  
  .portfolio-folders { gap: 20px; padding: 16px 12px; }
  .portfolio-box { width: 110px; height: 140px; }
  .folder-title { font-size: 0.85rem; letter-spacing: 1.5px; }
  .folder__back { width: 100px; height: 75px; }
  
  .contact-popup-content, .popup-content { 
    width: min(96vw, 360px);
    padding: 16px 18px;
  }
  .popup-logo { width: 100px; margin-bottom: 16px; }
  .booking-popup { width: min(96vw, 480px); padding: 14px 18px; }
  .booking-popup .popup-logo { width: 90px; margin-bottom: 12px; }
  .booking-popup input[type="text"],
  .booking-popup input[type="email"],
  .booking-popup input[type="tel"],
  .booking-popup input[type="date"],
  .booking-popup select { 
    width: calc(100% - 16px);
    padding: 6px 8px;
    font-size: 0.9rem;
  }
  .confirm-button { padding: 10px 18px; font-size: 0.9rem; }
  
  #collab h2 { font-size: clamp(22px, 6vw, 26px); }
  #collab p { font-size: 0.95rem; }
  .collab-logo { width: 90px; }
  
  .footer-inner { padding: 0 6px; gap: 16px; }
  .footer-logo img { width: 80px; }
  .footer-text { font-size: 0.9rem; }
  .footer-socials a { font-size: 0.9rem; }
  .footer-socials img { width: 22px; height: 22px; }

  /* Safety overflow protection for all containers */
.main-nav,
.dropdown-bar,
.dropdown-content,
header,
section,
#services,
.flowing-services,
.service-flowing-item,
.portfolio-card-grid,
.gallery-grid,
footer,
.footer-inner,
.footer-socials {
  max-width: 100vw !important;
  box-sizing: border-box !important;
}

/* Prevent any absolutely positioned elements from causing overflow */
body.staggered-open {
  overflow-x: hidden !important;
}
/* Ensure footer never causes horizontal scroll */
footer {
  overflow-x: hidden !important;
}

.footer-inner {
  overflow-x: hidden !important;
  min-width: 0; /* Allow flex items to shrink below content size */
}

.footer-socials {
  min-width: 0; /* Allow flex items to shrink */
  flex-shrink: 0; /* Prevent collapsing but allow overflow handling */
  margin-right: 50px !important; /* provide breathing room from edge */
}

/* Protect against any rogue absolute positioning */
.service-flowing-item[data-service="photography"] .service-side,
.service-flowing-item[data-service="drone"] .service-side,
.service-flowing-item[data-service="videography"] .service-side,
.service-flowing-item[data-service="editing"] .service-side {
  right: auto !important;
  left: auto !important;
}

/* Ensure CTAs don't cause overflow in portrait */
.service-video-cta {
  max-width: calc(100vw - 40px) !important;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

  .pricing-includes {
    text-align: center;
  }
  
  .pricing-includes li {
    padding-left: 0;
  }
  
  .pricing-includes li::before {
    position: static;
    display: inline;
    margin-right: 8px;
  }
}
