/* Bento Portfolio Layout (Editorial/Studio Style) */
.bento-portfolio {
  padding: 100px 0;
  background: #fff;
  overflow: hidden;
}

.bento-layout {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

@media (max-width: 992px) {
  .bento-layout {
    flex-direction: column;
    gap: 60px;
  }
}

.bento-sidebar {
  flex: 0 0 auto;
  width: 80px;
  height: 100%;
}

.sidebar-sticky {
  position: sticky;
  top: 120px;
}

.vertical-title {
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1;
  font-weight: 900;
  color: #1d1d1f;
  margin: 0;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

@media (max-width: 992px) {
  .bento-sidebar {
    width: 100%;
    height: auto;
  }
  .vertical-title {
    -webkit-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
    transform: none;
    text-align: left;
    margin-bottom: 20px;
  }
  .sidebar-sticky {
    position: relative;
    top: 0;
  }
  .sidebar-desc {
    -webkit-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
    transform: none;
    margin-top: 10px;
    max-height: none;
    text-align: left;
  }
}

.vertical-title .highlight {
  color: #4361ee;
  opacity: 0.8;
}

.sidebar-desc {
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin-top: 40px;
  font-size: 14px;
  line-height: 1.6;
  color: #94a3b8;
  max-height: 400px;
  font-weight: 500;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-auto-rows: 350px;
  gap: 24px;
  width: 100%;
}

@media (max-width: 992px) {
  .hero {
    padding: 120px 20px 40px !important;
  }
  .massive-branding {
    font-size: 14vw !important;
    text-align: center;
    width: 100%;
  }
  .intro-text-editorial {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .nav-editorial {
    display: none;
  }
  .massive-branding {
    font-size: 25vw;
    letter-spacing: -4px;
  }
}

@media (max-width: 992px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 300px;
  }
}

@media (max-width: 600px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }
}

.bento-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #f8f9fa;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  cursor: pointer;
}

.bento-item img,
.bento-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.bento-item.wide {
  grid-column: span 2;
}
.bento-item.tall {
  grid-row: span 2;
}

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.4s ease;
  color: #fff;
}

.bento-tag {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.bento-overlay h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}
/* Testimonials Marquee Styling */
.testimonial-marquee-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 60px 0 100px;
  margin-top: 20px;
  /* Premium Mask Effect - No 'Boxy' Overlays */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  );
}

.testimonial-marquee-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marquee-scroll 25s linear infinite; /* Increased Speed (25s) */
}

.testimonial-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 20px));
  } /* Half width + gap */
}

.testimonial-card.notecard {
  position: relative; /* Changed from absolute */
  flex: 0 0 500px; /* Fixed width for consistent marquee */
  background: #fdfdfd;
  padding: 60px 50px 40px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  border-radius: 4px; /* Slight corner for note feel */
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 1; /* Always visible in marquee */
  z-index: 1;
}

.paperclip-icon {
  position: absolute;
  top: -15px;
  left: 50px;
  font-size: 45px;
  color: #4361ee; /* Premium Blue paperclip */
  transform: rotate(-15deg);
  z-index: 10;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
}

.stars-display {
  text-align: center;
  margin-bottom: 25px;
}

.stars-display i {
  color: #ffd700; /* Gold stars */
  font-size: 24px;
  margin: 0 4px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.testimonial-text {
  font-family: "Montserrat", sans-serif;
  font-size: 19px;
  line-height: 1.6;
  color: #000000;
  margin-bottom: 30px;
  font-weight: 500;
}

@media (max-width: 600px) {
  .testimonial-card.notecard {
    flex: 0 0 320px;
    padding: 40px 25px 30px;
  }
  .testimonial-text {
    font-size: 16px;
  }
  .signature {
    font-size: 16px;
  }
  .paperclip-icon {
    font-size: 32px;
    left: 20px;
  }
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Spreads logo to left and name to right */
  gap: 15px;
  margin-top: 20px;
  width: 100%;
}

.testi-author-icon {
  width: 65px;
  height: 65px;
  object-fit: contain;
  filter: brightness(0); /* Make it bold black */
  opacity: 0.8; /* Increased opacity */
  transition: all 0.3s;
}

.testimonial-card:hover .testi-author-icon {
  transform: scale(1.1);
}

.author-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* Align text to the right edge */
}

.signature {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.author-info .role {
  font-size: 13px;
  color: #64748b;
  margin-top: 2px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 50px;
}

.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testi-dot.active {
  background: #4361ee; /* Blue active dot */
  transform: scale(1.3);
}

/* Form Styles */
.give-testimonial-card {
  background: #ffffff;
  color: #000000;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.give-testimonial-card h3 {
  color: #000000 !important;
}

.give-testimonial-card p {
  color: #444444 !important;
}

.star-rating-input {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.star-rating-input span {
  font-size: 14px;
  font-weight: 600;
}

.star-rating-input .stars {
  display: flex;
  gap: 5px;
}

.star-rating-input .stars i {
  font-size: 24px;
  color: rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s;
}

.star-rating-input .stars i.active {
  color: #ffd700; /* Back to Gold stars */
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.3));
}

.testi-form {
  display: flex;
  flex-direction: column;
  gap: 24px; /* Increased spacing */
}

.form-group {
  width: 100%;
}

.testi-form input,
.testi-form textarea {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #000000;
  padding: 16px 20px;
  border-radius: 14px;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.testi-form input:focus,
.testi-form textarea:focus {
  border-color: #4361ee;
  box-shadow: 0 0 0 4px rgba(67, 97, 238, 0.1);
  outline: none;
  background: #fff;
}

.testi-form input::placeholder,
.testi-form textarea::placeholder {
  color: #adb5bd;
}

.btn-solid-dark {
  position: relative;
  background: #4361ee;
  color: #ffffff;
  padding: 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 10px;
  overflow: hidden; /* To hide sliding text */
}

.btn-testi .btn-text-orig,
.btn-testi .btn-text-hover {
  display: block;
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s;
}

.btn-testi .btn-text-hover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 100%); /* Start below */
  opacity: 0;
  white-space: nowrap;
}

.btn-testi:hover .btn-text-orig {
  transform: translateY(-150%); /* Slide up and away */
  opacity: 0;
}

.btn-testi:hover .btn-text-hover {
  transform: translate(-50%, -50%); /* Slide to center */
  opacity: 1;
}

.btn-solid-dark:hover {
  background: #3046bc;
  box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

.form-info {
  font-size: 12px;
  color: #64748b;
  margin-top: 5px;
  text-align: right;
  font-weight: 500;
}

/* Invisible Honeypot */
.hp-field {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: -1;
}

.form-error-msg {
  background: #fef2f2;
  color: #dc2626;
  padding: 12px 15px;
  border-radius: 10px;
  font-size: 14px;
  border-left: 4px solid #dc2626;
  font-weight: 500;
}

.form-success-msg {
  text-align: center;
  padding: 30px;
  background: #fffbef;
  border: 1px dashed #fbbf24;
  border-radius: 20px;
  color: #92400e;
}

.form-success-msg i {
  font-size: 40px;
  color: #fbbf24;
  margin-bottom: 15px;
}

@media (max-width: 992px) {
  .testimonial-layout {
    grid-template-columns: 1fr;
  }
  .testimonial-stack-container {
    height: 450px;
  }
  .testimonial-card.notecard {
    padding: 50px 30px 30px;
  }
}
.hero { padding-top: 60px !important;
  position: relative;
  width: 100%;
  height: 100vh !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 120px 60px 40px;
  background-image: url("../assets/images/martmut1.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  z-index: 10;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
}

.hero > * {
  position: relative;
  z-index: 5;
}

.hero-middle {
  max-width: 600px;
  margin-top: 40px;
}

.intro-text-editorial {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(24px, 5vw, 36px);
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero-bottom-editorial {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.massive-branding {
  font-size: 10vw;
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: #ffffff !important;
  margin-left: -10px;
  margin-bottom: -10px;
}

/* 3. About Section - Centered and Spaced */
.about-editorial {
  padding: 180px 0;
  position: relative;
  text-align: center;
  z-index: 15;
}

.about-editorial-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.about-icon-top {
  width: 150px;
  height: auto;
  margin-bottom: 40px;
}

.about-stars {
  font-size: 14px;
  margin-bottom: 40px;
  letter-spacing: 5px;
}

.about-main-text-editorial {
  font-size: clamp(20px, 4vw, 32px);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 50px;
}

.about-main-text-editorial .italic {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
}

.floating-img {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
  transition: transform 0.6s ease;
}

.img-left {
  left: 180px; /* Brining it closer to the text */
  top: 220px;
  transform: rotate(-12deg);
  width: 220px;
  height: 220px;
}

.img-right {
  right: 180px; /* Brining it closer to the text */
  top: 320px;
  transform: rotate(8deg);
  width: 220px;
  height: 220px;
}

.about-signature {
  margin-top: 60px;
}

.sig-name {
  display: block;
  font-weight: 900;
  font-size: 64px;
  letter-spacing: -0.05em;
  line-height: 0.9;
  text-transform: uppercase;
  margin-top: 20px;
}

.sig-role {
  color: #888;
  font-size: 14px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #333335; /* Solid dark background */
  padding: 4px 10px;
  border-radius: 8px; /* Sharper for consistency */
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}

.lang-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  padding: 2px 5px;
  transition: all 0.3s;
  font-family: "Montserrat", sans-serif;
}

.lang-btn.active {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.lang-btn:hover:not(.active) {
  color: rgba(255, 255, 255, 0.8);
}

.lang-sep {
  color: rgba(255, 255, 255, 0.1);
  font-size: 10px;
}

.nav-book-btn {
  background: var(--accent-color);
  color: white !important;
  padding: 6px 16px;
  border-radius: 8px; /* Sharper for consistency */
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-book-btn:hover {
  transform: scale(1.05);
  background: #fff;
  color: var(--accent-color) !important;
}

@media (max-width: 480px) {
  .logo-text {
    display: inline-block;
    font-size: 13px; /* Slightly smaller to fit everything */
    margin-left: 2px;
  }
  .nav-book-btn {
    padding: 5px 12px;
    font-size: 11px;
  }
}

.nav-menu ul {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}



@keyframes heartbeat-pulse {
  0% {
    transform: scale(1);
    text-shadow: 0 0 0px rgba(255, 159, 10, 0);
  }
  10% {
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(255, 159, 10, 0.5);
  }
  20% {
    transform: scale(1);
    text-shadow: 0 0 0px rgba(255, 159, 10, 0);
  }
  30% {
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(255, 159, 10, 0.5);
  }
  40% {
    transform: scale(1);
    text-shadow: 0 0 0px rgba(255, 159, 10, 0);
  }
  100% {
    transform: scale(1);
    text-shadow: 0 0 0px rgba(255, 159, 10, 0);
  }
}

.hamburger {
  display: none;
  color: #ffffff; /* Explicitly WHITE as requested */
  font-size: 22px; /* Slightly larger for clarity as 'exit' */
  cursor: pointer;
  z-index: 10001;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 30px;
  height: 30px;
}

@media (max-width: 991px) {
  .header-container {
    width: 95%;
  }
}

@media (max-width: 768px) {
  header {
    top: 10px;
    height: 44px;
  }

  .header-container {
    width: 94%;
    padding: 0 16px;
  }

  .logo {
    font-size: 14px;
  }

  .hamburger {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10001; /* Above everything */
  }

  /* Hide capsule background when menu is open for a cleaner look */
  header.active .header-container {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}.nav-menu a.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: white; /* Neutral white indicator for active state */
    border-radius: 4px;
    opacity: 0.6;
  }

/* Hero section content is handled by .hero */

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 0 40px;
  animation: fadeIn 1s ease-out;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.hero-rating .stars {
  color: #ffd700;
  font-size: 14px;
  display: flex;
  gap: 3px;
}

.rating-text {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

/* Buttons */
.cta-button {
  background: var(--accent-color);
  color: white;
  border-radius: 980px;
  padding: 12px 30px;
  font-size: 17px;
  line-height: 1.17648;
  font-weight: 400;
  letter-spacing: 0.009em;
  display: inline-block;
  transition: all 0.3s;
}

.cta-button:hover {
  background: var(--accent-hover);
  transform: scale(1.02);
}

.cta-outline {
  display: inline-block;
  background: #1c1c1e; /* Solid background */
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 980px;
  padding: 14px 32px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-outline:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 113, 227, 0.3);
}

/* Sections General */
.section {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
}

.section-title {
  text-align: left !important;
  margin-bottom: 20px;
  display: block;
  width: 100%;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(36px, 7vw, 64px);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #000;
}



.section-subtitle {
  text-align: left !important;
  display: block;
  width: 100%;
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
}

/* About Section Minimalist Style */
.about-minimalist {
  padding: 100px 0;
  background: #ffffff;
}

.about-hero-text {
  max-width: 1000px;
  margin: 0 auto 80px;
  text-align: center;
}

.about-hero-text p {
  font-size: clamp(24px, 4vw, 42px);
  line-height: 1.3;
  font-weight: 500;
  color: #1d1d1f;
  letter-spacing: -0.03em;
  text-align: center; /* Enforce center alignment */
}

.about-hero-text .highlight {
  color: #c08a42; /* Premium Gold/Bronze like screenshot */
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 40px;
  margin-top: 40px;
}

.stat-box {
  padding: 20px 40px;
  text-align: center;
}

.stat-box:not(:first-child) {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-label {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #86868b;
  margin-bottom: 15px;
}

.stat-value {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 600;
  color: #1d1d1f;
  letter-spacing: -0.04em;
}

.stat-value .suffix {
  font-size: 0.6em;
  color: #c08a42;
  margin-left: 4px;
}

@media (max-width: 768px) {
  .about-stats-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .stat-box {
    padding: 0;
    border-left: none !important;
  }
}

/* Bento Portfolio Styling Enhancements */
.bento-portfolio {
  background: #ffffff;
  padding: 120px 0;
}

.bento-layout {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.bento-sidebar {
  width: 300px;
  flex-shrink: 0;
}

.sidebar-sticky {
  position: sticky;
  top: 120px;
}

.vertical-title {
  font-size: 48px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 24px;
  color: #1d1d1f;
}

.vertical-title .highlight {
  color: var(--accent-color);
}

.sidebar-desc {
  font-size: 19px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.bento-grid {
  flex-grow: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 24px;
}

.bento-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #f5f5f7;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-item img, 
.bento-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-item.wide {
  grid-column: span 2;
}

.bento-item.tall {
  grid-row: span 2;
}

.bento-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 1;
  transition: all 0.5s ease;
}

.bento-item h3 {
  color: white;
  font-size: 24px;
  font-weight: 600;
  transform: translateY(10px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-preview-hint {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.bento-item:hover .video-preview-hint {
  background: var(--accent-color);
  transform: scale(1.1);
}

.bento-tag {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  align-self: flex-start;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

/* Option 3: Hover Effects */
.bento-item:hover {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.bento-item:hover img,
.bento-item:hover video {
  transform: none;
}

.bento-item:hover .bento-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 40%);
}

.bento-item:hover h3 {
  transform: translateY(0);
}

.bento-item:hover .bento-tag {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

/* Option 4: Advanced Micro-animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Staggered Animations for Kids (Children of .reveal-group) */
.reveal-group > * {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-group.active > * {
  opacity: 1;
  transform: translateY(0);
}

/* Create delays for children */
.reveal-group.active > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-group.active > *:nth-child(2) { transition-delay: 0.2s; }
.reveal-group.active > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-group.active > *:nth-child(4) { transition-delay: 0.4s; }
.reveal-group.active > *:nth-child(5) { transition-delay: 0.5s; }
.reveal-group.active > *:nth-child(6) { transition-delay: 0.6s; }

/* Scale Up variation */
.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* Pricing - Apple Card Style */
.pricing-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 800px) {
  /* Specific layout ONLY for Home Page (index.html) */
  .pricing-list.custom-layout {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Photo & Video (3rd item) spans full width ONLY on Home Page */
  .pricing-list.custom-layout .pricing-row:nth-child(3) {
    grid-column: span 2;
  }

  /* 4th and 5th items will sit side-by-side below */
}

.pricing-row {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s;
  height: 100%;
}

@media (max-width: 600px) {
  .pricing-row {
    padding: 24px 16px;
  }
}

.pricing-row.full-width-card {
  grid-column: 1 / -1;
  max-width: 800px;
  /* Limit width for better readability since no image */
  margin: 0 auto;
  /* Center it */
  width: 100%;
}

.pricing-row:hover {
  transform: scale(1.02);
}

.pricing-img {
  width: 80px; /* Smaller logo */
  height: 80px;
  margin-bottom: 20px;
  border-radius: 50%;
  overflow: hidden;
}

.pricing-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.pricing-content h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.pricing-subtitle {
  font-size: 14px; /* Smaller subtitle */
  color: var(--text-secondary);
  margin-bottom: 20px;
  min-height: auto;
}

.pricing-features {
  text-align: left;
  margin-bottom: 40px;
  width: 100%;
}

.pricing-features li {
  padding: 8px 0; /* Tighter list */
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 13px;
  color: var(--text-primary);
}

.pricing-price {
  font-size: 28px;
}

.about-main-text-editorial span.italic {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
}

.about-signature {
  margin-top: 50px;
}

/* --- Testimonials Grid 3x3 (Bold Minimalist) --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.testimonial-card-editorial {
  background-color: #ffffff;
  background-image: 
    linear-gradient(#f5f5f5 1px, transparent 1px),
    linear-gradient(90deg, #f5f5f5 1px, transparent 1px);
  background-size: 20px 20px; /* Tekstur kertas grid */
  padding: 40px;
  border: 4px solid #000;
  border-radius: 12px; /* Lengkungan lebih halus/tipis */
  position: relative;
  text-align: left;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  justify-content: space-between;
  overflow: hidden;
}

.paperclip-editorial {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 24px;
  color: #4a90e2; /* Biru klip kertas */
  transform: rotate(-15deg);
  z-index: 2;
}



.testi-stars {
  color: #FFD700; /* Warna Emas Premium */
  font-size: 10px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.testi-content {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #000;
  margin-bottom: 20px;
}

.testi-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  margin-top: 20px;
}

.testi-logo {
  width: 90px;
  height: auto;
  opacity: 1;
  margin-bottom: -15px; /* Turunkan sedikit agar sejajar teks */
}

.author-info {
  text-align: right;
}

.author-name {
  display: block;
  font-weight: 900;
  font-size: 16px;
  text-transform: uppercase;
  color: #000;
}

.author-event {
  display: block;
  font-size: 11px;
  color: #666;
  text-transform: uppercase;
  margin-top: 4px;
}

@media (max-width: 992px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

.btn-sm,
.btn-outline,
.btn-solid {
  background: #0071e3;
  color: white;
  padding: 10px 24px;
  border-radius: 18px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}

.btn-sm:hover {
  background: #0077ed;
}

/* Showreel */
.showreel-container {
  padding-bottom: 80px;
}

.showreel-frame {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  background: #000;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
}

.video-cover {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 30px;
  transition: transform 0.2s;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.play-btn:hover {
  transform: scale(1.1);
}

/* Shared styles moved to global.css */
/* Responsive Overhaul for Bento Grid */
@media (max-width: 1100px) {
  .bento-layout {
    gap: 60px;
  }
  .bento-grid {
    grid-auto-rows: 200px;
  }
}

@media (max-width: 992px) {
  .bento-layout {
    flex-direction: column;
    gap: 60px;
  }
  .bento-sidebar {
    width: 100%;
  }
  .sidebar-sticky {
    position: relative;
    top: 0;
  }
  .vertical-title {
    writing-mode: horizontal-tb;
    transform: none;
    text-align: left;
    margin-bottom: 10px;
  }
  .sidebar-desc {
    writing-mode: horizontal-tb;
    transform: none;
    max-height: none;
    margin-top: 10px;
  }
}

@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-item.wide,
  .bento-item.tall {
    grid-column: span 1;
    grid-row: span 1;
  }
  .bento-grid {
    grid-auto-rows: 280px;
  }
}

.scroller-play-pause {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #d1d1d6;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #6e6e73;
  font-size: 10px;
  background: transparent;
  transition: all 0.2s;
}

/* Ensure Logo and Hamburger are on top of Menu */
.logo,
.logo-back,
.header-cta {
  position: relative;
  z-index: 1001; /* Higher than .nav-menu (999) */
}

.scroller-play-pause:hover {
  background: #f5f5f7;
  border-color: #8e8e93;
  color: #1d1d1f;
}

@media (max-width: 768px) {
  .scroller-controls {
    justify-content: center;
    padding-right: 0;
  }
}

/* New Pricing Grid Styles */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.pricing-card {
  background: var(--card-bg);
  color: var(--text-primary);
  border-radius: 24px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}



.popular-tag {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--accent-color);
  color: white;
  padding: 5px 15px;
  border-bottom-left-radius: 15px;
  font-size: 12px;
  font-weight: 700;
  z-index: 1;
}

.pricing-header h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
}

.pricing-header .price {
  font-size: 32px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 5px;
  letter-spacing: -1px;
}

.pricing-subtitle {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 25px;
  font-weight: 500;
}

.feature-icon-main {
  font-size: 40px;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
}

.feature-icon-main-img {
  height: 44px; /* Slightly adjusted for better visual weight */
  width: auto;
  margin: 0 auto 20px;
  display: block;
  /* Color: #4361ee (Premium Blue) */
  filter: invert(37%) sepia(93%) saturate(3015%) hue-rotate(224deg)
    brightness(97%) contrast(97%);
}

.icon-fan-wrapper {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-fan-main,
.icon-fan-side,
.icon-fan-main-img {
  position: absolute;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 2;
}

.icon-fan-main,
.icon-fan-side {
  font-size: 50px;
  color: #4361ee;
}

/* Specific Icon Colors & Hover Effects */
.fa-camera.icon-fan-side {
  color: #4cc9f0; /* Lighter Cyan-Blue */
}

.fa-star.icon-fan-side {
  color: #ffd700; /* Gold */
}

.fa-bolt.icon-fan-side {
  color: #ffea00; /* Bright Yellow */
}

.fa-video.icon-fan-side {
  color: #4361ee;
}

/* Fan-out Effect on Hover & Auto-Animate */
/* Wide Pricing Card Style */
.pricing-card.wide {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 30px 60px;
  text-align: left;
}

.pricing-card.wide .pricing-header {
  text-align: left;
  margin-right: 40px;
  margin-bottom: 0;
}

.pricing-card.wide .pricing-features.horizontal {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 0;
  list-style: none;
  padding: 0;
}

.pricing-card.wide .pricing-features.horizontal li {
  font-size: 14px;
  white-space: nowrap;
}
.pricing-card.span-2 {
  grid-column: span 2;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
}

.pricing-card.span-2 .pricing-header {
  text-align: center;
  margin-right: 0;
  margin-bottom: 15px;
  width: 100%;
}

.pricing-card.span-2 .pricing-features.horizontal {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  width: 100%;
}

@media (max-width: 991px) {
  .pricing-card.span-2 {
    grid-column: span 1;
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .pricing-card.span-2 .pricing-header {
    text-align: center;
    margin-right: 0;
    margin-bottom: 25px;
  }
}
.pricing-card.no-anim:hover {
  transform: none !important;
  box-shadow: none !important;
}
@media (max-width: 768px) {
  .pricing-card.wide {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
  }

  .pricing-card.wide .pricing-header {
    text-align: center;
    margin-right: 0;
    margin-bottom: 25px;
  }

  .pricing-card.wide .pricing-features.horizontal {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}
.pricing-card:hover .icon-fan-main-img,
.pricing-card.auto-animate .icon-fan-main-img,
.pricing-row:hover .icon-fan-main-img,
.pricing-row.auto-animate .icon-fan-main-img {
  transform: scale(1.15);
}

.pricing-card:hover .icon-fan-side.left,
.pricing-card.auto-animate .icon-fan-side.left,
.pricing-row:hover .icon-fan-side.left,
.pricing-row.auto-animate .icon-fan-side.left {
  opacity: 0.6;
  transform: translate(-42px, -8px) rotate(-25deg) scale(0.8);
}

.pricing-card:hover .icon-fan-side.right,
.pricing-card.auto-animate .icon-fan-side.right,
.pricing-row:hover .icon-fan-side.right,
.pricing-row.auto-animate .icon-fan-side.right {
  opacity: 0.6;
  transform: translate(42px, -8px) rotate(25deg) scale(0.8);
}

/* 1. Flash/Blitz Animation (Camera) */
.pricing-card:hover .fa-camera.icon-fan-side,
.pricing-card.auto-animate .fa-camera.icon-fan-side {
  animation: flashBlitz 0.8s infinite;
}

@keyframes flashBlitz {
  0%,
  90% {
    filter: brightness(1) drop-shadow(0 0 0 white);
    opacity: 0.6;
  }
  95% {
    filter: brightness(5) drop-shadow(0 0 15px white);
    opacity: 1;
  }
  100% {
    filter: brightness(1) drop-shadow(0 0 0 white);
    opacity: 0.6;
  }
}

/* 2. Recording Animation (Video) */
.pricing-card:hover .fa-video.icon-fan-side,
.pricing-card.auto-animate .fa-video.icon-fan-side {
  animation: recordingPulse 2s infinite ease-in-out;
}

@keyframes recordingPulse {
  0%,
  100% {
    filter: drop-shadow(0 0 2px rgba(255, 0, 0, 0));
  }
  50% {
    filter: drop-shadow(0 0 8px #ff4d4d);
    color: #ff4d4d;
  }
}

/* 3. Star Shining/Twinkle (Star) */
.pricing-card:hover .fa-star.icon-fan-side,
.pricing-card.auto-animate .fa-star.icon-fan-side {
  animation: starShine 1.5s infinite alternate ease-in-out;
}

@keyframes starShine {
  from {
    transform: translate(-42px, -8px) rotate(-25deg) scale(0.8);
    filter: brightness(1) drop-shadow(0 0 0 gold);
  }
  to {
    transform: translate(-42px, -8px) rotate(-25deg) scale(1.1);
    filter: brightness(1.5) drop-shadow(0 0 10px gold);
  }
}

/* Right star shine */
.pricing-card:hover .fa-star.icon-fan-side.right,
.pricing-card.auto-animate .fa-star.icon-fan-side.right {
  animation: starShineRight 1.5s infinite alternate ease-in-out;
}

@keyframes starShineRight {
  from {
    transform: translate(42px, -8px) rotate(25deg) scale(0.8);
    filter: brightness(1) drop-shadow(0 0 0 gold);
  }
  to {
    transform: translate(42px, -8px) rotate(25deg) scale(1.1);
    filter: brightness(1.5) drop-shadow(0 0 10px gold);
  }
}

/* 4. Lightning Strike Animation (Bolt) */
.pricing-card:hover .fa-bolt.icon-fan-side,
.pricing-card.auto-animate .fa-bolt.icon-fan-side {
  animation: boltStrike 0.3s steps(2) infinite;
}

@keyframes boltStrike {
  0%,
  100% {
    opacity: 0.8;
    filter: drop-shadow(0 0 5px #ffea00);
  }
  50% {
    opacity: 0.3;
    filter: none;
  }
}

.icon-fan-main-img {
  height: 85px;
  width: auto;
  z-index: 5; /* Always on top */
  /* Color: #4361ee (Premium Blue) */
  filter: invert(37%) sepia(93%) saturate(3015%) hue-rotate(224deg)
    brightness(97%) contrast(97%);
}

.icon-fan-side {
  opacity: 0;
  z-index: 1; /* Behind the main logo */
}

/* Fan-out Effect on Hover */
.pricing-card:hover .icon-fan-main-img {
  transform: scale(1.15);
}

.pricing-card:hover .icon-fan-side.left,
.pricing-card.auto-animate .icon-fan-side.left,
.pricing-row:hover .icon-fan-side.left,
.pricing-row.auto-animate .icon-fan-side.left {
  opacity: 0.6;
  transform: translate(-55px, -12px) rotate(-25deg) scale(0.8);
}

.pricing-card:hover .icon-fan-side.right,
.pricing-card.auto-animate .icon-fan-side.right,
.pricing-row:hover .icon-fan-side.right,
.pricing-row.auto-animate .icon-fan-side.right {
  opacity: 0.6;
  transform: translate(55px, -12px) rotate(25deg) scale(0.8);
}

.pricing-features {
  text-align: left;
  margin-bottom: 30px;
  flex-grow: 1;
  list-style: none;
  /* Ensure no bullets */
  padding: 0;
}

.pricing-features li {
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.pricing-features i {
  color: var(--accent-color);
  margin-top: 3px;
  min-width: 16px;
}

.section-divider {
  font-weight: 600;
  color: var(--text-primary) !important;
  margin-top: 15px;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
  padding-top: 10px;
  display: block !important;
}

/* =========================================
/* =========================================
   SERVICE EXHIBITION (PHOTO SECTION)
   ========================================= */

.service-exhibition {
  padding: 120px 0;
  background: #fff;
  color: #000;
  text-align: center;
}

.service-header {
  margin-bottom: 80px;
}

.service-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  margin-bottom: 15px;
}

.service-header h2 span {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
}

.service-stack {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.service-card {
  width: 100%;
  min-height: 500px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center; /* Back to centered for better framing */
  justify-content: flex-start;
  text-align: left;
  color: #fff;
  background: #111;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
  margin-bottom: 30px;
}

.service-content {
  position: relative;
  z-index: 10;
  padding: 60px 80px;
  width: 100%;
  max-width: 900px;
}

/* --- Animations --- */
@keyframes imageFade {
  0% { opacity: 0; transform: scale(1.05); }
  10% { opacity: 1; }
  45% { opacity: 1; }
  55% { opacity: 0; transform: scale(1); }
  100% { opacity: 0; }
}

@keyframes heroFade {
  0% { opacity: 0; transform: scale(1.1); }
  5% { opacity: 1; }
  20% { opacity: 1; }
  25% { opacity: 0; transform: scale(1); }
  100% { opacity: 0; }
}

/* --- Hero Slideshow --- */
.hero-slideshow-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slideshow-wrapper img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: heroFade 24s infinite;
}

.hero-slideshow-wrapper img:nth-child(1) { animation-delay: 0s; }
.hero-slideshow-wrapper img:nth-child(2) { animation-delay: 4s; }
.hero-slideshow-wrapper img:nth-child(3) { animation-delay: 8s; }
.hero-slideshow-wrapper img:nth-child(4) { animation-delay: 12s; }
.hero-slideshow-wrapper img:nth-child(5) { animation-delay: 16s; }
.hero-slideshow-wrapper img:nth-child(6) { animation-delay: 20s; }

.hero-middle, .hero-bottom-editorial {
  position: relative;
  z-index: 10;
}

/* --- Service Cards Slideshow --- */
.bg-slideshow-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bg-slideshow-wrapper img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: imageFade 12s infinite;
}

.bg-slideshow-wrapper img:nth-child(1) { animation-delay: 0s; }
.bg-slideshow-wrapper img:nth-child(2) { animation-delay: 6s; }

/* --- Service Card (Final Stable Restoration) --- */
.service-card {
  width: 100%;
  min-height: 520px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center; 
  justify-content: flex-start;
  background: #000;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  margin-bottom: 50px;
}

.service-content {
  position: relative;
  z-index: 100; /* Content is King */
  padding: 60px 80px;
  width: 100%;
  max-width: 900px;
  color: #ffffff !important;
}

.service-card img.bg-service, 
.bg-slideshow-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1; /* Background behind everything else */
}

.bg-slideshow-wrapper img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: imageFade 12s infinite;
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  z-index: 10; /* Overlay above background */
}

.service-card.right-align {
  justify-content: flex-end;
}

.service-card.right-align .service-content {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.service-card.right-align .service-overlay {
  background: linear-gradient(-90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}

.service-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 4vw, 36px);
  margin-bottom: 20px;
  font-weight: 800;
  text-transform: lowercase;
  color: #ffffff !important;
  text-shadow: 0 4px 15px rgba(0,0,0,0.8);
  line-height: 1.1;
}

.service-content h3 span {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  color: #ffffff !important;
}

.service-desc {
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #ffffff !important;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
  max-width: 550px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.service-tag {
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  padding: 8px 22px;
  border-radius: 30px; /* Capsule shape */
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(255,255,255,0.3);
  color: #ffffff !important;
  font-weight: 700;
}

.btn-collaborate {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ffffff !important;
  color: #000000 !important;
  padding: 14px 35px;
  border-radius: 50px; /* Capsule shape */
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 110;
}

@media (max-width: 992px) {
  .service-card { 
    height: auto; 
    min-height: 500px; 
    align-items: flex-end; 
    border-radius: 16px;
  }
  
  .service-overlay { 
    background: linear-gradient(0deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 40%, transparent 100%) !important; 
  }
  
  .service-card.right-align .service-overlay { 
    background: linear-gradient(0deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 40%, transparent 100%) !important; 
  }
  
  .service-content { 
    padding: 40px 25px; 
    text-align: left !important; /* Force left align on mobile for better flow */
    align-items: flex-start !important;
  }
  
  .service-content h3 { 
    font-size: 1.8rem; 
    margin-bottom: 12px; 
  }
  
  .service-desc { 
    font-size: 0.9rem; 
    margin-bottom: 20px; 
    max-width: 100%;
  }

  .service-tags {
    gap: 8px;
    margin-bottom: 30px;
  }

  .service-tag {
    padding: 6px 14px;
    font-size: 10px;
  }

  .btn-collaborate {
    padding: 12px 28px;
    font-size: 13px;
    width: 100%;
    justify-content: center;
  }

  .service-header h2 { font-size: 1.8rem; }
}

/* =========================================
   INDIGO GALLERY STYLES (Standalone)
   ========================================= */
.indigo-gallery-bg {
  background: #0a174e !important;
}

.portfolio-grid-editorial {
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 40px;
}

.portfolio-hero-item {
  width: 100%;
}

.portfolio-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.portfolio-img-wrapper {
  background: #111;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/10;
  margin-bottom: 25px;
  cursor: pointer;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.portfolio-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
}

.portfolio-item-footer h3 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.8rem;
  color: #fff;
}

.portfolio-arrow {
  font-size: 24px;
  color: #fff;
}

.view-btn-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  opacity: 0;
  transition: all 0.4s ease;
}

.portfolio-img-wrapper:hover .view-btn-circle {
  opacity: 1;
}

/* =========================================
   RESPONSIVE OPTIMIZATION (MOBILE FRIENDLY)
   ========================================= */

@media (max-width: 992px) {
  /* Service Exhibition Mobile Fix */
  .service-card { 
    height: auto; 
    min-height: 500px; 
    align-items: flex-end; 
  }
  .service-overlay { 
    background: linear-gradient(0deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 100%) !important; 
  }
  .service-card.right-align .service-overlay {
    background: linear-gradient(0deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 100%) !important;
  }
  .service-content, .service-card.right-align .service-content { 
    padding: 40px 25px; 
    text-align: center; 
    align-items: center;
    max-width: 100%;
  }
  .service-tags, .service-card.right-align .service-tags {
    justify-content: center;
  }
  .service-header h2 { font-size: 2.2rem; }
}

@media (max-width: 768px) {
  /* Global Container Adjustments */
  .container { padding: 0 25px; }
}

/* =========================================
   FINAL MOBILE OVERRIDE (GUARANTEED)
   ========================================= */

@media screen and (max-width: 1024px) {
  /* HIDE ALL HERO DECORATIONS */
  .overlapping-images, 
  .overlapping-images *,
  .img-tilt-1, 
  .img-tilt-2, 
  .mouse-icon {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  /* RESTRUCTURE HERO SECTION */
  .hero-section {
    padding: 100px 0 60px !important;
    height: auto !important;
    min-height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    align-items: center !important;
    text-align: left !important;
  }

  .massive-branding {
    font-size: 14vw !important;
    margin: 20px 0 !important;
    order: 1 !important;
  }

  .hero-editorial-sentence {
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
    margin: 20px 0 !important;
    padding: 0 30px !important;
    max-width: 600px !important;
    order: 2 !important;
    position: static !important;
  }

  .hero-bottom-editorial {
    order: 3 !important;
    margin-top: 30px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
  }

  /* OTHER MOBILE FIXES */
  .testimonials-grid {
    grid-template-columns: 1fr !important;
    gap: 25px !important;
  }

  .service-card {
    height: auto !important;
    min-height: 450px !important;
  }

  .service-content {
    padding: 40px 20px !important;
    text-align: left !important;
    align-items: center !important;
  }

  .service-tags {
    justify-content: flex-end !important;
  }
}
/* MOBILE UI FIXES */
@media screen and (max-width: 991px) {
  /* Fix Header Visibility */
  .desktop-only {
    display: none !important;
  }

  /* Fix About Section Overlays */
  .about-editorial {
    padding: 80px 0 !important;
    overflow: hidden;
  }

  .floating-img-wrapper,
  .floating-img {
    display: none !important;
  }

  .about-main-text-editorial {
    font-size: 1.5rem !important;
    line-height: 1.5 !important;
    padding: 0 10px;
    margin-bottom: 30px !important;
  }

  /* Fix Massive Branding */
  .massive-branding {
    font-size: 14vw !important;
    line-height: 1.1 !important;
    text-align: left !important;
    width: 100% !important;
    margin: 0 !important;
    left: 0 !important;
    position: relative !important;
  }

  .hero-bottom-editorial {
    justify-content: flex-end !important;
    text-align: left !important;
  }

  .intro-text-editorial {
    font-size: 1.2rem !important;
    text-align: left !important;
    margin: 0 0 20px !important;
    padding: 0 20px;
  }
}

@media screen and (max-width: 991px) {
  .hero {
    height: auto !important;
    min-height: 100vh;
    justify-content: flex-end !important;
    gap: 60px;
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  .hero-middle {
    margin-top: 0 !important;
    order: 1; /* Ensure it is first */
  }

  .hero-bottom-editorial {
    order: 2; /* Ensure it is second */
  }
}

@media screen and (max-width: 991px) {
  .hero {
    padding-bottom: 100px !important;
  }
}

@media screen and (max-width: 991px) {
  .hero {
    align-items: flex-start !important;
    text-align: left !important;
  }
}

@media screen and (max-width: 991px) {
  .intro-text-editorial {
    line-height: 1.6 !important;
  }
}

@media screen and (max-width: 991px) {
  .about-icon-top {
    display: block !important;
    margin: 0 auto 30px !important;
    width: 60px !important;
    height: auto !important;
  }
}

/* --- Social Icons Refinement --- */
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.social-icon {
  width: 54px;
  height: 54px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1d1d1f;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0,0,0,0.02);
}

.social-icon:hover {
  transform: translateY(-8px) scale(1.08);
  color: #007aff;
  box-shadow: 0 15px 30px rgba(0,122,255,0.18);
  border-color: rgba(0,122,255,0.1);
}


