:root {
  --primary-color: #111111;
  --secondary-color: #1a1a1a;
  --accent-color: #ff2d55;
  --bg-light: #fcf8f2;
  --bg-dark: #0a0a0a;
  --text-primary: #111111;
  --text-secondary: #555555;
  --white: #ffffff;
  --rose: #ff2d55;
  --soft-rose: #fff0f3;
  --cream: #fcf8f2;
  --font-main: 'Outfit', sans-serif;
  --font-serif: 'Playfair Display', serif;
}


html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-light);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

ul {
  list-style: none;
}

/* Header & Nav */
header {
  height: 80px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: 0.3s;
}

header.scrolled {
  height: 60px;
  background: rgba(255, 255, 255, 0.95);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-color);
}

.logo span {
  color: var(--rose);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links li a:hover {
  color: var(--rose);
}

.nav-phone {
  background: var(--rose);
  color: white !important;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-size: 0.8rem !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1rem;
}

.nav-phone i {
  width: 14px;
}


.menu-btn {
  display: none;
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/hero.png') center/cover;
  display: flex;
  align-items: center;
  color: var(--white);
  text-align: center;
  position: relative;
}


.hero-content h1 {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
}

.hero-content h1 span {
  font-style: italic;
  display: block;
  font-size: 3.5rem;
  color: var(--rose);
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  transform: translateY(30px);
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  opacity: 0;
  transform: translateY(30px);
}

.btn {
  padding: 1rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  transition: 0.4s;
}

.btn.primary {
  background-color: var(--rose);
  color: var(--white);
}

.btn.primary:hover {
  background-color: #b08d4a;
  transform: translateY(-5px);
}

.btn.secondary {
  border: 2px solid var(--white);
  color: var(--white);
}

.btn.secondary:hover {
  background-color: var(--white);
  color: var(--primary-color);
  transform: translateY(-5px);
}

/* Stats Section */
.stats-section {
  padding: 5rem 0;
  background-color: var(--soft-rose);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 3rem;
  color: var(--rose);
  margin-bottom: 0.5rem;
}

.stat-item span {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* Recent Work Section */
.recent-work-section {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  background-color: var(--primary-color);
}


.scrolling-wrapper {
  display: flex;
  overflow: hidden;
  gap: 2rem;
  padding: 1rem 0;
}

.scrolling-content {
  display: flex;
  gap: 2rem;
  animation: scrollInfinite 40s linear infinite;
  flex-shrink: 0;
}

.scrolling-content img {
  width: 350px;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  filter: grayscale(0.5);
  transition: 0.5s;
  cursor: pointer;
}

.scrolling-content img:hover {
  filter: grayscale(0);
  transform: scale(1.05) translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.recent-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  pointer-events: none;
}

.recent-label span {
  font-family: var(--font-serif);
  font-size: 5rem;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 5px;
  opacity: 0.5;
  white-space: nowrap;
}

@keyframes scrollInfinite {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 2rem));
  }
}

/* Services section */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}


.section-header h2 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.underline {
  width: 60px;
  height: 3px;
  background: var(--rose);
  margin: 0 auto;
}

.services-section {
  padding: 8rem 0;
  background-color: var(--white);
}

.services-group-list {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.service-block {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.service-info {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.service-info h3 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.service-info p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  padding: 3rem 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.5s;
  border-bottom: 4px solid transparent;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-10px);
  border-bottom: 4px solid var(--rose);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--soft-rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--rose);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Why Choose Us Section */
.why-us-section {
  padding: 10rem 0;
  background-color: var(--cream);
  position: relative;
  background-image: linear-gradient(to bottom, #fcf8f2, #fff0f3, #fcf8f2);
  border-top: 1px solid rgba(255, 45, 85, 0.1);
  border-bottom: 1px solid rgba(255, 45, 85, 0.1);
}

.why-us-section .container.section-header h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}


.section-subtitle {
  color: var(--text-secondary);
  margin-top: 1rem;
  font-size: 1.1rem;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.reason-card {
  text-align: left;
  padding: 2.5rem;
  transition: 0.5s;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.reason-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 45, 85, 0.1);
  border-bottom: 3px solid var(--rose);
}


.reason-icon {
  color: var(--rose);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.reason-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.reason-card p {
  color: var(--text-secondary);
  font-size: 1rem;
}

.sample-title {
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin: 2rem 0 1rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.sample-title::before, .sample-title::after {
    content: '';
    height: 1px;
    background: rgba(0,0,0,0.1);
    flex-grow: 1;
    max-width: 100px;
}

.sample-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 150px;
    gap: 4px; /* Very thin padding */
    margin-bottom: 3rem;
}

.sample-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

.sample-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.sample-item:nth-child(2), .sample-item:nth-child(3), .sample-item:nth-child(4), .sample-item:nth-child(5) {
    grid-column: span 1;
    grid-row: span 1;
}

.sample-item:nth-child(6), .sample-item:nth-child(7) {
    grid-column: span 1;
    grid-row: span 1;
}

.sample-item:nth-child(8) {
    grid-column: span 2;
    grid-row: span 1;
}

.sample-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s;
}

.sample-item:hover img {
    transform: scale(1.05);
}

.sample-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: white;
    opacity: 0;
    transition: 0.4s;
    display: flex;
    align-items: flex-end;
}

.sample-item:hover .sample-overlay {
    opacity: 1;
}

/* Custom Wedding Collage Layout (5 columns based on image) */
.sample-grid.wedding-collage {
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: 250px;
    gap: 4px;
}

/* Top Row: 3 Portrait (1 col each) + 1 Landscape (2 cols) */
.sample-grid.wedding-collage .sample-item:nth-child(1),
.sample-grid.wedding-collage .sample-item:nth-child(2),
.sample-grid.wedding-collage .sample-item:nth-child(3) {
    grid-column: span 1;
    grid-row: span 1;
}
.sample-grid.wedding-collage .sample-item:nth-child(4) {
    grid-column: span 2;
    grid-row: span 1;
}

/* Bottom Row: 1 Landscape (2 cols) + 3 Portrait (1 col each) */
.sample-grid.wedding-collage .sample-item:nth-child(5) {
    grid-column: span 2;
    grid-row: span 1;
}
.sample-grid.wedding-collage .sample-item:nth-child(6),
.sample-grid.wedding-collage .sample-item:nth-child(7),
.sample-grid.wedding-collage .sample-item:nth-child(8) {
    grid-column: span 1;
    grid-row: span 1;
}

/* Portrait-only grid for Creative Image Editing */
.sample-grid.all-portrait {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    gap: 4px;
}

.sample-grid.all-portrait .sample-item {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    aspect-ratio: 2 / 3; /* Portrait format */
}

.sample-overlay h4 {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 8rem 0;
    background-color: #fcfcfc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    padding-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--rose);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-main);
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    padding-top: 1.5rem;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 4rem;
    color: var(--soft-rose);
    opacity: 0.3;
}

.testimonial-stars {
    color: #ffb400; /* Standard gold star color */
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.2rem;
}

.testimonial-stars i {
    width: 18px;
    height: 18px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: auto;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--soft-rose);
}

.author-details h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.author-details p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Pricing section */
.pricing-section {
  padding: 8rem 0;
  background-color: var(--bg-dark);
  color: var(--white);
}

.pricing-section .section-header h2 {
    color: var(--white);
}

.pricing-group {
    margin-bottom: 6rem;
}

.pricing-group:last-child {
    margin-bottom: 0;
}

.pricing-group-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--rose);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.pricing-card {
  background: #151515;
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  transition: 0.4s;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: var(--rose);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pricing-card.premium {
  border: 1px solid var(--rose);
  background: #1a1a1a;
}

.pricing-badge {
    position: absolute;
    top: 25px;
    right: -45px;
    background: var(--rose);
    color: var(--white);
    padding: 0.5rem 0;
    width: 160px;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 700;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 5;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--rose);
  margin-bottom: 2rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.2rem;
}

.price span {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

.features {
  text-align: left;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.features li {
  margin-bottom: 1.2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.features i {
  color: var(--rose);
  width: 18px;
  margin-top: 3px;
}

.pricing-card .btn {
  width: 100%;
  border-radius: 8px;
}

.pricing-card .btn.secondary {
    background: transparent;
    border: 1px solid var(--rose);
    color: var(--rose);
}

.pricing-card .btn.secondary:hover {
    background: var(--rose);
    color: var(--white);
}

.pricing-card .btn.primary {
    background: var(--rose);
    color: var(--white);
    border: 1px solid var(--rose);
}

.pricing-card .btn.primary:hover {
    background: transparent;
    color: var(--rose);
}

/* Free Trial Section */
.free-trial-section {
  padding: 6rem 0;
  background-color: var(--white);
}

.trial-card {
  background-color: var(--bg-dark);
  color: var(--white);
  padding: 4rem 3rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.trial-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255, 45, 85, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.trial-content {
  flex: 1;
}

.trial-content h2 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.trial-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
}

.trial-content strong {
  color: var(--rose);
}

.trial-action {
  flex-shrink: 0;
}

/* Contact Section Updates */
.contact-section {
  padding: 8rem 0;
  background: linear-gradient(to right, #fdfdfd, #f4ece1);
}


.contact-card {
  background: var(--white);
  padding: 5rem 3rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
  max-width: 800px;
  margin: 0 auto;
}

.contact-card h2 {
  font-family: var(--font-serif);
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.contact-item i {
  width: 60px;
  height: 60px;
  background: var(--soft-rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
  font-size: 1.5rem;
}

.contact-item a {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
}

/* Footer */
footer {
  padding: 4rem 0;
  background-color: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.footer-logo {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-logo span {
  color: var(--rose);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.social-links a {
  color: var(--white);
  font-size: 1.2rem;
  transition: 0.3s;
}

.social-links a:hover {
  color: var(--rose);
  transform: translateY(-3px);
}

/* Animations JS classes */
.reveal-text {
  animation: revealUp 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

.reveal-text-delay {
  animation: revealUp 1s 0.3s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

.reveal-text-delay-2 {
  animation: revealUp 1s 0.6s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes revealUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 999;
    padding: 4rem 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }

  header.scrolled .nav-links {
    top: 60px;
    height: calc(100vh - 60px);
  }
  
  .nav-links.active {
    left: 0;
  }

  .nav-links li a {
    font-size: 1.2rem;
  }

  .nav-phone {
    margin-left: 0;
    font-size: 1rem !important;
    padding: 1rem 2rem;
  }
  
  .menu-btn {
    display: block;
    font-size: 1.5rem;
    z-index: 1001;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }
  
  .hero-content h1 span {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stat-item h3 {
    font-size: 2.2rem;
  }
  
  .services-group-list {
    gap: 4rem;
  }

  .service-info h3 {
    font-size: 1.8rem;
  }

  .sample-grid {
      grid-template-columns: repeat(2, 1fr);
      grid-auto-rows: 150px;
  }
  
  .sample-item:nth-child(1) {
      grid-column: span 2;
  }

  .sample-grid.wedding-collage {
      grid-template-columns: repeat(2, 1fr);
      grid-auto-rows: 180px;
  }

  .sample-grid.wedding-collage .sample-item {
      grid-column: span 1 !important;
      grid-row: span 1 !important;
  }

  .sample-grid.wedding-collage .sample-item:nth-child(4),
  .sample-grid.wedding-collage .sample-item:nth-child(5) {
      grid-column: span 2 !important;
  }

  .pricing-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
  }

  .contact-info {
    flex-direction: column;
    gap: 2rem;
  }
  
  .trial-card {
    flex-direction: column;
    text-align: center;
    padding: 3rem 2rem;
  }

  .scrolling-content img {
    width: 280px;
    height: 180px;
  }

  .trial-content h2 {
    font-size: 2rem;
  }

  .contact-card {
    padding: 3rem 1.5rem;
  }

  .contact-card h2 {
    font-size: 2.2rem;
  }
}

/* Lightbox Styles */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.lightbox-content {
    width: 75vw;
    height: 75vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#lightbox-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain; /* Follow original aspect ratio strictly */
    border-radius: 4px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s ease;
}

.lightbox-modal.active #lightbox-img {
    transform: scale(1);
    opacity: 1;
}

.close-lightbox {
    position: absolute;
    top: -45px;
    right: -10px;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 2200;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.close-lightbox:hover {
    color: var(--rose);
    transform: rotate(90deg) scale(1.2); /* Rollover animation */
}

.lightbox-nav {
    position: absolute;
    width: 110%; /* Makes buttons sit slightly outside the image but still close */
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-btn {
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-btn:hover {
    background: var(--rose);
    border-color: var(--rose);
    transform: scale(1.15); /* Rollover animation */
    box-shadow: 0 0 20px rgba(255, 45, 85, 0.5);
}

.nav-btn i {
    width: 22px;
    height: 22px;
}

@media (max-width: 900px) {
    .lightbox-content {
        width: 85vw;
        height: 70vh;
    }
}

@media (max-width: 480px) {
    .lightbox-content {
        width: 95vw;
        height: 60vh;
    }
    .close-lightbox {
        top: 10px;
        right: 15px;
    }
    .nav-btn {
        width: 40px;
        height: 40px;
    }
    .sample-grid {
        display: flex;
        flex-direction: column;
    }
    .sample-item {
        height: 200px;
    }
}

