/* Shared Components */

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 999;
  transition: all 0.4s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 240, 0.9);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--f-heading-2);
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-dark);
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-family: var(--f-body-2);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.nav-links a:not(.nav-book-btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--c-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.nav-links a:not(.nav-book-btn):hover::after {
  transform: scaleX(1);
}

/* Book Shoot CTA Button in Navbar */
.nav-book-btn {
  background: #C49A45 !important;
  color: white !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  overflow: visible !important;
}

.nav-book-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(196, 154, 69, 0.45) !important;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--f-body-2);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.4s ease;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: var(--c-gold);
  transform: translateX(-50%) translateY(0);
  border-radius: 50%;
  z-index: -1;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn:hover::before {
  transform: translateX(-50%) translateY(-50%);
}

.btn-primary {
  background: var(--c-dark);
  color: var(--c-ivory);
  border: 1px solid var(--c-dark);
}

.btn-primary:hover {
  color: #fff;
  border-color: var(--c-gold);
}

.btn-outline {
  background: transparent;
  color: var(--c-dark);
  border: 1px solid var(--c-dark);
}

.btn-outline:hover {
  color: var(--c-dark);
}

/* Floating WhatsApp */
.wa-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  animation: pulse-wa 2s infinite;
  transition: transform 0.3s ease;
}

.wa-float:hover {
  transform: scale(1.1);
}

@keyframes pulse-wa {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #edb305;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.shutter-top,
.shutter-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  height: 50vh;
  background: #ffffff;
  z-index: 1;
}

.shutter-top {
  top: 0;
}

.shutter-bottom {
  bottom: 0;
}

.loader-logo {
  font-family: var(--f-heading-1);
  font-size: 1rem;
  color: var(--c-gold);
  z-index: 2;
  opacity: 0;
}

.progress-bar {
  width: 200px;
  height: 2px;
  background: rgba(0, 0, 0, 0.2);
  margin-top: 20px;
  z-index: 2;
  position: relative;
  overflow: hidden;
}

.progress-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: #000000;
}

/* Footer */
footer {
  background: var(--c-dark);
  color: var(--c-ivory);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-logo {
  font-family: var(--f-heading-2);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.footer-links h4 {
  color: var(--c-gold);
  margin-bottom: 1.5rem;
  font-family: var(--f-body-2);
}

.footer-links ul li {
  margin-bottom: 0.8rem;
}

.footer-links ul li a:hover {
  color: var(--c-gold);
}

.footer-bottom {
  text-align: center;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

/* ===========================
   HAMBURGER BUTTON
=========================== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 200;
  background: none;
  border: none;
  padding: 4px;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
  pointer-events: none;
}

.navbar.scrolled .hamburger span {
  background: var(--c-dark);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay backdrop */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

/* ===========================
   RESPONSIVE BREAKPOINTS
=========================== */

/* Large Laptop 1200px */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 5rem;
  }

  .hero-camera-container {
    width: 420px;
    height: 420px;
  }

  .container {
    padding: 0 1.5rem;
  }
}

/* Tablet / Small Laptop 992px */
@media (max-width: 992px) {

  /* Show hamburger */
  .hamburger {
    display: flex;
  }

  .nav-overlay {
    display: block;
  }

  /* Mobile nav panel — sits above overlay (z:140), links inside clickable */
  .nav-links {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--c-dark);
    padding: 5rem 2rem 2rem;
    gap: 0;
    z-index: 160;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
  }

  .nav-links.mobile-open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.05rem;
    color: white !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    display: block;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  .nav-book-btn {
    align-self: flex-start;
    margin-top: 1rem;
    padding: 0.6rem 1.4rem !important;
    border-bottom: none !important;
  }

  /* Hero — mobile: stack vertically, camera centered under buttons */
  .hero-container {
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 7rem 1.5rem 2rem !important;
    position: relative;
    min-height: 100vh;
    gap: 2.5rem;
  }

  .hero-content {
    padding-top: 40px !important;
    padding-right: 0 !important;
    max-width: 100%;
    text-align: center !important;
    z-index: 20;
    flex: unset;
  }

  .hero-title {
    font-size: 3.8rem !important;
    text-align: center !important;
  }

  .hero-title>div {
    justify-content: center !important;
  }

  .hero-cta {
    justify-content: center !important;
  }

  .cursive-subtitle {
    font-size: 2.2rem !important;
  }

  /* Camera centered under buttons */
  .hero-visual {
    display: flex !important;
    position: absolute !important;
    top: 500px !important;

    width: 100% !important;
    justify-content: center !important;
    height: auto !important;
    flex: unset !important;
    z-index: 15 !important;
    margin-top: 1rem;
  }

  .hero-camera-container {
    width: 260px !important;
    height: 260px !important;
  }

  .floating-polaroid {
    width: 70px !important;
    opacity: 0.75;
  }

  .pol-1 {
    top: 5% !important;
    right: 0% !important;
  }

  .pol-2 {
    bottom: 8% !important;
    right: -10% !important;
  }

  .pol-3 {
    top: 22% !important;
    left: -8% !important;
  }

  .rotating-ring {
    display: block !important;
  }

  .ring-2 {
    width: 112% !important;
    height: 112% !important;
  }

  .scroll-indicator {
    display: none;
  }

  /* Stats */
  .stats-grid {
    flex-direction: column;
    gap: 2.5rem;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  /* Map flow */
  .map-location {
    margin-bottom: 5rem;
  }

  /* Services grid */
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Pricing grid */
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Mobile 768px */
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  /* Typography */
  .hero-title {
    font-size: 3rem !important;
  }

  .cursive-subtitle {
    font-size: 1.8rem !important;
  }

  .subtext-desc {
    font-size: 0.95rem !important;
  }

  .award-text {
    font-size: 0.65rem !important;
  }

  /* Hero CTA buttons - stack */
  .hero-cta {
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.8rem !important;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
    text-align: center;
  }

  /* Camera - smaller on phone, centered under text */
  .hero-content {
    padding-top: 20px !important;
  }

  .hero-camera-container {
    width: 220px !important;
    height: 220px !important;
  }

  .hero-camera-img {

    width: 59% !important;
    z-index: 5 !important;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.8));
  }

  .floating-polaroid {
    width: 48px !important;
    opacity: 0.6;
  }

  .rotating-ring {
    display: block !important;
  }

  .ring-2 {
    width: 108% !important;
    height: 108% !important;
  }

  .hero-container {
    padding: 6rem 1rem 1.5rem !important;
  }

  /* Sections */
  .section {
    padding: 4rem 0;
  }

  /* Gallery masonry - 2 column */
  .masonry-grid {
    columns: 2 !important;
    gap: 1rem !important;
  }

  /* Fix wa-float position on mobile to prevent clipping */
  .wa-float {
    bottom: 80px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 25px;
  }

  /* Stats */
  .stats-grid {
    gap: 2rem;
  }

  .stat-text h4 {
    font-size: 1.8rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
  }

  /* Map flow timeline - single column */
  .map-line-bg,
  .map-line-progress {
    left: 20px !important;
  }

  .map-marker {
    left: 20px !important;
  }

  .map-location {
    flex-direction: column !important;
    align-items: flex-end !important;
    margin-bottom: 3.5rem;
  }

  .map-content-box {
    width: calc(100% - 55px) !important;
  }

  .map-empty-box {
    display: none !important;
  }

  .map-image img {
    height: 220px !important;
  }

  .map-text {
    position: relative !important;
    top: auto !important;
    transform: none !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    text-align: left !important;
    border-right: none !important;
    border-left: 4px solid var(--c-gold) !important;
    margin-top: -20px;
  }

  /* Film strip */
  .film-frame-wrapper {
    width: 280px;
    height: 200px;
  }

  /* Page headers */
  .page-header {
    padding: 8rem 1rem 3rem;
  }

  .page-header h1 {
    font-size: 2.5rem !important;
  }

  /* Portfolio map */
  .map-text h3 {
    font-size: 1.4rem;
  }

  /* Pricing & Testimonials */
  .pricing-grid {
    grid-template-columns: 1fr !important;
  }

  .testimonial-swiper .swiper-slide {
    padding: 0 0.5rem;
  }

  /* About section */
  .about-grid {
    grid-template-columns: 1fr !important;
  }

  /* Services section */
  .services-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Small Mobile 480px */
@media (max-width: 480px) {
  html {
    font-size: 13px;
  }

  .hero-title {
    font-size: 2.5rem !important;
  }

  .cursive-subtitle {
    font-size: 1.5rem !important;
  }

  .container {
    padding: 0 1rem;
  }

  .stats-grid {
    gap: 1.5rem;
  }

  .stat-icon {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
  }

  .stat-text h4 {
    font-size: 1.6rem;
  }

  .nav-links {
    width: 90vw;
  }

  .film-frame-wrapper {
    width: 230px;
    height: 170px;
  }

  .hero-camera-container {
    width: 180px !important;
    height: 180px !important;
  }

  .page-header h1 {
    font-size: 2rem !important;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }

  .pkg-price {
    font-size: 2.2rem;
  }
}

/* Body lock when nav is open */
body.nav-open {
  overflow: hidden;
}

/* ===========================
   PRICING & TESTIMONIALS (Moved to Home)
=========================== */

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.4s, box-shadow 0.4s;
  position: relative;
  overflow: hidden;
}

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

.pricing-card.popular {
  border: 2px solid var(--c-gold);
}

.popular-badge {
  position: absolute;
  top: 1rem;
  right: -2rem;
  background: var(--c-gold);
  color: white;
  padding: 0.3rem 3rem;
  transform: rotate(45deg);
  font-size: 0.8rem;
  font-family: var(--f-body-2);
  font-weight: 600;
}

.pkg-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pkg-price {
  font-size: 3rem;
  font-family: var(--f-heading-1);
  color: var(--c-gold);
  margin-bottom: 2rem;
}

.pkg-price span {
  font-size: 1rem;
  color: #666;
  font-family: var(--f-body-2);
}

.pkg-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.pkg-features li {
  margin-bottom: 1rem;
  font-family: var(--f-body-2);
  color: #444;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.pkg-features li i {
  color: var(--c-gold);
  margin-top: 4px;
}

/* Testimonials */
.testimonial-swiper {
  padding: 3rem 0;
}

.review-card {
  background: white;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.stars {
  color: var(--c-gold);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.review-text {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 2rem;
  color: #555;
}

.client-name {
  font-family: var(--f-heading-1);
  font-size: 1.5rem;
  color: var(--c-dark);
}

/* ===========================
   LEGAL PAGES & GLASSMORPHISM
=========================== */
.glass-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c-gold), var(--c-rosegold));
}

.legal-content h2 {
  font-family: var(--f-heading-1);
  font-size: 2.2rem;
  color: var(--c-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.legal-content h3 {
  font-family: var(--f-heading-1);
  font-size: 1.6rem;
  color: var(--c-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content p {
  font-family: var(--f-body-1);
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.2rem;
}

.legal-content ul,
.legal-content ol {
  font-family: var(--f-body-1);
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content ul li {
  list-style-type: disc;
}

.legal-content ol li {
  list-style-type: decimal;
}

.legal-content strong {
  color: var(--c-dark);
  font-weight: 600;
}

@media (max-width: 768px) {
  .glass-card {
    padding: 2rem 1.5rem;
  }
}