:root {
  --gold: #C9A96E;
  --gold-dark: #B8944E;
  --gold-light: #F0E4C8;
  --ivory: #FFF8F0;
  --beige: #F5F0EB;
  --beige-dark: #E8DCC8;
  --charcoal: #1E1E1E;
  --charcoal-light: #2C2C2C;
  --charcoal-mid: #3A3A3A;
  --soft-white: #FEFCF3;
  --white: #FFFFFF;
  --black: #0D0D0D;
  --whatsapp: #25D366;
  --whatsapp-dark: #1DA851;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Cormorant Garamond', Georgia, serif;
  --font-accent: 'Montserrat', 'Helvetica Neue', sans-serif;
  --transition: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.15);
  --radius: 12px;
  --radius-sm: 8px;
  --max-width: 1280px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--ivory);
  overflow-x: hidden;
  line-height: 1.7;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 120px 0;
  position: relative;
}

.section-label {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 24px;
}

.section-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--charcoal-mid);
  max-width: 600px;
  margin: 0 auto 60px;
  font-weight: 300;
  line-height: 1.8;
}

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

.text-gold {
  color: var(--gold);
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(30, 30, 30, 0.97);
  padding: 14px 0;
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.15);
}

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

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--white);
  font-weight: 400;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo span {
  color: var(--gold);
}

.nav-logo-icon {
  width: 32px;
  height: 32px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  padding: 4px 0;
  font-weight: 400;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links .nav-cta {
  background: var(--gold);
  color: var(--charcoal);
  padding: 10px 28px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 1px;
}

.nav-links .nav-cta::after {
  display: none;
}

.nav-links .nav-cta:hover {
  background: var(--gold-dark);
  color: var(--white);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease;
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(13, 13, 13, 0.75) 0%,
      rgba(13, 13, 13, 0.4) 50%,
      rgba(13, 13, 13, 0.75) 100%);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(13, 13, 13, 0.7) 0%,
      rgba(13, 13, 13, 0.3) 50%,
      rgba(13, 13, 13, 0.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 900px;
  padding: 0 24px;
  animation: heroFadeIn 1.8s ease forwards;
}

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

.hero-tagline {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 500;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero-title .gold-text {
  color: var(--gold);
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  margin-bottom: 48px;
  line-height: 1.8;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 16px 40px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
}

.btn-primary:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(201, 169, 110, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-outline-light {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline-light:hover {
  background: var(--gold);
  color: var(--charcoal);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-accent);
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.hero-pagination {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-pagination button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.hero-pagination button.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.3);
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 200px;
  height: 200px;
  border: 2px solid var(--gold-light);
  border-radius: var(--radius);
  z-index: -1;
}

.about-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--gold);
  color: var(--charcoal);
  padding: 20px 28px;
  border-radius: var(--radius);
  text-align: center;
  font-family: var(--font-heading);
  box-shadow: var(--shadow-hover);
}

.about-badge .number {
  font-size: 2.2rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.about-badge .label {
  font-size: 0.75rem;
  font-family: var(--font-accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.about-text .section-label {
  text-align: left;
}

.about-text p {
  font-size: 1.1rem;
  color: var(--charcoal-mid);
  margin-bottom: 20px;
  line-height: 1.9;
}

.about-signature {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--gold-dark);
  font-style: italic;
  margin-top: 32px;
  position: relative;
  padding-top: 24px;
}

.about-signature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--gold);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
  text-align: center;
}

.about-stat .number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--gold);
  font-weight: 600;
  display: block;
  line-height: 1;
}

.about-stat .label {
  font-size: 0.8rem;
  color: var(--charcoal-mid);
  font-family: var(--font-accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ===== PORTFOLIO ===== */
.portfolio-filter {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.portfolio-filter button {
  background: none;
  border: none;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--charcoal-mid);
  cursor: pointer;
  padding: 8px 4px;
  position: relative;
  transition: var(--transition);
  font-weight: 500;
}

.portfolio-filter button::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.portfolio-filter button:hover,
.portfolio-filter button.active {
  color: var(--charcoal);
}

.portfolio-filter button.active::after {
  width: 100%;
}

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

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  aspect-ratio: 3/4;
}

.portfolio-item.wide {
  grid-column: span 2;
  aspect-ratio: 3/2;
}

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

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

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

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(13, 13, 13, 0.8), transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
}

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

.portfolio-overlay h3 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 4px;
}

.portfolio-overlay span {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ===== WEDDING FILMS ===== */
.films-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.film-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
}

.film-card.featured {
  grid-column: span 2;
  aspect-ratio: 21/9;
}

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

.film-card:hover img {
  transform: scale(1.05);
}

.film-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(201, 169, 110, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 2;
}

.film-play::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 20px solid var(--charcoal);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
}

.film-card:hover .film-play {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--gold);
}

.film-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(13, 13, 13, 0.9), transparent);
  z-index: 2;
}

.film-info h3 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 400;
}

.film-info span {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
}

.film-duration {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

/* ===== PRE-WEDDING ===== */
.pre-wedding-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.pre-wedding-item {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) - 4px);
  aspect-ratio: 1;
  cursor: pointer;
}

.pre-wedding-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.pre-wedding-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.pre-wedding-item:hover img {
  transform: scale(1.06);
}

.pre-wedding-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 13, 13, 0.4);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.pre-wedding-item:hover .overlay {
  opacity: 1;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--white);
  padding: 50px 40px;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(201, 169, 110, 0.1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.8rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gold);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.service-card p {
  color: var(--charcoal-mid);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-card .service-link {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card .service-link:hover {
  color: var(--gold-dark);
  gap: 10px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--charcoal);
  color: var(--white);
}

.testimonials .section-title {
  color: var(--white);
}

.testimonials .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.testimonial-carousel {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-track {
  overflow: hidden;
}

.testimonial-slide {
  padding: 20px;
}

.testimonial-card {
  text-align: center;
  padding: 40px;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 4px;
  margin-bottom: 24px;
}

.testimonial-text {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  margin-bottom: 32px;
  position: relative;
}

.testimonial-text::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--gold);
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  opacity: 0.4;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.testimonial-author-info h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 400;
}

.testimonial-author-info span {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
}

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

.testimonial-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.testimonial-nav button:hover {
  border-color: var(--gold);
  color: var(--gold);
}

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

.testimonial-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.testimonial-dots button.active {
  background: var(--gold);
  width: 30px;
  border-radius: 4px;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 50px 40px;
  text-align: center;
  border: 1px solid rgba(201, 169, 110, 0.1);
  transition: var(--transition);
  position: relative;
}

.pricing-card.featured {
  background: var(--charcoal);
  color: var(--white);
  transform: scale(1.05);
  border-color: var(--gold);
  box-shadow: 0 20px 60px rgba(201, 169, 110, 0.15);
}

.pricing-card.featured .pricing-name {
  color: var(--white);
}

.pricing-card.featured .pricing-desc {
  color: rgba(255, 255, 255, 0.6);
}

.pricing-card.featured .pricing-features li {
  color: rgba(255, 255, 255, 0.75);
}

.pricing-card.featured .pricing-features li::before {
  color: var(--gold);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-accent);
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 24px;
  border-radius: 50px;
  font-weight: 600;
  white-space: nowrap;
}

.pricing-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 0.95rem;
  color: var(--charcoal-mid);
  margin-bottom: 24px;
}

.pricing-amount {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.pricing-amount .currency {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  vertical-align: top;
  font-weight: 500;
}

.pricing-amount .amount {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1;
  color: var(--gold);
}

.pricing-amount .period {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  color: var(--charcoal-mid);
  display: block;
  margin-top: 4px;
  letter-spacing: 1px;
}

.pricing-features {
  text-align: left;
  margin-bottom: 36px;
}

.pricing-features li {
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--charcoal-mid);
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
}

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

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(201, 169, 110, 0.08);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.blog-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

.blog-card:hover .blog-card-image img {
  transform: scale(1.06);
}

.blog-card-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-accent);
  font-size: 0.55rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 600;
}

.blog-card-body {
  padding: 28px;
}

.blog-card-date {
  font-family: var(--font-accent);
  font-size: 0.6rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
}

.blog-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card p {
  color: var(--charcoal-mid);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.blog-card .blog-read {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-card .blog-read:hover {
  gap: 10px;
  color: var(--gold-dark);
}

/* ===== CONTACT ===== */
.contact-section {
  background: var(--charcoal);
  color: var(--white);
}

.contact-section .section-title {
  color: var(--white);
}

.contact-section .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  padding-right: 40px;
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 16px;
}

.contact-info > p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.8;
}

.contact-detail {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
}

.contact-detail-text h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 4px;
}

.contact-detail-text p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.contact-social {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}

.contact-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  transition: var(--transition);
}

.contact-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.contact-form {
  background: rgba(255, 255, 255, 0.03);
  padding: 50px;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 169, 110, 0.1);
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.form-group select option {
  color: var(--charcoal);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 18px 40px;
  font-size: 0.75rem;
  background: var(--gold);
  color: var(--charcoal);
}

.btn-submit:hover {
  background: var(--gold-dark);
  color: var(--white);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 320px;
}

.footer h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
  font-family: var(--font-accent);
  letter-spacing: 0.5px;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
  font-family: var(--font-accent);
  letter-spacing: 0.5px;
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

/* ===== PARALLAX DIVIDER ===== */
.parallax-divider {
  height: 400px;
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.parallax-divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 13, 13, 0.6);
}

.parallax-divider .content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 0 24px;
}

.parallax-divider h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 16px;
}

.parallax-divider p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
}

/* ===== LIGHTBOX / MODAL ===== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 13, 13, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border-radius: 50%;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-image img {
    height: 450px;
  }

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

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

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

  .pricing-card.featured {
    transform: scale(1.02);
  }

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

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

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

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

  .film-card.featured {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: rgba(30, 30, 30, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    transition: var(--transition);
  }

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

  .nav-toggle {
    display: flex;
  }

  .section {
    padding: 80px 0;
  }

  .hero-title {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .hero-pagination {
    right: 20px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

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

  .services-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }

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

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

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

  .contact-form {
    padding: 30px;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .about-stat .number {
    font-size: 2rem;
  }

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

  .pre-wedding-item:nth-child(1) {
    grid-column: span 2;
  }

  .parallax-divider {
    height: 300px;
    background-attachment: scroll;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}

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

  .portfolio-item.wide {
    grid-column: span 1;
  }

  .about-image img {
    height: 300px;
  }

  .about-badge {
    right: 10px;
    bottom: 10px;
    padding: 14px 20px;
  }

  .about-badge .number {
    font-size: 1.6rem;
  }

  .pre-wedding-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-card {
    padding: 20px 10px;
  }
}

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: var(--transition);
}

.whatsapp-float .whatsapp-tooltip {
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.5px;
  padding: 10px 18px;
  border-radius: 50px;
  opacity: 0;
  transform: translateX(20px);
  transition: var(--transition);
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-float .whatsapp-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: whatsappPulse 2s infinite;
  position: relative;
}

.whatsapp-float .whatsapp-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

.whatsapp-float:hover .whatsapp-icon {
  transform: scale(1.08);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.55);
  animation: none;
}

@keyframes whatsappPulse {
  0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 35px rgba(37, 211, 102, 0.65); }
  100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

.whatsapp-float .whatsapp-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  background: #ff4444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  color: var(--white);
  font-family: var(--font-accent);
  font-weight: 700;
  border: 2px solid var(--white);
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float .whatsapp-icon {
    width: 52px;
    height: 52px;
  }

  .whatsapp-float .whatsapp-icon svg {
    width: 26px;
    height: 26px;
  }

  .whatsapp-float .whatsapp-tooltip {
    display: none;
  }
}

/* ===== DECORATIVE GOLD DIVIDER ===== */
.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 20px auto 32px;
  max-width: 300px;
}

.gold-divider .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.gold-divider .diamond {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ===== SUBTLE BG PATTERN ===== */
.bg-pattern {
  position: relative;
}

.bg-pattern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201, 169, 110, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(201, 169, 110, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* ===== CORNER ORNAMENTS ===== */
.corner-ornament {
  position: relative;
}

.corner-ornament::before,
.corner-ornament::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  border-color: var(--gold-light);
  border-style: solid;
  opacity: 0.5;
}

.corner-ornament::before {
  top: 10px;
  left: 10px;
  border-width: 1px 0 0 1px;
}

.corner-ornament::after {
  bottom: 10px;
  right: 10px;
  border-width: 0 1px 1px 0;
}

/* ===== FLOATING HOVER GLOW ===== */
.glow-hover {
  position: relative;
  overflow: hidden;
}

.glow-hover::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.glow-hover:hover::after {
  opacity: 1;
}

/* ===== CONTACT FORM ENHANCEMENTS ===== */
.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

.contact-form .form-group input:hover,
.contact-form .form-group select:hover,
.contact-form .form-group textarea:hover {
  border-color: rgba(201, 169, 110, 0.4);
}

/* ===== HERO GOLD OVERLAY ENHANCEMENT ===== */
.hero-content::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  opacity: 0.5;
}

/* ===== SECTION DECORATIVE TOP LINE ===== */
.section::before {
  display: none;
}

.section-title-wrapper {
  position: relative;
  display: inline-block;
}

.section-title-wrapper::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--gold);
}

/* ===== PRICING CARD GOLD EDGE ===== */
.pricing-card {
  position: relative;
  overflow: hidden;
}

.pricing-card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(135deg, transparent 30%, rgba(201, 169, 110, 0.2), transparent 70%);
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

.pricing-card:hover::after {
  opacity: 1;
}

.pricing-card.featured::after {
  background: linear-gradient(135deg, transparent 20%, rgba(201, 169, 110, 0.35), transparent 80%);
  opacity: 1;
}

/* ===== SERVICE CARD ENHANCEMENT ===== */
.service-card .service-icon::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.2);
  animation: spin 8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.service-card .service-icon {
  position: relative;
}

/* ===== TESTIMONIAL GOLD QUOTE MARK ===== */
.testimonial-text::before {
  font-size: 5rem;
  top: -40px;
  opacity: 0.15;
}

/* ===== BLOG CARD IMAGE OVERLAY ===== */
.blog-card-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 60%, rgba(13, 13, 13, 0.3));
  pointer-events: none;
}

/* ===== FOOTER ENHANCEMENTS ===== */
.footer {
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.3;
}

/* ===== THANK YOU MODAL ===== */
.thankyou-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 13, 13, 0.85);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(8px);
}

.thankyou-modal.active {
  display: flex;
}

.thankyou-content {
  background: var(--ivory);
  padding: 60px 50px 50px;
  border-radius: var(--radius);
  text-align: center;
  max-width: 480px;
  width: 100%;
  position: relative;
  animation: modalPop 0.5s ease;
}

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

.thankyou-content .checkmark {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
  color: var(--charcoal);
}

.thankyou-content h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.thankyou-content p {
  color: var(--charcoal-mid);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.thankyou-content .btn {
  background: var(--gold);
  color: var(--charcoal);
}

.thankyou-content .btn:hover {
  background: var(--gold-dark);
  color: var(--white);
}

.thankyou-close-top {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--charcoal-mid);
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.thankyou-close-top:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--charcoal);
}
