/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  max-width: 100vw;
}

:root {
  --primary-color: #4a4a4a;
  --secondary-color: #c9b99a;
  --bg-color: #faf8f5;
  --white: #ffffff;
  --light-gray: #f5f0eb;
  --text-gray: #777777;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--primary-color);
  background-color: var(--bg-color);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  letter-spacing: 2px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}


/* ===== HOME PAGE ONLY ===== */

/* Hero ke andar: absolute position, transparent, scrolls with page */
body.home-page .header:not(.header-scrolled):not(.header-leaving) {
  position: absolute;
  background-color: transparent;
  box-shadow: none !important;
  filter: none !important;
  transform: none;
}

/* Nav links white jab transparent hero par ho */
body.home-page .header:not(.header-scrolled):not(.header-leaving) .nav-link {
  color: #ffffff;
}
body.home-page .header:not(.header-scrolled):not(.header-leaving) .nav-link::after {
  background-color: #ffffff;
}
body.home-page .header:not(.header-scrolled):not(.header-leaving) .nav-link.book-now {
  border-color: rgba(255,255,255,0.6);
  color: #ffffff;
}
body.home-page .header:not(.header-scrolled):not(.header-leaving) .info-btn span {
  color: #ffffff;
}
body.home-page .header:not(.header-scrolled):not(.header-leaving) .info-btn-line,
body.home-page .header:not(.header-scrolled):not(.header-leaving) .info-btn-line-thick {
  background-color: #ffffff;
}
body.home-page .header:not(.header-scrolled):not(.header-leaving) .mobile-menu-toggle span {
  background-color: #ffffff;
}

/* ===== Slide-Down: hero khatam → fixed white header ===== */
@keyframes headerSlideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* ===== Slide-Up: hero wapas → header goes away ===== */
@keyframes headerSlideUp {
  from { transform: translateY(0);    opacity: 1; }
  to   { transform: translateY(-100%); opacity: 0; }
}

/* Scrolled state: FIXED white header slides in from top */
body.home-page .header.header-scrolled {
  position: fixed;
  background-color: #ffffff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  animation: headerSlideDown 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Leaving state: fixed white header slides out upward */
body.home-page .header.header-leaving {
  position: fixed;
  background-color: #ffffff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  animation: headerSlideUp 0.4s cubic-bezier(0.55, 0, 1, 0.45) forwards;
}


.header .container {
  padding: 13px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
}
/* Home page: hero slider top se start ho (no margin for fixed header) */
body.home-page .hero-slider {
  margin-top: 0 !important;
  padding-top: 0 !important;
}


/* Logo - Left Corner with negative margin */
.logo {
  flex: 0 0 auto;
  margin-left: -420px; /* Logo ko aur left push karein */
}

.logo img {
  height: 53px;
  width: auto;
  object-fit: contain;
}

/* Dual logo: white hidden by default everywhere */
.logo-white {
  display: none;
}

/* HOME PAGE - hero transparent state: show white, hide dark */
body.home-page .header:not(.header-scrolled):not(.header-leaving) .logo-dark {
  display: none;
}
body.home-page .header:not(.header-scrolled):not(.header-leaving) .logo-white {
  display: block;
}

/* Navigation - Center */
.navigation {
  flex: 0 0 auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 35px;
  align-items: center;
  margin: 0;
  padding: 0;
}

/* Navigation Links */
.nav-link {
  font-family: "Montserrat", sans-serif;
  font-size: 11.5px !important;
  font-weight: 500;
  color: var(--primary-color);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease; /* Sirf color */
  text-decoration: none;
}

.nav-link:active {
  color: var(--secondary-color);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* BOOK NOW Button */
/* BOOK NOW button - uses inline-block wrapper to contain shine */
.nav-link.book-now {
  background-color: var(--secondary-color);
  color: var(--white) !important;
  padding: 10px 25px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: radial-gradient(white, black);
}

.nav-link.book-now::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  animation: bookNowShine 2.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes bookNowShine {
  0% { left: -100%; }
  60% { left: 120%; }
  100% { left: 120%; }
}

.nav-link.book-now::after {
  display: none;
}

.nav-link.book-now:hover {
  background-color: #b8a88a;
  transform: translateY(-2px);
}

/* Info Button - Right Corner with negative margin */
.header-right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  margin-right: -420px; /* Info button ko aur right push karein */
}

/* Info Button - Dual Line Animation */
.info-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.info-btn span {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: var(--primary-color);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Info Button Lines Container */
.info-btn-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 50px;
  position: relative;
}

/* First Line - Thin (Default Visible) */
.info-btn-line {
  position: relative;
  left: 0;
  height: 1px;
  width: 100%; /* ✅ 0% se 100% kiya - Lines hamesha dikhegi */
  background-color: var(--primary-color);
  border-radius: 12px;
  transition: all 0.3s ease-out;
  transform: translateX(0);
}

/* Second Line - Thick (Default Visible) */
.info-btn-line-thick {
  position: relative;
  left: 0;
  height: 2px;
  width: 100%; /* ✅ 0% se 100% kiya - Lines hamesha dikhegi */
  background-color: var(--primary-color);
  border-radius: 12px;
  transition: all 0.3s ease-out;
  transform: translateX(0);
}

/* Hover Animation - Sequential (Left to Right) */
.info-btn:hover .info-btn-line {
  width: 100%;
  transform: translateX(5px);
  background-color: var(--secondary-color);
  transition-delay: 0s;
}

.info-btn:hover .info-btn-line-thick {
  width: 100%;
  transform: translateX(-5px);
  background-color: var(--secondary-color);
  transition-delay: 0.15s;
}

/* Mouse Leave - Reverse Order */
.info-btn .info-btn-line {
  transition-delay: 0.15s;
}

.info-btn .info-btn-line-thick {
  transition-delay: 0s;
}

/* Active State (Sidebar Open) */
.info-btn.active .info-btn-line,
.info-btn.active .info-btn-line-thick {
  width: 100%;
  background-color: var(--secondary-color);
  transform: translateX(0);
  transition-delay: 0s;
}
.info-btn.active .info-btn-line-thick {
  width: 100%;
  transform: translateX(0);
  background-color: var(--secondary-color);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 2px;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
  margin-top: 0;
}

.slider-container {
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
}

.slide:nth-child(1) {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("https://images.unsplash.com/photo-1519741497674-611481863552?w=1920");
}

.slide:nth-child(2) {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("https://images.unsplash.com/photo-1511285560929-80b456fea0bc?w=1920");
}

.slide:nth-child(3) {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("https://images.unsplash.com/photo-1583939003579-730e3918a45a?w=1920");
}

.slide:nth-child(4) {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("https://images.unsplash.com/photo-1519741497674-611481863552?w=1920");
}

.slide:nth-child(5),
.slide:nth-child(6),
.slide:nth-child(8),
.slide:nth-child(10) {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url("https://images.unsplash.com/photo-1511285560929-80b456fea0bc?w=1920");
}

.slide:nth-child(7) {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("https://images.unsplash.com/photo-1519741497674-611481863552?w=1920");
}

.slide:nth-child(9) {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("https://images.unsplash.com/photo-1583939003579-730e3918a45a?w=1920");
}

.slide.no-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
}

.slide-content {
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 0 20px;
  z-index: 1;
}

.slide-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.5s;
}

.slide-content p {
  font-size: 18px;
  font-weight: 300;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 1s;
}

.slide.active .slide-content h1,
.slide.active .slide-content p {
  animation: fadeInUp 1s ease forwards;
}

.slide.active .slide-content h1 {
  animation-delay: 0.5s;
}

.slide.active .slide-content p {
  animation-delay: 1s;
}

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

.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

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

.dot.active {
  background-color: var(--white);
  width: 30px;
  border-radius: 5px;
}

/* Section Header */
.section-header {
  font-size: 20px;
  text-align: center;
  margin-bottom: 70px;
  margin-top: -5px;
}

.section-header h3 {
  font-size: 28px; /* Instagram heading ke liye */
  margin-bottom: 10px;
  color: var(--primary-color);
  font-family: "Playfair Display", serif;
  letter-spacing: 2px;
}

.section-header p {
  font-size: 13px; /* 15px se 13px kiya , Photography section text */
  color: var(--text-gray);
  max-width: 1400px;
  margin: 10px auto;
  line-height: 1.8;
}

/* Portfolio Section */
.portfolio-section {
  padding: 100px 0;
  background-color: var(--white);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 40px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
}

.portfolio-image {
  width: 100%;
  height: 320px;
  overflow: hidden;
  margin-bottom: 8px;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.05);
}

.portfolio-text {
  padding: 0 5px;
}

.portfolio-category {
  font-family: "Montserrat", sans-serif;
  font-size: 9px;
  font-weight: 500;
  color: #999;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
  display: block;
}

.portfolio-item h3 {
  font-family: "Playfair Display", serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--primary-color);
  line-height: 1.4;
  margin: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Films Section */
.films-section {
  padding: 100px 0;
  background-color: var(--white);
}

.films-carousel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Films Grid - 4 columns fixed */
.films-carousel-wrapper {
  position: relative;
  width: 100%;
  padding: 0;
  box-sizing: border-box;
}

.films-carousel-viewport {
  width: 100%;
  overflow: visible;
}

.films-carousel-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}

.carousel-arrow {
  display: none;
  background: var(--white);
  border: 1px solid #eee;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  flex-shrink: 0;
  z-index: 2;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) !important;
}

.carousel-arrow#filmsPrev {
  left: -70px;
}

.carousel-arrow#filmsNext {
  right: -70px;
}

.carousel-arrow:hover {
  background-color: var(--secondary-color);
  color: var(--white);
  border-color: var(--secondary-color);
  transform: translateY(-50%) !important;
}

.film-item {
  position: relative;
  cursor: pointer;
  width: 100%;
  max-width: 310px;
  margin: 0 auto;
}

.film-thumbnail {
  position: relative;
  width: 100%;
  height: 551.1px;
  overflow: hidden;
}

.film-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.film-item:hover .film-thumbnail img {
  transform: scale(1.1);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px; /* ✅ Chhota kiya */
  height: 50px; /* ✅ Chhota kiya */
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.play-button i {
  color: var(--primary-color);
  font-size: 18px; /* ✅ Chhota kiya */
  margin-left: 3px;
}

.film-item:hover .play-button {
  background-color: var(--secondary-color);
}

.film-item:hover .play-button i {
  color: var(--white);
}

.film-item h3 {
  text-align: center;
  margin-top: 15px;
  font-size: 16px;
}

/* Statistics Section */
.statistics-section {
  padding: 100px 0;
  background-color: var(--white);
}

.statistics-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  text-align: center;
}

.statistic-item {
  padding: 20px;
}

.statistic-number {
  font-family: "Playfair Display", serif;
  font-size: 56px;
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.statistic-label {
  font-size: 14px;
  color: var(--text-gray);
  letter-spacing: 1px;
}

/* Google Review */
.google-review {
  background: linear-gradient(135deg, #f5f0eb 0%, #ffffff 100%);
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.google-review:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.google-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.google-stars i {
  font-size: 48px;
  color: #fbbc05;
  animation: starPulse 2s ease-in-out infinite;
  text-shadow: 0 2px 10px rgba(251, 188, 5, 0.3);
}

@keyframes starPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.google-rating {
  font-family: "Playfair Display", serif;
  font-size: 56px;
  color: var(--secondary-color);
  font-weight: 600;
  display: inline-block;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #d4c4a8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Blog Section */
.blog-section {
  padding: 100px 0;
  background-color: var(--light-gray);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-item {
  background-color: var(--white);
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-item:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  padding: 30px;
}

.blog-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 11px;
  color: var(--text-gray);
  letter-spacing: 1px;
}

.blog-content h3 {
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-content p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.read-more {
  font-size: 11px;
  color: var(--secondary-color);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.read-more:hover {
  color: var(--primary-color);
}

/* Testimonials Section */
.testimonials-section {
  padding: 78px 0 62px;
  background-color: var(--bg-color);
  text-align: center;
}

.testimonials-section .section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.testimonials-section .section-header p {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  color: #999;
  font-style: italic;
  letter-spacing: 1px;
  max-width: 100%;
  margin: 0 auto 60px;
}

.testimonials-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  min-height: 189px;
}

.testimonial-item {
  display: none;
  text-align: center;
  padding: 25px;
  min-height: 176px;
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.8s ease;
}

.testimonial-item.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
  animation: slideInRight 0.8s ease forwards;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.testimonial-content p {
  font-family: "Montserrat", sans-serif;
  font-size: 20px !important;
  font-style: normal;
  color: var(--primary-color);
  line-height: 1.9;
  margin-bottom: 19px;
  font-weight: 400;
  letter-spacing: 0.3px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-author h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 13px !important;
  font-weight: 600;
  color: #2c2c2c;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 38px;
}

.testimonial-prev,
.testimonial-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--white);
  border: 1px solid #eee;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background-color: var(--secondary-color);
  color: var(--white);
  border-color: var(--secondary-color);
  transform: translateY(-3px);
}

/* Booking Section */
.booking-section {
  padding: 100px 0;
  background-color: var(--white);
}

.booking-form {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background-color: var(--bg-color);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 14px;
  color: #1a1a1a;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid #ddd;
  background-color: transparent;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  color: #1a1a1a;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom-color: var(--secondary-color);
}

.form-group textarea {
  resize: vertical;
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.btn-submit {
  padding: 12px 35px;
  background-color: var(--secondary-color);
  color: var(--white);
  border: none;
  border-radius: 20px;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-submit:hover {
  background-color: #b8a88a;
  transform: translateY(-2px);
}

/* Instagram Section */
.instagram-section {
  padding: 60px 0;
  background-color: var(--light-gray);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 30px;
}

.instagram-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  width: 100%;
  height: 450px;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.instagram-item:hover img {
  transform: scale(1);
  filter: brightness(0.7);
}

.instagram-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(214, 214, 214, 0.276);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.instagram-item:hover .instagram-overlay {
  opacity: 1;
}

.instagram-overlay i {
  color: var(--white);
  font-size: 32px;
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  background-color: var(--secondary-color);
  color: var(--white);
  border-radius: 5px;
  font-size: 12px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-instagram:hover {
  background-color: #b8a88a;
}

/* Footer */
.footer {
  background-color: var(--white);
  padding: 60px 0 25px;
  border-top: 1px solid #eee;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 45px;
  align-items: center;
  margin-bottom: 35px;
}

.footer-section {
  text-align: center;
}

.footer-section h3 {
  font-size: 22px !important;
  letter-spacing: 2.7px;
  margin-bottom: 18px;
  color: var(--primary-color);
}

.footer-section a {
  display: block;
  font-size: 12px;
  color: #2a2a2a;
  margin-bottom: 9px;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--secondary-color);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-top: 20px;
}

.footer-social a {
  width: 30px;
  height: 18px;
  border: none;
  border-right: 1px solid #ccc;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px !important;
  color: var(--primary-color);
  transition: all 0.3s ease;
  opacity: 0.7;
}

.footer-social a:last-child {
  border-right: none;
}

.footer-social a i {
  font-size: 14px !important;
}

.footer-social a:hover {
  color: var(--secondary-color);
  opacity: 1;
}

.footer-logo {
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  padding: 0 50px;
}

.footer-logo-circle {
  width: 65px;
  height: 65px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.footer-logo-circle span {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: var(--secondary-color);
}

.footer-logo p {
  font-size: 11.5px !important;
  color: var(--text-gray);
  letter-spacing: 1.8px !important;
  line-height: 1.8;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid #eee;
  font-size: 11.5px;
  color: var(--text-gray);
}

.footer-bottom p {
  margin: 0;
}
/* Footer Terms & Conditions Link */
.footer-terms {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 11.5px;
  font-weight: 450;
  letter-spacing: 1px;
}

.footer-terms:hover {
  color: var(--secondary-color);
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 54px;
  height: 54px;
  background-color: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 29px;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
  z-index: 3000; /* ✅ 999 se 3000 kiya - Sidebar se upar */
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Info Sidebar */
.info-sidebar {
  position: fixed;
  top: 0;
  right: -450px;
  width: 450px;
  height: 100vh;
  background-color: rgba(74, 74, 74, 0.98);
  z-index: 2000;
  transition: right 0.4s ease-in-out;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  color: #ffffff;
  overflow-y: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.info-sidebar::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.info-sidebar.active {
  right: 0;
}

/* Close Button - Top Right Corner */
.info-sidebar-header {
  position: absolute;
  top: 30px;
  right: 40px;
  display: flex;
  justify-content: flex-end;
  width: auto;
  margin-bottom: 0;
  z-index: 10;
}

.close-sidebar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  padding: 0;
}

.close-sidebar:hover {
  opacity: 0.7;
  transform: translateX(-5px);
}

.close-sidebar svg {
  width: 16px;
  height: 16px;
  stroke: #ffffff;
  stroke-width: 2;
  transition: all 0.3s ease;
}

.close-sidebar:hover svg {
  transform: rotate(90deg);
}

.info-sidebar-content {
  flex: 1;
}

.info-description {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 40px;
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.8);
}

/* Branch Section */
.branch-section {
  margin-bottom: 50px;
}

.branch-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 38px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 15px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.branch-details h4 {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  color: var(--secondary-color);
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.branch-details .branch-name {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 600;
}

.branch-details .branch-address {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.branch-details .branch-address i {
  color: var(--secondary-color);
  font-size: 16px;
  margin-top: 3px;
}

.branch-map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  margin-bottom: 15px;
}

.branch-map-link i {
  color: var(--secondary-color);
  font-size: 14px;
}

.branch-map-link:hover {
  color: var(--white);
  border-color: var(--secondary-color);
  background-color: rgba(201, 185, 154, 0.1);
}

/* Google Map */
.branch-map {
  width: 250px !important;
  height: 250px !important;
  border: none;
  border-radius: 10px;
  margin-top: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: block;
}

/* Other Sections */
.info-section {
  margin-bottom: 20px;
}

.info-section h3 {
  font-family: "Playfair Display", serif;
  font-size: 25px;
  letter-spacing: 3px;
  margin-bottom: 0px;
  margin-top: 20px;
  color: #ffffff;
  text-transform: uppercase;
}

.info-instagram {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  margin-bottom: 30px;
}

.info-social {
  display: flex;
  gap: 2px;
  margin-bottom: 0px;
  margin-top: 10px;
}

.info-social a {
  width: 30px;
  height: 18px;
  margin-bottom: 0px;
  margin-top: 0px;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: all 0.3s ease;
}

.info-social a:last-child {
  border-right: none;
}

.info-social a:hover {
  color: #ffffff;
}

.info-email {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  transition: color 0.3s ease;
}

.info-email i {
  color: var(--secondary-color);
}

.info-email:hover {
  color: #ffffff;
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  min-width: 160px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  list-style: none;
  padding: 0;
  margin: 0;
  border-radius: 3px;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 12px 25px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.dropdown-menu a:hover {
  background-color: var(--light-gray);
  color: var(--secondary-color);
  padding-left: 30px;
}

.dropdown-menu a::after {
  display: none;
}

.nav-link i {
  font-size: 8px;
  margin-left: 5px;
  transition: transform 0.3s ease;
  display: inline-block;
}

.dropdown:hover .nav-link i {
  transform: rotate(180deg);
}

/* Page Hero Section */
.page-hero {
  margin-top: 45px;
  width: 100%;
  height: 320px;
  overflow: hidden;
  padding-bottom: 0px;
}

.page-hero-image {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Story Telling Section */
.story-telling-section {
  padding: 100px 0;
  background-color: var(white);
}

.films-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.film-showcase-item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.film-showcase-image {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.film-showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.film-showcase-item:hover .film-showcase-image img {
  transform: scale(1.05);
}

.play-button-large {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}

.play-button-large i {
  color: var(--primary-color);
  font-size: 28px;
  margin-left: 5px;
}

.film-showcase-item:hover .play-button-large {
  background-color: var(--secondary-color);
}

.film-showcase-item:hover .play-button-large i {
  color: var(--white);
}

.film-showcase-item h3 {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--primary-color);
}

/* Photography Gallery Section */
.photography-gallery-section {
  padding: 60px 0;
  background-color: var(--white);
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 20px;
  background: none;
  border: none;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  color: var(--text-gray);
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.filter-btn.active,
.filter-btn:hover {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.photography-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.photography-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  width: 100%;
  height: 400px;
}

.photography-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.photography-item:hover img {
  transform: scale(1.1);
}

/* Pre-Wedding Page Content Styling */
.pre-wedding-content-section {
  padding: 40px 0 30px;
  background-color: var(--white);
  text-align: center;
}

.pre-wedding-content-section .section-header {
  margin-bottom: 25px;
}

.pre-wedding-content-section .section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 25px;
  margin-top: 40px;
  text-align: center;
  line-height: 1.4;
}

.pre-wedding-content-section .section-header p {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.8;
  max-width: 2500px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: -160px;
  font-weight: 400;
}

/* Branch Details Styling */
.branch-details h4 {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  color: var(--secondary-color);
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.branch-details .branch-name {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 1000;
}

.branch-details .branch-address {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 10px;
}

.branch-map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.branch-map-link i {
  color: var(--secondary-color);
  font-size: 14px;
}

.branch-map-link:hover {
  color: var(--white);
}

/* ============================================
   RESPONSIVE BREAKPOINTS - Laptop / PC / Tablet
   ============================================ */

/* === 2400px: QHD / 2K monitors === */
@media (max-width: 2400px) and (min-width: 969px) {
  .logo {
    margin-left: -280px;
  }
  .header-right {
    margin-right: -280px;
  }
}

/* === 1920px: Full HD / 1080p monitors === */
@media (max-width: 1920px) and (min-width: 969px) {
  .logo {
    margin-left: 0;
  }
  .header-right {
    margin-right: 0;
  }
  .header .container {
    max-width: 100%;
    padding: 30px 40px;
  }
}

/* === 1600px: Standard desktop / large laptop === */
@media (max-width: 1600px) and (min-width: 969px) {
  .header .container {
    padding: 22px 30px;
    max-width: 100%;
  }
  .container {
    max-width: 1300px;
    padding: 0 30px;
  }
  .instagram-item {
    height: 380px;
  }
  .film-showcase-image {
    height: 500px;
  }
}

/* === 1400px: Standard laptop (1366x768, 1440x900) === */
@media (max-width: 1400px) and (min-width: 969px) {
  .logo {
    margin-left: 0;
  }
  .header-right {
    margin-right: 0;
  }
  .header .container {
    padding: 18px 25px;
    max-width: 100%;
  }
  .container {
    max-width: 1200px;
    padding: 0 25px;
  }
  /* Scale down film thumbnails */
  body.home-page .film-thumbnail {
    height: 450px;
  }
  body.home-page .film-item {
    max-width: 280px;
  }
  .film-thumbnail {
    height: 600px;
  }
  /* Scale down Instagram */
  .instagram-item {
    height: 320px;
  }
  /* Scale down portfolio */
  .portfolio-image {
    height: 280px;
  }
  /* Scale sections padding */
  .portfolio-section,
  .films-section,
  .blog-section,
  .booking-section {
    padding: 80px 0;
  }
  .statistics-section {
    padding: 80px 0;
  }
  /* Scale statistics */
  .statistic-number {
    font-size: 48px;
  }
  /* Scale film showcase */
  .film-showcase-image {
    height: 450px;
  }
  /* Photography grid */
  .photography-item {
    height: 320px;
  }
  /* Page hero */
  .page-hero {
    height: 280px;
  }
  /* Pre-wedding text fix */
  .pre-wedding-content-section .section-header p {
    margin-bottom: -100px;
    max-width: 1200px;
  }
  /* Testimonials */
  .testimonial-content p {
    font-size: 16px;
  }
  /* Trusted grid */
  .trusted-grid {
    max-width: 900px;
    gap: 25px;
  }
}

/* === 1200px: Small laptop / Tablet landscape === */
@media (max-width: 1200px) and (min-width: 969px) {
  .logo {
    margin-left: 0;
  }
  .header-right {
    margin-right: 0;
  }
  .header .container {
    padding: 20px 20px;
  }
  .container {
    max-width: 100%;
    padding: 0 20px;
  }
  /* Film grid to 3 columns */
  .films-carousel-track {
    gap: 15px;
  }
  body.home-page .film-item {
    min-width: calc(33.333% - 10px);
    max-width: none;
  }
  body.home-page .film-thumbnail {
    height: 400px;
  }
  .film-item {
    max-width: none;
  }
  .film-thumbnail {
    height: 500px;
  }
  /* Portfolio to 2 columns, smaller */
  .portfolio-image {
    height: 250px;
  }
  /* Instagram scale */
  .instagram-item {
    height: 260px;
  }
  /* Statistics */
  .statistics-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }
  .statistic-number {
    font-size: 42px;
  }
  .google-stars i {
    font-size: 38px;
  }
  /* Blog */
  .blog-image {
    height: 240px;
  }
  .blog-content h3 {
    font-size: 18px;
  }
  /* Film showcase */
  .film-showcase-image {
    height: 380px;
  }
  /* Photography */
  .photography-item {
    height: 280px;
  }
  /* Page hero */
  .page-hero {
    height: 300px;
  }
  /* Pre-wedding fix */
  .pre-wedding-content-section .section-header p {
    margin-bottom: -60px;
    max-width: 100%;
  }
  /* Section padding */
  .portfolio-section,
  .films-section,
  .blog-section,
  .booking-section {
    padding: 60px 0;
  }
  .statistics-section {
    padding: 60px 0;
  }
  .testimonials-section {
    padding: 60px 0;
  }
  .section-header {
    margin-bottom: 50px;
  }
  /* Footer */
  .footer-content {
    gap: 40px;
  }
  .footer-logo {
    padding: 0 40px;
  }
  /* Trusted platforms */
  .trusted-grid {
    max-width: 100%;
    gap: 20px;
  }
  .trusted-card {
    padding: 28px 15px 22px;
  }
  /* Nav gap */
  .nav-menu {
    gap: 25px;
  }
  .nav-link {
    font-size: 10px;
    letter-spacing: 1.5px;
  }
}

@media (max-width: 968px) {
  .header .container {
    padding: 15px 20px;
  }

  .logo {
    margin-left: 0;
  }

  .header-right {
    margin-right: 0;
    display: none; /* Mobile par hide karein */
  }
  .portfolio-grid,
  .films-carousel {
    grid-template-columns: repeat(3, 1fr);
  }

  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 968px) {
  .header .container {
    padding: 15px 20px;
  }

  .navigation {
    position: absolute;
    top: 80px;
    left: 58%;
    width: 100%;
    background-color: var(--white);
    transform: translateX(-50%);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    padding: 20px 0;
  }

  .navigation.active {
    transform: translateX(0);
  }

  .nav-menu {
    flex-direction: column;
    gap: 0;
  }

  .nav-link {
    padding: 15px 30px;
    width: 100%;
    text-align: center;
    display: block;
  }

  .nav-link.book-now {
    margin: 10px 30px;
    width: calc(100% - 60px);
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .header-right {
    display: none;
  }

  .slide-content h1 {
    font-size: 36px;
  }

  .portfolio-grid,
  .films-carousel {
    grid-template-columns: repeat(2, 1fr);
  }

  .statistics-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-logo {
    border: none;
    padding: 20px;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0.05);
    display: none;
    padding: 0;
    min-width: 100%;
    margin-top: 10px;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .info-sidebar {
    width: 100%;
    right: -100%;
    padding: 30px 20px;
  }

  .films-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .film-showcase-image {
    height: 450px;
  }

  .photography-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .portfolio-grid,
  .films-carousel,
  .instagram-grid {
    grid-template-columns: 1fr;
  }

  .statistics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .testimonial-content p {
    font-size: 20px;
    padding: 0 20px;
  }

  .portfolio-image {
    height: 400px;
  }

  .films-showcase {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .film-showcase-image {
    height: 500px;
  }

  .photography-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-filters {
    gap: 10px;
  }

  .filter-btn {
    padding: 6px 15px;
    font-size: 10px;
  }

  .pre-wedding-content-section {
    padding: 20px 0 20px;
  }

  .pre-wedding-content-section .section-header {
    margin-bottom: 20px;
  }

  .pre-wedding-content-section .section-header h2 {
    font-size: 22px;
    letter-spacing: 2px;
    margin-top: 26px;
  }

  .pre-wedding-content-section .section-header p {
    font-size: 12px;
    padding: 0 20px;
    max-width: 100%;
  }

  .photography-gallery-section {
    padding: 15px 0 60px;
  }
}

@media (max-width: 480px) {
  .slide-content h1 {
    font-size: 28px;
  }

  .statistics-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-content p {
    font-size: 18px;
  }
}
/* Films Carousel */
.films-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 5px;
}

.films-carousel-viewport {
  overflow: hidden;
  flex: 1;
  position: relative;
}

.films-carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
  will-change: transform;
}

.film-item {
  min-width: calc(33.333% - 14px); /* Films page: 3 items visible */
  max-width: 425.72px;
  position: relative;
  cursor: pointer;
}

/* Home page: 4 items visible, 310x551.1px */
body.home-page .film-item {
  min-width: calc(25% - 15px);
  max-width: 334px;
}

.film-thumbnail {
  position: relative;
  width: 100%;
  height: 756.84px; /* Films page: 425.72x756.84 */
  overflow: hidden;
}

/* Home page: 334x441px */
body.home-page .film-thumbnail {
  height: 441px;
}

.film-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.film-item:hover .film-thumbnail img {
  transform: scale(1.1);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.play-button i {
  color: var(--primary-color);
  font-size: 14px;
  margin-left: 3px;
}

.film-item:hover .play-button {
  background-color: var(--secondary-color);
}

.film-item:hover .play-button i {
  color: var(--white);
}

.film-item h3 {
  text-align: center;
  margin-top: 15px;
  font-size: 16px;
  font-family: "Playfair Display", serif;
  color: var(--primary-color);
}

.film-type {
  display: block;
  text-align: center;
  font-size: 11px;
  color: var(--text-gray);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 5px;
}

/* Carousel Arrows */
.carousel-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--white);
  border: 1px solid #eee;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
  z-index: 10;
}

.carousel-arrow:hover {
  background-color: var(--secondary-color);
  color: var(--white);
  border-color: var(--secondary-color);
  transform: translateY(-3px);
}

.carousel-arrow i {
  font-size: 18px;
}

/* Responsive */
@media (max-width: 1400px) {
  .films-carousel-track {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1200px) {
  .films-carousel-track {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 968px) {
  /* Mobile: 1 item per view, 300x533px, centered */
  .films-carousel-wrapper {
    padding: 0 22px;
    position: relative;
  }

  .films-carousel-viewport {
    overflow: hidden !important;
  }

  .films-carousel-track {
    gap: 0 !important; /* No gap so JS offset matches perfectly */
  }

  .film-item {
    min-width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .film-thumbnail {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 300 / 533;
  }

  .carousel-arrow {
    display: flex !important;
    width: 38px !important;
    height: 38px !important;
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10 !important;
    background: rgba(255,255,255,0.9) !important;
    border: 1px solid #ddd !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
  }

  .carousel-arrow i {
    font-size: 14px !important;
    display: flex !important;
  }

  /* Prevent hover/active/focus from overriding mobile positioning */
  .carousel-arrow:hover,
  .carousel-arrow:active,
  .carousel-arrow:focus {
    transform: translateY(-50%) !important;
    background: rgba(255,255,255,0.9) !important;
    color: var(--primary-color) !important;
    border-color: #ddd !important;
    outline: none !important;
  }

  .carousel-arrow#filmsPrev,
  .carousel-arrow.carousel-prev {
    left: 0 !important;
  }
  .carousel-arrow#filmsNext,
  .carousel-arrow.carousel-next {
    right: 0 !important;
  }
}
/* Force update play button size */
.films-section .play-button {
  width: 40px !important;
  height: 40px !important;
}

.films-section .play-button i {
  font-size: 14px !important;
}

/* ===== Blog Page - Bigger Text ===== */
.blog-page-content p {
  font-size: 16px;
  line-height: 2;
  color: var(--text-gray);
}

.blog-page-content h3 {
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.blog-page-content .blog-page-tag {
  font-size: 13px;
}

/* Footer logo text - 20% more visible */
.footer-logo p, .footer-section.footer-logo p {
  opacity: 1;
  color: rgba(74, 74, 74, 0.9);
  font-weight: 500;
}

/* ================================================
   MOBILE MENU - Complete Implementation (≤968px)
   Desktop view is completely unchanged.
   ================================================ */
@media (max-width: 968px) {

  /* 1. Header: always fixed on mobile */
  .header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 65px !important;
    background: #ffffff !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08) !important;
    z-index: 1100 !important;
    filter: none !important;
    padding: 0 !important;
  }
  /* Home page: header scrolls WITH hero (absolute, not fixed) */
  body.home-page .header:not(.header-scrolled):not(.header-leaving) {
    position: absolute !important;
    background: transparent !important;
    box-shadow: none !important;
    animation: none !important;
    transform: none !important;
  }
  /* Home page: white header after scroll (JS adds .header-scrolled) */
  body.home-page .header.header-scrolled {
    background: #ffffff !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08) !important;
    animation: headerSlideDown 0.4s ease forwards !important;
  }
  body.home-page .header.header-leaving {
    animation: headerSlideUp 0.3s ease forwards !important;
  }

  /* Logo on mobile: dark by default */
  .header .logo-dark { display: block !important; }
  .header .logo-white { display: none !important; }
  /* Home page hero: white logo */
  body.home-page .header:not(.header-scrolled):not(.header-leaving) .logo-dark { display: none !important; }
  body.home-page .header:not(.header-scrolled):not(.header-leaving) .logo-white { display: block !important; }
  /* Home page scrolled: dark logo */
  body.home-page .header.header-scrolled .logo-dark { display: block !important; }
  body.home-page .header.header-scrolled .logo-white { display: none !important; }

  /* Fix logo left margin on mobile */
  .logo { margin-left: 0 !important; margin-top: 8px !important; }
  .logo img { height: 41px !important; }

  /* Prevent horizontal overflow from desktop negative margins */
  html, body {
    overflow-x: hidden !important;
  }

  /* Header container: properly sized for mobile */
  .header .container {
    justify-content: space-between !important;
    padding: 8px 20px 0 20px !important;
    align-items: center !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 !important;
  }

  /* 2. Hide desktop nav & INFO button */
  .header-right { display: none !important; margin-right: 0 !important; }


  /* 3. MENU toggle button */
  .mobile-menu-toggle {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px !important;
    margin-right: 0 !important;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 0 !important;
    position: relative !important;
    z-index: 1200 !important;
  }

  /* Hide original 3 hamburger spans */
  .mobile-menu-toggle span { display: none !important; }

  /* MENU text via pseudo-element */
  .mobile-menu-toggle::before {
    content: 'MENU';
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--primary-color);
    text-transform: uppercase;
    transition: color 0.3s ease;
  }

  /* Two horizontal lines via ::after */
  .mobile-menu-toggle::after {
    content: '';
    display: block;
    width: 28px;
    height: 11px;
    background:
      linear-gradient(var(--primary-color), var(--primary-color)) 0 0 / 28px 1px no-repeat,
      linear-gradient(var(--primary-color), var(--primary-color)) 0 100% / 28px 2px no-repeat;
    transition: background 0.3s ease;
  }

  /* Home page hero: white MENU text + white lines */
  body.home-page .header:not(.header-scrolled):not(.header-leaving) .mobile-menu-toggle::before {
    color: #ffffff !important;
  }
  body.home-page .header:not(.header-scrolled):not(.header-leaving) .mobile-menu-toggle::after {
    background:
      linear-gradient(#ffffff, #ffffff) 0 0 / 28px 1px no-repeat,
      linear-gradient(#ffffff, #ffffff) 0 100% / 28px 2px no-repeat !important;
  }

  /* Menu open state - keep MENU text, no change */

  /* 4. Hero slider: isolated stacking context, below header */
  body.home-page .hero-slider {
    margin-top: 0 !important;
    z-index: 1 !important;
    isolation: isolate !important;
    contain: layout style !important;
  }
  /* Slides: explicit low z-index */
  body.home-page .hero-slider .slide {
    z-index: 0 !important;
  }
  body.home-page .hero-slider .slide.active {
    z-index: 1 !important;
  }
  .page-hero { margin-top: 65px; }

  /* Hide current page link in mobile menu */
  .navigation .nav-menu > li:has(> .nav-link.active:not(.dropdown-toggle):not(.book-now)) {
    display: none !important;
  }

  /* 5. Mobile nav - compact content-height dropdown */
  .navigation {
    display: block !important;
    position: fixed !important;
    top: 65px !important;
    left: 0 !important;
    right: 0 !important;
    background: #ffffff !important;
    z-index: 999 !important;
    overflow: hidden !important;
    padding: 0 !important;
    max-height: 0px;
    transition: max-height 0.4s ease;
    box-shadow: none !important;
    transform: none !important;
  }
  .navigation.active {
    max-height: 500px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12) !important;
  }

  /* Nav list: vertical */
  .navigation .nav-menu {
    flex-direction: column !important;
    gap: 0 !important;
    padding: 0 !important;
    align-items: flex-start !important;
    width: 100% !important;
  }

  .navigation .nav-link::after {
    display: none !important;
  }

  .navigation .nav-menu > li {
    border-bottom: 1px solid #f0f0f0;
    width: 100%;
  }

  /* Nav links */
  .navigation .nav-link {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 11px 30px !important;
    font-size: 12px !important;
    letter-spacing: 3px !important;
    color: var(--text-gray) !important;
    text-transform: uppercase !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Book Now link in mobile nav */
  .navigation .nav-link.book-now {
    background: none !important;
    border-radius: 0 !important;
    padding: 11px 30px !important;
    color: #a89878 !important;
    font-weight: 600 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    font-size: 12px !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    text-align: left !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
    overflow: visible !important;
  }

  /* Dropdown in mobile: static */
  .navigation .dropdown-menu {
    position: static !important;
    display: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    background: #fafafa !important;
    min-width: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  .navigation .dropdown.active .dropdown-menu {
    display: block !important;
  }

  .navigation .dropdown-menu li a {
    display: block !important;
    padding: 11px 30px 11px 50px !important;
    font-size: 11px !important;
    letter-spacing: 2px !important;
    color: var(--text-gray) !important;
    border-bottom: 1px solid #f0f0f0 !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
  }

  /* Rotate chevron when dropdown open */
  .navigation .dropdown.active .fa-chevron-down {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
  }

  /* 7. Portfolio section - landscape cards on mobile */
  .portfolio-section {
    padding: 38px 0 !important;
  }
  .films-section {
    padding: 38px 0 !important;
  }
  .statistics-section {
    padding: 30px 0 38px !important;
  }
  .portfolio-section .section-header h2 {
    font-size: 22px !important;
    line-height: 1.3 !important;
  }
  .portfolio-section .section-header p {
    font-size: 13px !important;
    line-height: 1.7 !important;
  }
  .portfolio-grid {
    grid-template-columns: 1fr !important;
    gap: 40px 0 !important;
  }
  .portfolio-image {
    width: 100% !important;
    height: 0 !important;
    padding-bottom: 56.25% !important; /* 16:9 landscape ratio */
    position: relative !important;
  }
  .portfolio-image img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  /* 8. Hide review/testimonial arrow buttons on mobile */
  .testimonial-nav {
    display: none !important;
  }

  /* 9. Testimonial touch-drag slider on mobile */
  .testimonials-carousel {
    overflow: hidden !important;
    touch-action: pan-y !important;
    min-height: auto !important;
  }
  .testimonials-carousel .testimonial-track {
    display: flex !important;
    will-change: transform;
  }
  .testimonials-carousel .testimonial-track .t-clone {
    display: block !important;
    opacity: 1 !important;
    min-width: 100% !important;
    width: 100% !important;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
    padding: 20px 15px !important;
  }
  .testimonials-carousel .testimonial-item {
    display: block !important;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    min-width: 100% !important;
    width: 100% !important;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
    padding: 20px 15px !important;
  }

  /* 10. Instagram section - 2-column compact grid on mobile */
  .instagram-section {
    padding: 40px 0 !important;
  }
  .instagram-section .section-header h2 {
    font-size: 22px !important;
    margin-bottom: 8px !important;
  }
  .instagram-section .section-header p {
    font-size: 12px !important;
    margin-bottom: 20px !important;
  }
  .instagram-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 3px !important;
    margin-bottom: 20px !important;
  }
  .instagram-item {
    height: 90px !important;
  }
  .instagram-overlay i {
    font-size: 22px !important;
  }
  .btn-instagram {
    font-size: 11px !important;
    padding: 10px 24px !important;
  }

  /* 11. Footer bottom center align on mobile */
  .footer-bottom {
    text-align: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .footer-bottom p {
    margin-left: 0 !important;
    text-align: center !important;
  }

  /* 12. Page hero - landscape on mobile */
  .page-hero {
    height: auto !important;
    padding-bottom: 0 !important;
  }
  .page-hero .page-hero-image {
    width: 100% !important;
    height: 0 !important;
    padding-bottom: 28% !important; /* thinner landscape strip */
    position: relative !important;
    background: #000 !important;
  }
  .page-hero .page-hero-image img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
  /* Text below hero - push down */
  .page-hero + .films-section .section-header,
  .page-hero + section .section-header {
    margin-top: 20px !important;
  }
  /* Video pages: 16:9, no crop */
  .page-hero .page-hero-image:has(video) {
    padding-bottom: 56.25% !important;
  }
  .page-hero .page-hero-image video {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
  }

  /* 13. Photography grid images smaller on mobile */
  .photography-grid {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
    width: 75% !important;
    margin: 0 auto !important;
  }
  .photography-item {
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
  }

  /* 14. Pre-wedding content section spacing on mobile */
  .pre-wedding-content-section {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
  .pre-wedding-content-section .section-header {
    margin-bottom: 0 !important;
  }
  .pre-wedding-content-section .section-header p {
    margin-bottom: 0 !important;
  }
  .pre-wedding-content-section + .photography-gallery-section {
    padding-top: 5px !important;
  }

  /* 15. Google Review box – square & 30% smaller on mobile */
  .google-review {
    width: 55% !important;
    aspect-ratio: 1 / 1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
    padding: 15px !important;
    box-sizing: border-box !important;
  }

  /* 16. WhatsApp icon 15% smaller on mobile */
  .whatsapp-float {
    width: 51px !important;
    height: 51px !important;
    font-size: 27px !important;
    bottom: 20px !important;
    right: 20px !important;
  }
}

/* Blog Article Content (for individual blog post pages) */
.blog-article-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0 40px;
}
.blog-article-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--primary-color);
  margin: 35px 0 15px;
  letter-spacing: 0.5px;
}
.blog-article-content p {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.9;
  margin-bottom: 20px;
}

/* Blog Photo Grid (for individual blog post pages) */
.blog-photo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 0 0 40px;
}
.blog-photo-grid .photo-item {
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 1300 / 867;
}
.blog-photo-grid .photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-photo-grid .photo-item.full-width {
  grid-column: 1 / -1;
  aspect-ratio: 1300 / 867;
}
.blog-photo-grid .photo-item.full-width img {
  height: 100%;
}
@media (max-width: 768px) {
  .blog-photo-grid .photo-item.full-width img {
    height: 100%;
  }
}

/* ===== Trusted Platforms Section ===== */
.trusted-platforms-section {
  padding: 45px 0 65px;
  background: #faf9f7;
  border-top: 1px solid #e8e4de;
}

.trusted-platforms-section .section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--primary-color);
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.trusted-platforms-section .section-header p {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: var(--text-gray);
  letter-spacing: 1px;
}

.trusted-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.trusted-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 35px 20px 28px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.trusted-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  border-color: var(--secondary-color);
}

.trusted-icon {
  width: 69px;
  height: 69px;
  border-radius: 50%;
  background: #f5f3ef;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  transition: background 0.3s ease;
  overflow: hidden;
  flex-shrink: 0;
}

.trusted-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
}

.trusted-card:hover .trusted-icon {
  background: #efe9df;
}

.trusted-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-color);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0;
}

.trusted-stars {
  display: flex;
  gap: 3px;
  color: #f5a623;
  font-size: 14px;
}

.trusted-rating {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: var(--text-gray);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Trusted Platforms - Mobile */
@media (max-width: 968px) {
  .trusted-platforms-section {
    padding: 26px 0;
  }

  .trusted-platforms-section .section-header h2 {
    font-size: 22px;
    letter-spacing: 2px;
  }

  .trusted-platforms-section .section-header p {
    font-size: 12px;
    padding: 0 20px;
  }

  .trusted-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 0 20px;
  }

  .trusted-card {
    padding: 24px 14px 20px;
    border-radius: 10px;
  }

  .trusted-icon {
    width: 48px;
    height: 48px;
  }

  .trusted-icon img {
    width: 36px !important;
    height: 36px !important;
  }

  .trusted-card h4 {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .trusted-stars {
    font-size: 12px;
  }

  .trusted-rating {
    font-size: 11px;
  }
}

/* ===== Laptop Scale Down - 20% smaller on desktop/laptop ===== */
@media (min-width: 969px) {
  /* Reduce container max-width */
  .container {
    max-width: 1120px; /* 1400 * 0.8 */
    padding: 0 32px; /* 40 * 0.8 */
  }

  /* Section headers - smaller text */
  .section-header {
    margin-bottom: 56px; /* 70 * 0.8 */
  }
  .section-header h2 {
    font-size: 28px; /* ~35 * 0.8 */
  }
  .section-header p {
    font-size: 11.2px; /* 14 * 0.8 */
  }

  /* Header padding */
  .header .container {
    padding: 13px 32px;
  }
  .logo img {
    height: 52px; /* ~65 * 0.8 */
  }
  .nav-link {
    font-size: 9px; /* 11 * 0.8 */
    letter-spacing: 1.6px;
  }
  .nav-menu {
    gap: 28px; /* 35 * 0.8 */
  }

  /* Hero slider text */
  .slide-content h1 {
    font-size: 44px; /* ~55 * 0.8 */
  }
  .slide-content p {
    font-size: 14px;
  }

  /* Portfolio section */
  .portfolio-section {
    padding: 64px 0; /* 80 * 0.8 */
  }
  .portfolio-item h3 {
    font-size: 14px; /* 17 * 0.8 */
  }
  .portfolio-image {
    height: 280px; /* ~350 * 0.8 */
  }

  /* Films section */
  .film-item {
    max-width: 248px; /* 310 * 0.8 */
  }
  .film-thumbnail {
    height: 441px; /* 551 * 0.8 */
  }

  /* Statistics */
  .statistic-number {
    font-size: 45px; /* 56 * 0.8 */
  }
  .statistic-label {
    font-size: 11px; /* 14 * 0.8 */
  }

  /* Blog section */
  .blog-image {
    height: 240px; /* 300 * 0.8 */
  }
  .blog-content h3 {
    font-size: 15px;
  }
  .blog-content p {
    font-size: 11px;
  }

  /* Testimonials */
  .testimonial-content p {
    font-size: 12px;
    line-height: 1.7;
  }

  /* Booking section */
  .booking-section {
    padding: 64px 0;
  }
  .booking-form label {
    font-size: 11px;
  }
  .booking-form input,
  .booking-form textarea {
    font-size: 12px;
    padding: 10px 0;
  }

  /* Trusted platforms */
  .trusted-grid {
    max-width: 800px; /* 1000 * 0.8 */
  }
  .trusted-card {
    padding: 28px 16px 22px;
  }
  .trusted-icon {
    width: 55px;
    height: 55px;
  }
  .trusted-icon img {
    width: 38px;
    height: 38px;
  }

  /* Instagram */
  .instagram-item {
    height: 144px; /* 180 * 0.8 */
  }

  /* Footer */
  .footer {
    padding: 48px 0 20px;
  }
  .footer h3 {
    font-size: 11px;
  }
  .footer p, .footer a {
    font-size: 11px;
  }
  .footer-social a,
  .footer-social a i {
    font-size: 15px !important;
  }
  .footer-logo-circle img {
    height: 60px !important;
    width: 60px !important;
  }

  /* Info sidebar */
  .info-sidebar {
    width: 360px; /* ~450 * 0.8 */
  }

  /* Sections general padding */
  .films-section,
  .statistics-section,
  .blog-section,
  .testimonials-section,
  .instagram-section {
    padding: 56px 0;
  }
}

/* === 4K Display (2560px+): Text/Content 10% scale up === */
@media (min-width: 2500px) {
  /* Base & body text */
  body {
    font-size: 17.6px; /* 16px * 1.1 */
  }
  .header .container {
    padding: 13px 40px !important;
  }

  /* Navigation */
  .nav-link {
    font-size: 12px; /* 11px * 1.1 */
    letter-spacing: 2.2px;
  }
  .nav-link.book-now {
    padding: 11px 28px;
  }
  .info-btn span {
    font-size: 12px;
  }

  /* Hero slider text */
  .slide-content h1 {
    font-size: 53px; /* 48px * 1.1 */
  }
  .slide-content p {
    font-size: 20px; /* 18px * 1.1 */
  }

  /* Section headers */
  .section-header {
    font-size: 22px; /* 20px * 1.1 */
  }
  .section-header h2 {
    font-size: 35px; /* 32px * 1.1 */
  }
  .section-header h3 {
    font-size: 31px; /* 28px * 1.1 */
  }
  .section-header p {
    font-size: 14.3px; /* 13px * 1.1 */
  }

  /* Portfolio */
  .portfolio-category {
    font-size: 10px; /* 9px * 1.1 */
  }
  .portfolio-item h3 {
    font-size: 19px; /* 17px * 1.1 */
  }

  /* Film items */
  .film-item h3 {
    font-size: 18px; /* 16px * 1.1 */
  }

  /* Statistics */
  .statistic-number {
    font-size: 62px; /* 56px * 1.1 */
  }
  .statistic-label {
    font-size: 15.4px; /* 14px * 1.1 */
  }

  /* Testimonials - fixed height on 4K, 10% reduced spacing */
  .testimonials-carousel {
    min-height: 315px;
    max-height: 315px;
    overflow: hidden;
  }
  .testimonial-item {
    min-height: 288px;
    max-height: 288px;
    overflow: hidden;
  }
  .testimonial-content p {
    font-size: 19.8px; /* 18px * 1.1 */
  }
  .testimonial-author h4 {
    font-size: 17.6px; /* 16px * 1.1 */
  }
  .testimonial-nav {
    margin-top: 34px; /* 38px * 0.9 */
  }

  /* Blog items */
  .blog-content h3 {
    font-size: 20px; /* 18px * 1.1 */
  }
  .blog-content p,
  .blog-tag {
    font-size: 14.3px; /* 13px * 1.1 */
  }

  /* Booking form */
  .booking-section h2 {
    font-size: 35px;
  }
  .booking-section p {
    font-size: 15.4px;
  }

  /* Footer - match footer-logo p size (11.5px) */
  .footer a,
  .footer p {
    font-size: 12px !important;
  }
  .footer h3 {
    font-size: 14.3px;
  }

  /* Instagram section - 10% scale up */
  .instagram-section {
    padding: 66px 0; /* 60px * 1.1 */
  }
  .instagram-item {
    height: auto;
    aspect-ratio: 3 / 2; /* landscape orientation */
  }
  .instagram-grid {
    transform: scale(1.3);
    transform-origin: center top;
    margin-bottom: 140px; /* extra space to account for scaled size */
    gap: 11px;
  }
  .instagram-overlay i {
    font-size: 35px; /* 32px * 1.1 */
  }
  .btn-instagram {
    font-size: 13.2px; /* 12px * 1.1 */
    padding: 13px 33px; /* ~10% more */
  }

  /* Google reviews */
  .review-text {
    font-size: 15.4px;
  }

  /* Logo */
  .logo img {
    height: 58px; /* 53px * 1.1 */
  }

  /* Footer text same as footer-logo p */
  .footer-logo-circle img {
    height: 57px !important;
    width: 57px !important;
  }
  /* Photography & Pre-wedding photo grid 20% scale up */
  .photography-item {
    height: 456px; /* 480px * 0.95 */
  }
  .photography-grid {
    gap: 12px; /* 10px * 1.2 */
  }
  .photography-gallery-section .container {
    max-width: 1800px;
  }
  .footer-section > a {
    font-size: 13px !important;
    color: #2a2a2a !important;
  }
  .footer {
    padding: 30px 0 12px !important;
  }
  .footer-section > a i {
    font-size: 12px !important;
  }
  .footer-social a,
  .footer-social a i {
    font-size: 17px !important;
  }
  .footer-bottom,
  .footer-bottom p {
    font-size: 12px !important;
  }
  .footer-terms {
    font-size: 12px !important;
  }

  /* Home page video: 4 items visible, 40% scaled height (same ratio) */
  body.home-page .films-section .container {
    max-width: 1552px; /* 20% reduced */
  }
  body.home-page .film-item {
    min-width: calc(25% - 15px) !important;
    max-width: calc(25% - 15px) !important;
  }
  body.home-page .film-thumbnail {
    height: 494px !important; /* 20% reduced */
  }

  /* Home page form: 15% scale up */
  .booking-form {
    transform: scale(1.15);
    transform-origin: center top;
    margin-bottom: 50px;
  }

  /* Statistics section: match video section width */
  .statistics-section .container {
    max-width: 1552px;
  }
  .statistics-grid {
    gap: 60px; /* more space between items */
  }
}
