/* ===== COLOUR SYSTEM ===== */
:root {
  --black: #0B0B0B;
  --ivory: #F5F1EB;
  --grey: #B7B7B7;
  --gold: #C6A24D;
}
html, body {
  overflow-x: hidden;
}
/* ===== NAVBAR ===== */
.luxury-navbar {
  background: rgba(11, 11, 11, 0.95);
  padding: 14px 0;
  backdrop-filter: blur(6px);
}

/* BRAND */
.luxury-brand {
  text-decoration: none;
}

.brand-logo {
  height: 42px;
  margin-right: 10px;
}

.brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: #F5F1EB;
  letter-spacing: 0.4px;
}

/* LINKS */
.luxury-link {
  color: #B7B7B7 !important;
  font-size: 14px;
  margin: 0 12px;
  transition: color 0.3s ease;
}

.luxury-link:hover {
  color: #F5F1EB !important;
}

/* CTA BUTTON */
.luxury-btn {
  border: 1px solid #C6A24D;
  color: #F5F1EB;
  background: transparent;
  padding: 8px 22px;
  font-size: 13px;
  letter-spacing: 0.4px;
  transition: all 0.3s ease;
}

.luxury-btn:hover {
  background: #C6A24D;
  color: #0B0B0B;
}

/* TOGGLER */
.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* MOBILE */
@media (max-width: 991px) {
  .brand-text {
    font-size: 20px;
  }

  .luxury-link {
    margin: 10px 0;
  }
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;              /* REQUIRED */
  min-height: 100vh;
  min-height: 100svh;              /* MOBILE FIX */
  width: 100%;
  background-image: url("/uploads/portfolio/original/portfolio_69510a3fcb9974.48592952.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #F5F1EB;
  overflow: hidden;
}


/* Cinematic dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 11, 11, 0.65);
  z-index: 1;
}
.hero-section .container {
  position: relative;
  z-index: 2;
}
html, body {
  height: 100%;
}


/* ===== TEXT ===== */
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #B7B7B7;
  margin-bottom: 35px;
  max-width: 480px;
}

/* ===== BUTTONS ===== */
.hero-buttons .luxury-btn {
  border: 1px solid #C6A24D;
  color: #0B0B0B;
  background: #C6A24D;
  padding: 10px 26px;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: 0.3s ease;
}

.hero-buttons .luxury-btn:hover {
  background: transparent;
  color: #F5F1EB;
}

.luxury-btn-outline {
  border: 1px solid #C6A24D;
  color: #F5F1EB;
  background: transparent;
  padding: 10px 26px;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: 0.3s ease;
}

.luxury-btn-outline:hover {
  background: #C6A24D;
  color: #0B0B0B;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-title {
    font-size: 38px;
  }

  .hero-subtitle {
    font-size: 15px;
  }
}

/* ===============================
   WEDDING AFFAIRS VIDEO HERO
================================ */

.wa-video-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #0b0b0b;
  overflow: hidden;
}

/* Full coverage video */
.wa-video-hero .video-js {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Remove controls for hero */
.wa-video-hero .vjs-control-bar {
  display: none;
}

/* Overlay */
.wa-video-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.75)
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  z-index: 2;
}

.wa-video-overlay h1 {
  font-size: 3.2rem;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.wa-video-overlay p {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 40px;
}

/* ===============================
   LUXURY PLAY BUTTON
================================ */

.wa-play-btn {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid #c6a24d;
  background: transparent;
  cursor: pointer;
  position: relative;
  animation: pulseGold 2.5s infinite;
}

.wa-play-btn span {
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 22px solid #c6a24d;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
}

/* Gold pulse animation */
@keyframes pulseGold {
  0% {
    box-shadow: 0 0 0 0 rgba(198,162,77,0.6);
  }
  70% {
    box-shadow: 0 0 0 25px rgba(198,162,77,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(198,162,77,0);
  }
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
  .wa-video-hero {
    height: 75vh;
  }

  .wa-video-overlay h1 {
    font-size: 2.2rem;
  }

  .wa-play-btn {
    width: 70px;
    height: 70px;
  }
}


/* ===============================
   LUXURY PLAY BUTTON
================================ */

.wa-play-btn {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid #c6a24d;
  background: transparent;
  cursor: pointer;
  position: relative;
  animation: pulseGold 2.5s infinite;
}

.wa-play-btn span {
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 22px solid #c6a24d;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
}

/* Gold pulse animation */
@keyframes pulseGold {
  0% {
    box-shadow: 0 0 0 0 rgba(198,162,77,0.6);
  }
  70% {
    box-shadow: 0 0 0 25px rgba(198,162,77,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(198,162,77,0);
  }
}

/* ===============================
   REPLAY BUTTON (LUXURY)
================================ */

.wa-replay-btn {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  border: 1.5px solid #c6a24d;
  color: #c6a24d;
  font-size: 26px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
  z-index: 5;
}

.wa-replay-btn:hover {
  background: #c6a24d;
  color: #000;
  transform: rotate(90deg) scale(1.05);
}

/* Soft fade-in */
.wa-replay-btn.show {
  display: flex;
  animation: fadeInReplay 0.6s ease forwards;
}

@keyframes fadeInReplay {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .wa-replay-btn {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}



/* ===== GOLD DIVIDER ===== */
.journey-divider {
  width: 80px;
  height: 1px;
  background: #C6A24D;
  margin: 80px auto 50px;
  opacity: 0.85;
}

/* ===== EXPERIENCE SECTION ===== */
.experience-section {
  background: #0B0B0B;
  color: #F5F1EB;
}

/* LEFT CONTENT */
.experience-content {
  padding: 80px 70px;
}

.experience-title {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  line-height: 1.15;
  margin-bottom: 30px;
  color: #F5F1EB;
}

.experience-text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #B7B7B7;
  max-width: 520px;
  margin-bottom: 18px;
}

/* CARDS */
.experience-card {
  background: rgba(255, 255, 255, 0.06);
  padding: 22px;
  border-radius: 6px;
  height: 100%;
  transition: transform 0.3s ease;
}

.experience-card h5 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  margin-bottom: 8px;
  color: #F5F1EB;
}

.experience-card p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #B7B7B7;
  margin: 0;
}

.experience-card.wide {
  background: rgba(255, 255, 255, 0.08);
}

.experience-card:hover {
  transform: translateY(-4px);
}

/* RIGHT IMAGE */
.experience-image {
  background: url("https://images.unsplash.com/photo-1523438885200-e635ba2c371e?auto=format&fit=crop&w=1000&q=80")
              center center / cover no-repeat;
  min-height: 100%;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .experience-content {
    padding: 60px 30px;
  }

  .experience-title {
    font-size: 40px;
  }

  .experience-image {
    min-height: 400px;
  }
}

/* ===== JOURNEY SECTION ===== */
.journey-section {
  background: #0B0B0B;
  color: #F5F1EB;
}

/* LEFT CONTENT */
.journey-content {
  padding: 90px 80px;
}

.journey-heading {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 25px;
  color: #F5F1EB;
}

.journey-text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #B7B7B7;
  max-width: 520px;
  margin-bottom: 18px;
}

/* RIGHT IMAGE */
.journey-image {
  background: url("https://images.unsplash.com/photo-1606800052052-a08af7148866?auto=format&fit=crop&w=1200&q=80")
              center center / cover no-repeat;
  min-height: 520px;
}

/* STATS */
.journey-stats {
  padding: 70px 30px 90px;
}

.stat-item h2 {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  margin-bottom: 8px;
  color: #F5F1EB;
}

.stat-item p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #B7B7B7;
  line-height: 1.5;
}

.stat-item span {
  font-size: 13px;
  color: #8f8f8f;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .journey-content {
    padding: 60px 30px;
  }

  .journey-image {
    min-height: 360px;
  }

  .stat-item h2 {
    font-size: 36px;
  }
}
/* ===== FADE UP ANIMATION ===== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===== DARK MODE TIMELINE CARD ===== */
.modern-card {
  background: rgba(20, 20, 20, 0.95);
  color: #F5F1EB;
  border-radius: 16px;
  padding: 70px 26px 34px; /* more top space */
  text-align: center;
  position: relative;
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
  transition: transform 0.4s ease;
}

.modern-card:hover {
  transform: translateY(-8px);
}
/* ALLOW AVATAR OVERFLOW */
.timeline-carousel .owl-stage-outer {
  overflow: visible;
}


/* AVATAR ICON */
/* AVATAR */
.timeline-avatar {
  width: 84px;
  height: 84px;
  background: #0B0B0B;
  border-radius: 50%;
  position: absolute;
  top: -42px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
  border: 1px solid rgba(198,162,77,0.35);
}

.timeline-avatar img {
  width: 34px;
  height: 34px;
  filter: invert(1); /* makes SVG white */
}


/* TEXT */
.modern-card h5 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #F5F1EB;
}

.timeline-role {
  font-size: 13px;
  color: #B7B7B7;
  display: block;
  margin-bottom: 14px;
}

.modern-card p {
  font-size: 14px;
  color: #B7B7B7;
  line-height: 1.65;
}

/* SOCIAL ICONS */
.timeline-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.timeline-social img {
  width: 30px;
  height: 30px;
  padding: 7px;
  border-radius: 50%;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.08);
  filter: invert(1);
}


/* FEATURED */
.package-card.featured {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(198, 162, 77, 0.35);
}

/* FOOTNOTE */
.packages-footnote {
  margin-top: 50px;
  font-size: 14px;
  color: #B7B7B7;
}

.packages-footnote span {
  color: #C6A24D;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .packages-title {
    font-size: 34px;
  }
}

/* PORTFOLIO SECTION */
.portfolio-section {
  padding: 100px 0;
  background:
    linear-gradient(rgba(11,11,11,0.85), rgba(11,11,11,0.9)),
    url("https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* HEADER */
.portfolio-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: #F5F1EB;
}

.portfolio-header p {
  color: #B7B7B7;
  max-width: 600px;
}

/* FILTERS */
.filter-btn {
  background: transparent;
  border: 1px solid #333;
  color: #B7B7B7;
  padding: 8px 18px;
  margin: 0 6px;
  font-size: 14px;
  transition: 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  border-color: #C6A24D;
  color: #F5F1EB;
}

/* GRID ITEMS */
.portfolio-item {
  overflow: hidden;
  border-radius: 6px;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.6s ease;
}

.portfolio-item:hover img {
  transform: scale(1.06);
}

/* GOLD HOVER BORDER */
.gold-hover {
  position: relative;
}

.gold-hover::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid #C6A24D;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none; /* ✅ THIS FIXES EVERYTHING */
}


.gold-hover:hover::after {
  opacity: 0.8;
}

/* MOBILE */
@media (max-width: 575px) {
  .portfolio-section {
    background-attachment: scroll;
  }
}

/* ===== SERVICES SECTION ===== */
.services-section {
  background: #0B0B0B;
  padding: 100px 0;
  color: #F5F1EB;
}

/* HEADER */
.services-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  margin-bottom: 12px;
}

.services-header p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #B7B7B7;
  max-width: 720px;
}

/* MAIN SERVICES */
.services-main h4 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #F5F1EB;
}

.services-main p {
  font-size: 14px;
  color: #B7B7B7;
  line-height: 1.6;
}

/* DIVIDER */
.services-divider {
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 50px 0;
}

/* ADDITIONAL SERVICES */
.services-additional ul {
  list-style: none;
  padding: 0;
}

.services-additional li {
  margin-bottom: 20px;
  font-size: 14px;
  color: #B7B7B7;
}

.services-additional strong {
  color: #F5F1EB;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .services-header h2 {
    font-size: 32px;
  }

  .services-main > div {
    margin-bottom: 30px;
  }
}

/* ===== PROMISE SECTION ===== */
.promise-section {
  background: #0B0B0B;
  padding: 100px 0;
  color: #F5F1EB;
}

/* TITLES */
.promise-title {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  margin-bottom: 8px;
}

.promise-highlight {
  font-size: 20px;
  font-weight: 500;
  color: #C6A24D;
  margin-bottom: 20px;
}

/* TEXT */
.promise-text {
  font-size: 15px;
  color: #B7B7B7;
  margin-bottom: 14px;
  max-width: 520px;
}

/* IMAGE */
.promise-image {
  width: 100%;
  height: 360px;
  background: url("/uploads/portfolio/original/portfolio_695f8d5504e550.94605508.jpeg")
              center / cover no-repeat;
  border-radius: 8px;
}

/* TIMELINE */
.promise-timeline {
  margin-top: 70px;
}

.timeline-step h5 {
  font-size: 16px;
  margin: 12px 0 6px;
}

.timeline-step p {
  font-size: 14px;
  color: #B7B7B7;
}

.step-icon {
  font-size: 22px;
  color: #C6A24D;
}

/* NOTE */
.promise-note {
  margin-top: 50px;
  padding: 18px 22px;
  border-left: 2px solid #C6A24D;
  background: rgba(255,255,255,0.04);
}

.promise-note p {
  font-size: 14px;
  color: #B7B7B7;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .promise-title {
    font-size: 30px;
  }

  .promise-image {
    height: 280px;
  }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  background: #0B0B0B;
  padding: 100px 0;
  color: #F5F1EB;
}

/* HEADER */
.testimonials-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  margin-bottom: 10px;
}

.testimonials-header p {
  font-size: 15px;
  color: #B7B7B7;
  max-width: 700px;
  margin: 0 auto;
}

/* CARD */
.testimonial-card {
  background: rgba(255,255,255,0.05);
  padding: 30px 26px;
  border-radius: 8px;
  height: 100%;
}

.testimonial-card.featured {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(198,162,77,0.35);
}

/* TEXT */
.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: #B7B7B7;
  margin-bottom: 22px;
  font-style: italic;
}

/* AUTHOR */
.testimonial-author strong {
  color: #F5F1EB;
  font-weight: 500;
}

.testimonial-author span {
  font-size: 13px;
  color: #8f8f8f;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .testimonials-header h2 {
    font-size: 32px;
  }
}

/* ===== CTA SECTION ===== */
.cta-section {
  background:
    linear-gradient(rgba(11,11,11,0.9), rgba(11,11,11,0.95)),
    url("https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
  padding: 120px 0;
  color: #F5F1EB;
}

/* TITLE */
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 16px;
}

/* TEXT */
.cta-text {
  font-size: 16px;
  color: #B7B7B7;
  max-width: 640px;
  margin: 0 auto;
}

/* BUTTONS */
.cta-btn-primary {
  background: transparent;
  border: 1px solid #C6A24D;
  color: #F5F1EB;
  padding: 12px 28px;
  font-size: 14px;
  letter-spacing: 0.4px;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.cta-btn-primary:hover {
  background: #C6A24D;
  color: #0B0B0B;
}

.cta-btn-outline {
  background: transparent;
  border: 1px solid #444;
  color: #B7B7B7;
  padding: 12px 26px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.cta-btn-outline:hover {
  border-color: #C6A24D;
  color: #F5F1EB;
}

/* NOTE */
.cta-note {
  font-size: 13px;
  color: #8f8f8f;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cta-title {
    font-size: 32px;
  }

  .cta-buttons a {
    display: block;
    margin: 10px auto;
    width: fit-content;
  }
}

/* ===== ENQUIRY SECTION ===== */
.enquiry-section {
  background: #0B0B0B;
  padding: 100px 0;
  color: #F5F1EB;
}

/* HEADER */
.enquiry-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  margin-bottom: 10px;
}

.enquiry-header p {
  font-size: 15px;
  color: #B7B7B7;
  max-width: 520px;
  margin: 0 auto;
}

/* INPUTS */
.luxury-input {
  background: transparent;
  border: 1px solid #333;
  color: #F5F1EB;
  padding: 12px 14px;
  font-size: 14px;
  border-radius: 4px;
}

.luxury-input::placeholder {
  color: #777;
}

.luxury-input:focus {
  background: transparent;
  border-color: #C6A24D;
  box-shadow: none;
  color: #F5F1EB;
}

/* BUTTON */
.enquiry-btn {
  background: transparent;
  border: 1px solid #C6A24D;
  color: #F5F1EB;
  padding: 12px 34px;
  font-size: 14px;
  letter-spacing: 0.4px;
  transition: all 0.3s ease;
}

.enquiry-btn:hover {
  background: #C6A24D;
  color: #0B0B0B;
}

/* NOTE */
.enquiry-note {
  font-size: 13px;
  color: #8f8f8f;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .enquiry-header h2 {
    font-size: 30px;
  }
}

/* ===== TEAM SECTION ===== */
.team-section {
  background: #0B0B0B;
  padding: 100px 0;
  color: #F5F1EB;
}

/* HEADER */
.team-title {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  margin-bottom: 10px;
}

.team-subtitle {
  font-size: 15px;
  color: #B7B7B7;
  max-width: 650px;
  margin: 0 auto;
}

/* CARD */
.team-card {
  text-align: center;
  padding: 20px;
}

.team-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
  transition: transform 0.4s ease;
}

.team-card:hover img {
  transform: scale(1.04);
}

/* NAME */
.team-card h5 {
  font-size: 17px;
  margin-bottom: 4px;
  color: #F5F1EB;
}

/* ROLE */
.team-card span {
  font-size: 13px;
  color: #B7B7B7;
}

/* OWL DOTS (MINIMAL) */
.team-carousel .owl-dots .owl-dot span {
  background: #444;
}

.team-carousel .owl-dots .owl-dot.active span {
  background: #C6A24D;
}

/* =========================
   LUXURY FOOTER BASE
========================= */
.luxury-footer {
  background: radial-gradient(circle at top, #141414, #0b0b0b 70%);
  padding: 90px 0 40px;
  color: #cfcfcf;
  position: relative;
  overflow: hidden;
}

/* Subtle cinematic grain */
.luxury-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://www.transparenttextures.com/patterns/asfalt-light.png");
  opacity: 0.05;
  pointer-events: none;
}

/* =========================
   SCROLL REVEAL
========================= */
.footer-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.footer-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   BRAND
========================= */
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #fff;
  letter-spacing: 1px;
}

.brand-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #c6a24d;
  border-radius: 50%;
  margin-left: 6px;
  animation: pulseDot 2.5s infinite;
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(198,162,77,0.6); }
  100% { box-shadow: 0 0 0 14px rgba(198,162,77,0); }
}

/* =========================
   SOCIAL ICONS
========================= */
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-right: 12px;
  border-radius: 50%;
  color: #c6a24d;
  border: 1px solid rgba(198,162,77,0.3);
  transition: all 0.4s ease;
  position: relative;
}

.footer-social a:hover {
  color: #000;
  background: #c6a24d;
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(198,162,77,0.4);
}

/* Floating animation */
.footer-social a:nth-child(odd) {
  animation: floatIcon 4s ease-in-out infinite;
}
.footer-social a:nth-child(even) {
  animation: floatIcon 5s ease-in-out infinite;
}

@keyframes floatIcon {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* =========================
   LINKS
========================= */
.footer-links li a {
  color: #bdbdbd;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.footer-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: #c6a24d;
  transition: width 0.4s ease;
}

.footer-links li a:hover {
  color: #fff;
}
.footer-links li a:hover::after {
  width: 100%;
}

/* =========================
   WHATSAPP CTA
========================= */
.footer-whatsapp {
  display: inline-block;
  padding: 12px 26px;
  border: 1px solid #25D366;
  color: #25D366;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 500;
  animation: whatsappPulse 2.5s infinite;
}

@keyframes whatsappPulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  100% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
}

/* =========================
   DIVIDER
========================= */
.footer-divider {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c6a24d, transparent);
  margin: 60px auto 30px;
  animation: dividerGrow 1.8s ease forwards;
}

@keyframes dividerGrow {
  to { width: 100%; }
}

/* =========================
   BOTTOM TEXT
========================= */
.footer-bottom p {
  color: #8e8e8e;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-brand {
    font-size: 24px;
  }
}

/* PORTFOLIO FILTERS — KEEP ONE ROW */
@media (max-width: 400px) {
  .portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: nowrap;
  }

  .portfolio-filters .filter-btn {
    flex: 1 1 auto;
    padding: 8px 6px;
    font-size: 12px;
    margin: 0;
    white-space: nowrap;
  }
}

/* HERO BUTTONS — KEEP ONE ROW */
@media (max-width: 400px) {
  .hero-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
  }

  .hero-buttons .btn {
    flex: 1 1 auto;
    padding: 10px 6px;
    font-size: 13px;
    white-space: nowrap;
  }
}


