/* =========================================
   SHAADI STUDIO — style.css
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

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

:root {
  --burgundy: #6B1A2B;
  --burgundy-dark: #4e1220;
  --burgundy-light: #8a2236;
  --gold: #C9A96E;
  --gold-light: #d9be91;
  --ivory: #FAF7F2;
  --ivory-dark: #f0ebe2;
  --cream: #f5f0e8;
  --text: #2a1a1f;
  --text-muted: #7a6370;
  --white: #ffffff;
  --shadow: rgba(107,26,43,0.12);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

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

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

/* ---- Utility ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (min-width: 768px) { .container { padding: 0 3rem; } }

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 500;
  color: var(--burgundy);
  line-height: 1.2;
}

.section-subtext {
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 600px;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---- Scroll Animations ---- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in.delay-1 { transition-delay: 0.15s; }
.fade-in.delay-2 { transition-delay: 0.3s; }
.fade-in.delay-3 { transition-delay: 0.45s; }
.fade-in.delay-4 { transition-delay: 0.6s; }

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
  background: rgba(250,247,242,0.97);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: 0 1px 20px var(--shadow);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: color 0.3s;
}

.navbar.scrolled .navbar-logo { color: var(--burgundy); }

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.navbar-links a {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: color 0.3s;
}

.navbar.scrolled .navbar-links a { color: var(--text-muted); }
.navbar-links a:hover { color: var(--gold); }

.navbar-cta {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.65rem 1.4rem;
  border: 1px solid rgba(255,255,255,0.8);
  color: var(--white);
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-sans);
}

.navbar-cta:hover { background: var(--white); color: var(--text); }
.navbar.scrolled .navbar-cta { border-color: var(--burgundy); color: var(--burgundy); background: transparent; }
.navbar.scrolled .navbar-cta:hover { background: var(--burgundy); color: var(--white); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: background 0.3s, transform 0.3s, opacity 0.3s;
}

.navbar.scrolled .hamburger span { background: var(--text); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--ivory);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

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

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text);
  line-height: 1;
}

.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s;
}

.mobile-menu a:hover { color: var(--burgundy); }

@media (max-width: 767px) {
  .navbar-links, .navbar-cta { display: none; }
  .hamburger { display: flex; }
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,5,10,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.25) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 900px;
  margin-top: 5rem;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  margin-bottom: 1.5rem;
  animation: fadeUp 1s ease 0.2s both;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 2.5rem;
  animation: fadeUp 1s ease 0.5s both;
}

.hero-title em {
  font-style: italic;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
  animation: fadeIn 1s ease 1s both;
}

.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: var(--burgundy);
  color: var(--white);
  text-decoration: none;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--font-sans);
  cursor: pointer;
  border: 1px solid var(--burgundy);
  transition: background 0.3s, color 0.3s;
}

.btn-primary:hover { background: var(--burgundy-dark); border-color: var(--burgundy-dark); }

.btn-outline {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: transparent;
  color: var(--white);
  text-decoration: none;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--font-sans);
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.8);
  transition: background 0.3s, color 0.3s;
}

.btn-outline:hover { background: var(--white); color: var(--text); }

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* =========================================
   ABOUT
   ========================================= */
.about {
  padding: 6rem 0;
  background: var(--ivory);
}

@media (min-width: 768px) { .about { padding: 8rem 0; } }

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 900px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }

.about-img-wrap {
  position: relative;
}

.about-img-frame {
  position: absolute;
  inset: -16px;
  border: 1px solid rgba(107,26,43,0.2);
  transform: translate(16px, 16px);
  pointer-events: none;
}

.about-img-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: 0 20px 60px var(--shadow);
}

.about-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
}

.about-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--burgundy);
  line-height: 1.25;
  margin-bottom: 1.8rem;
}

.about-title em { font-style: italic; font-weight: 300; }

.about-text {
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(107,26,43,0.15);
  margin-top: 2rem;
}

.stat-value {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--burgundy);
  display: block;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 480px) { .about-stats { grid-template-columns: repeat(2, 1fr); } }

/* =========================================
   SERVICES
   ========================================= */
.services {
  padding: 6rem 0;
  background: var(--cream);
}

@media (min-width: 768px) { .services { padding: 8rem 0; } }

.services-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.services-header .section-heading { margin-bottom: 1rem; }

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

@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--ivory);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s, transform 0.3s;
  cursor: pointer;
}

.service-card:hover { box-shadow: 0 10px 40px rgba(107,26,43,0.14); }

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

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

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

.service-card-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.18);
  transition: background 0.5s;
}

.service-card:hover .service-card-img-overlay { background: rgba(0,0,0,0.08); }

.service-card-body {
  padding: 1.8rem;
  text-align: center;
}

.service-card-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.service-card-title::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s ease, left 0.35s ease;
}

.service-card:hover .service-card-title::after { width: 100%; left: 0; }

.service-card-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 300;
  margin-top: 0.9rem;
  line-height: 1.7;
}

/* =========================================
   PORTFOLIO
   ========================================= */
.portfolio {
  padding: 6rem 0;
  background: var(--ivory);
}

@media (min-width: 768px) { .portfolio { padding: 8rem 0; } }

.portfolio-header {
  text-align: center;
  margin-bottom: 3rem;
}

.portfolio-header .section-heading { margin-bottom: 2rem; }

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.filter-btn {
  padding: 0.5rem 1.4rem;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  font-family: var(--font-sans);
  cursor: pointer;
  border: 1px solid transparent;
  background: var(--cream);
  color: var(--text);
  transition: all 0.25s;
}

.filter-btn:hover { background: rgba(107,26,43,0.08); }
.filter-btn.active { background: var(--burgundy); color: var(--white); border-color: var(--burgundy); }

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (min-width: 560px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); } }

.portfolio-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}

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

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

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.portfolio-overlay-text {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
}

.video-play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.2);
  color: var(--white);
}

.video-play-btn svg {
  margin-left: 4px;
}

.portfolio-item.hidden { display: none; }

/* =========================================
   LIGHTBOX
   ========================================= */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0,0,0,0.96);
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
  z-index: 10;
}

.lightbox-close:hover { color: var(--white); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 1rem;
  font-size: 3rem;
  line-height: 1;
  transition: color 0.2s;
}

.lightbox-nav:hover { color: var(--white); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.video-play-overlay .play-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials {
  padding: 6rem 0;
  background: var(--burgundy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) { .testimonials { padding: 8rem 0; } }

.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.testimonials-header .section-heading { color: var(--white); margin-bottom: 0.8rem; }
.testimonials-header p { color: rgba(255,255,255,0.75); font-weight: 300; }

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

.carousel-track {
  overflow: hidden;
}

.carousel-slide {
  display: none;
  animation: slideIn 0.5s ease both;
}

.carousel-slide.active { display: block; }

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

.testimonial-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 3rem;
  text-align: center;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 1.5rem;
  color: var(--gold);
  font-size: 1.1rem;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.92);
  margin-bottom: 2rem;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--burgundy);
  margin: 0 auto 1rem;
}

.testimonial-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.testimonial-date {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.carousel-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7);
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  font-size: 1.1rem;
}

.carousel-btn:hover { border-color: var(--gold); color: var(--gold); }

.carousel-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  border: none;
}

.dot.active { background: var(--gold); transform: scale(1.3); }

/* =========================================
   CONTACT
   ========================================= */
.contact {
  padding: 6rem 0;
  background: var(--ivory);
}

@media (min-width: 768px) { .contact { padding: 8rem 0; } }

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-header .section-heading { margin-bottom: 0.8rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 900px) { .contact-grid { grid-template-columns: 3fr 2fr; gap: 5rem; } }

/* Form */
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 560px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-muted);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(107,26,43,0.2);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--burgundy);
}

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

.form-select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237a6370' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

.form-error { font-size: 0.78rem; color: #c0392b; margin-top: 0.25rem; display: none; }
.form-error.show { display: block; }

.btn-submit {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--burgundy);
  color: var(--white);
  border: none;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 0.5rem;
}

.btn-submit:hover { background: var(--burgundy-dark); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

/* Success Toast */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--white);
  border-left: 4px solid var(--burgundy);
  padding: 1rem 1.5rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  z-index: 1000;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text);
  white-space: nowrap;
  transition: transform 0.4s ease;
  max-width: 90vw;
  text-align: center;
}

.toast.show { transform: translateX(-50%) translateY(0); }

/* Contact Info */
.contact-info-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--burgundy);
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(107,26,43,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--burgundy);
}

.contact-detail-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.contact-detail-value {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 400;
}

.contact-detail-value a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-detail-value a:hover { color: var(--burgundy); }

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(107,26,43,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.social-link:hover { border-color: var(--burgundy); color: var(--burgundy); background: rgba(107,26,43,0.04); }

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.6);
  padding: 2.5rem 0;
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.footer-tagline {
  color: var(--gold-light);
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

/* =========================================
   WHATSAPP WIDGET
   ========================================= */
.whatsapp-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 300;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: pulse 2.5s infinite;
  font-size: 1.7rem;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.55);
  animation: none;
}

.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--text);
  color: var(--white);
  padding: 0.4rem 0.9rem;
  font-size: 0.78rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.whatsapp-widget:hover .whatsapp-tooltip { opacity: 1; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* =========================================
   DIVIDER ORNAMENT
   ========================================= */
.ornament {
  text-align: center;
  color: var(--gold);
  font-size: 1.4rem;
  letter-spacing: 0.5rem;
  margin-bottom: 1.5rem;
}
