/* ============================================
   NADAGERI PRODUCTIONS - Component Library
   Luxury Event Management Website
   ============================================ */

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-navbar);
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(18, 14, 14, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-border);
  transition: all var(--duration-slow) var(--ease-smooth);
}

.navbar.transparent {
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(18, 14, 14, 0.85);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-border);
  padding: 0.8rem 2rem;
}

.navbar.hidden {
  transform: translateY(-100%);
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  z-index: calc(var(--z-navbar) + 1);
}

.navbar-logo .logo-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.navbar-logo .logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold-dark));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 3s ease-in-out infinite;
  letter-spacing: -0.02em;
}

.navbar-logo .logo-subl {
  font-size: 0.55rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  font-family: var(--font-body);
}

/* Real brand logo image */
.navbar-logo-img {
  height: 5rem;
  width: auto;
  display: block;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.35), 0 4px 14px rgba(0, 0, 0, 0.35);
}

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

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--duration-normal) ease;
  position: relative;
  padding: 0.3rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold), var(--purple));
  transition: width var(--duration-normal) var(--ease-smooth);
}

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

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

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

.nav-links a.active::after {
  width: 100%;
  background: var(--gold);
}

.nav-cta {
  margin-left: 0.5rem;
}

/* Contact CTA button - override generic .nav-links a rules so the pill
   keeps its button padding, dark readable text, and the text never
   spills outside the background */
.nav-links .nav-cta {
  padding: 0.6rem 1.4rem;
  font-size: 0.78rem;
  text-transform: none;
  letter-spacing: 0.03em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: var(--deep);
  font-weight: 700;
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta.active {
  color: var(--deep);
}

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

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: calc(var(--z-navbar) + 1);
  background: none;
  border: none;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all var(--duration-normal) var(--ease-smooth);
  transform-origin: center;
}

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

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

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--deep-2);
  border-top: 1px solid var(--glass-border);
  padding: 5rem 2rem 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--purple), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  max-width: var(--container-max);
  margin: 0 auto 3rem;
}

.footer-brand .footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.7rem;
}

.footer-brand .footer-logo-img {
  height: 5rem;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 0.5rem;
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.35), 0 4px 14px rgba(0, 0, 0, 0.35);
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color var(--duration-normal) ease;
  position: relative;
  padding-left: 0;
  transition: all var(--duration-normal) ease;
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.footer-contact li .fc-icon {
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--duration-normal) var(--ease-smooth);
  text-decoration: none;
}

.footer-social a .social-mark {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.footer-social a .social-mark svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.footer-social a:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: var(--text-muted);
  font-size: 0.78rem;
  transition: color var(--duration-normal) ease;
}

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

/* ============================================
   SERVICE CARD
   ============================================ */
.service-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  transition: all var(--duration-normal) var(--ease-smooth);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--purple));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-slow) var(--ease-smooth);
}

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

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(242, 201, 76, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.2rem;
  transition: all var(--duration-normal) var(--ease-bounce);
}

.service-card:hover .service-icon {
  transform: scale(1.15) rotate(-5deg);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.08));
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.service-card .service-tag {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-full);
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold-light);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.8rem;
}

/* ============================================
   TESTIMONIAL CARD
   ============================================ */
.testimonial-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  text-align: center;
  transition: all var(--duration-normal) var(--ease-smooth);
}

.testimonial-card:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 3px;
  margin-bottom: 1rem;
}

.testimonial-stars .star {
  color: var(--gold);
  font-size: 1.1rem;
}

.testimonial-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

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

.testimonial-author .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--deep);
}

.testimonial-author .info .name {
  font-size: 0.88rem;
  font-weight: 600;
}

.testimonial-author .info .event {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ============================================
   TEAM CARD
   ============================================ */
.team-card {
  text-align: center;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-lg);
}

.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--deep);
  margin: 0 auto 1rem;
  position: relative;
}

.team-avatar::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid var(--glass-border);
  transition: border-color var(--duration-normal) ease;
}

.team-card:hover .team-avatar::after {
  border-color: var(--gold);
}

.team-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.team-card .role {
  font-size: 0.78rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.team-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================
   STAT CARD
   ============================================ */
.stat-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-gold);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--purple), transparent);
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  padding-bottom: 2.5rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 17px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--deep);
  box-shadow: 0 0 0 2.5px var(--gold), 0 0 20px var(--gold-glow);
}

.timeline-item:nth-child(2) .timeline-dot {
  background: var(--purple);
  box-shadow: 0 0 0 2.5px var(--purple), 0 0 20px rgba(232, 160, 191, 0.3);
}

.timeline-item:nth-child(3) .timeline-dot {
  background: var(--rose);
  box-shadow: 0 0 0 2.5px var(--rose), 0 0 20px rgba(253, 121, 168, 0.3);
}

.timeline-date {
  font-size: 0.75rem;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
}

.timeline-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
  font-family: var(--font-display);
}

.timeline-item .timeline-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.timeline-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-md);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text);
  font-size: 0.9rem;
  font-family: var(--font-body);
  transition: all var(--duration-normal) ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.03);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.08);
}

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%23f2c94c'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

.form-group select option {
  background: var(--surface);
  color: var(--text);
}

.form-group .field-error {
  font-size: 0.75rem;
  color: var(--rose);
  margin-top: 0.3rem;
  display: none;
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(253, 121, 168, 0.1);
}

.form-group.error .field-error {
  display: block;
}

.form-group.success input,
.form-group.success textarea,
.form-group.success select {
  border-color: var(--teal);
}

/* Shake animation for form errors */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-4px); }
  20%, 40%, 60%, 80% { transform: translateX(4px); }
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
  animation: shake 0.5s ease-in-out;
}

.form-status {
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  display: none;
  margin-bottom: 1rem;
}

.form-status.visible {
  display: block;
  animation: fadeUp 0.4s ease forwards;
}

.form-status.success {
  background: rgba(0, 206, 201, 0.08);
  border: 1px solid rgba(0, 206, 201, 0.2);
  color: var(--teal);
}

.form-status.error {
  background: rgba(253, 121, 168, 0.08);
  border: 1px solid rgba(253, 121, 168, 0.2);
  color: var(--rose);
}

.form-status.loading {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--gold-light);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-item {
  border-radius: var(--radius-md);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  margin-bottom: 0.8rem;
  overflow: hidden;
  transition: border-color var(--duration-normal) ease;
}

.faq-item:hover {
  border-color: var(--glass-border-hover);
}

.faq-item.active {
  border-color: rgba(212, 175, 55, 0.25);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  background: none;
  border: none;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  transition: color var(--duration-normal) ease;
}

.faq-question:hover {
  color: var(--gold-light);
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--duration-normal) var(--ease-smooth);
  font-size: 1.2rem;
  color: var(--gold);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease-smooth), padding var(--duration-slow) var(--ease-smooth);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.2rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ============================================
   STAR RATING WIDGET
   ============================================ */
.star-rating {
  display: flex;
  gap: 4px;
  direction: rtl;
  justify-content: flex-start;
}

.star-rating input {
  display: none;
}

.star-rating label {
  font-size: 1.6rem;
  color: var(--text-dim);
  cursor: pointer;
  transition: color var(--duration-fast) ease, transform var(--duration-normal) var(--ease-bounce);
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
  color: var(--gold);
}

.star-rating label:hover {
  transform: scale(1.2);
}

/* ============================================
   FLOATING ACTION BUTTONS
   ============================================ */
.floating-actions {
  position: fixed;
  top: 6.5rem;
  right: 2rem;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.float-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  transition: all var(--duration-normal) var(--ease-smooth);
  border: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
}

.float-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

.float-btn.whatsapp {
  background: #25D366;
  color: #fff;
}

.float-btn.phone {
  background: linear-gradient(135deg, #2d6cdf, #1a4fb8);
  color: #fff;
}

.float-btn.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}

.float-btn .tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--surface);
  color: var(--text);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all var(--duration-normal) ease;
  border: 1px solid var(--glass-border);
}

.float-btn:hover .tooltip {
  opacity: 1;
  right: calc(100% + 16px);
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  z-index: var(--z-cursor);
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease, opacity 0.2s ease;
  mix-blend-mode: difference;
}

.custom-cursor.active {
  width: 34px;
  height: 34px;
  background: var(--gold-light);
  opacity: 0.9;
}

.cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(212, 175, 55, 0.6);
  pointer-events: none;
  z-index: calc(var(--z-cursor) - 1);
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}

.custom-cursor.active + .cursor-follower {
  width: 52px;
  height: 52px;
  border-color: var(--gold);
}

@media (pointer: coarse) {
  .custom-cursor, .cursor-follower {
    display: none !important;
  }
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 55;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--deep);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.back-to-top:active {
  transform: translateY(0) scale(0.95);
}

/* ============================================
   CONFETTI
   ============================================ */
.confetti-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 999;
  overflow: hidden;
}

.confetti-piece {
  position: absolute;
  width: 10px;
  height: 10px;
  top: -10px;
  animation: confettiFall 3s ease-in forwards;
}

@keyframes confettiFall {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(720deg) scale(0.5);
    opacity: 0;
  }
}

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  position: relative;
  z-index: 2;
}

.page-hero h1 .gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold-dark));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease-in-out infinite;
}

.page-hero .breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  position: relative;
  z-index: 2;
}

.page-hero .breadcrumb a {
  color: var(--gold-light);
  transition: color var(--duration-normal) ease;
}

.page-hero .breadcrumb a:hover {
  color: var(--gold);
}

.page-hero .breadcrumb .sep {
  color: var(--text-dim);
}

/* ============================================
   HERO SCROLL INDICATOR
   Pinned to the hero SECTION bottom (not the hero
   content box) so it can never overlap the CTA
   buttons at any resolution. Centered without
   transform so the fadeUp keyframe can't clobber it.
   ============================================ */
.hero-scroll-indicator {
  position: absolute;
  bottom: 1.25rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
  pointer-events: none;
}

@media (max-width: 480px) {
  .hero-scroll-indicator {
    bottom: 1rem;
  }
}

/* ============================================
   SERVICE DETAIL MODAL
   ============================================ */
.service-modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-lightbox);
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-normal) ease;
  padding: 2rem;
}

.service-modal.open {
  opacity: 1;
  pointer-events: all;
}

.service-modal-content {
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
}

.service-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-normal) ease;
}

.service-modal-close:hover {
  background: var(--glass-hover);
  border-color: var(--rose);
  color: var(--rose);
  transform: rotate(90deg);
}

/* ============================================
   HERO VIDEO BACKGROUND
   ============================================ */
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-bg .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(18, 14, 14, 0.7), rgba(18, 14, 14, 0.85));
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-lightbox);
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(30px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-normal) ease;
  padding: 2rem;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-content {
  max-width: 700px;
  width: 100%;
  text-align: center;
}

.lightbox-content .preview {
  padding: 3rem;
  border-radius: var(--radius-lg);
  background: var(--card);
  font-size: 5rem;
  margin-bottom: 1.5rem;
}

.lightbox-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.lightbox-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transition: transform var(--duration-normal) ease;
}

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

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all var(--duration-normal) ease;
  backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold);
  color: var(--gold);
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* ============================================
   GALLERY MASONRY
   ============================================ */
.masonry {
  columns: 3;
  gap: 1rem;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-smooth);
}

.masonry-item img,
.masonry-item .placeholder {
  width: 100%;
  display: block;
  transition: transform var(--duration-slow) ease;
}

/* ============================================
   GRID RESILIENCE - visible empty-state placeholders
   Show something in every grid container even before
   NADAGERI_DATA loads, so pages never look blank.
   ============================================ */
.gallery-empty-state {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-style: italic;
  grid-column: 1 / -1;
  break-inside: avoid;
}

.gallery-empty-message {
  grid-column: 1 / -1;
  break-inside: avoid;
}

.masonry-placeholder {
  animation: placeholderPulse 2.4s ease-in-out infinite;
}

.service-placeholder {
  opacity: 0.55;
  animation: placeholderPulse 2.4s ease-in-out infinite;
}

@keyframes placeholderPulse {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 0.8; }
}

.masonry-item img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: cover;
  display: block;
  transition: transform var(--duration-slow) ease;
}

.masonry-item .placeholder {
  min-height: 200px;
  background: linear-gradient(135deg, var(--card), var(--surface));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  width: 100%;
}

.masonry-item:hover img,
.masonry-item:hover .placeholder {
  transform: scale(1.05);
}

.masonry-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  opacity: 0;
  transition: opacity var(--duration-normal) ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

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

.masonry-item .overlay h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.masonry-item .overlay p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.masonry-item .cat-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  background: rgba(212, 175, 55, 0.85);
  color: var(--deep);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 2;
}

/* ============================================
   FILTER BUTTONS
   ============================================ */
.filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.5rem 1.3rem;
  border-radius: var(--radius-full);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--duration-normal) ease;
  font-family: var(--font-body);
}

.filter-btn:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.2);
  color: var(--gold-light);
}

.filter-btn.active {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================
   GOOGLE REVIEWS WIDGET CONTAINER
   ============================================ */
.google-reviews-container {
  max-width: 900px;
  margin: 0 auto;
}

/* ============================================
   RESPONSIVE - COMPONENT OVERRIDES
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .masonry {
    columns: 2;
  }
}

@media (max-width: 900px) {
  .navbar {
    padding: 0.8rem 1.2rem;
  }
  .navbar.scrolled {
    padding: 0.7rem 1.2rem;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background: rgba(18, 14, 14, 0.98);
    backdrop-filter: blur(30px);
    z-index: var(--z-navbar);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.1rem;
    letter-spacing: 0.1em;
  }

  .nav-links a::after {
    bottom: -6px;
    height: 2px;
  }

  .nav-cta {
    margin-left: 0;
  }

  .nav-links .nav-cta {
    font-size: 1rem;
    padding: 0.75rem 2rem;
  }

  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(18, 14, 14, 0.55);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .hamburger span {
    width: 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-brand .footer-logo {
    justify-content: center;
  }

  .footer-brand p {
    margin: 0 auto;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-contact li {
    justify-content: center;
  }

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

  .masonry {
    columns: 2;
  }

  .floating-actions {
    top: 6.25rem;
    right: 1.2rem;
  }

  .float-btn {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .back-to-top {
    bottom: 1.2rem;
    right: 1.2rem;
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .lightbox-nav {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
}

@media (max-width: 480px) {
  .masonry {
    columns: 1;
  }

  .floating-actions {
    top: 6rem;
    right: 0.8rem;
  }

  .back-to-top {
    bottom: 0.8rem;
    right: 0.8rem;
  }

  .filter-bar {
    gap: 0.4rem;
  }

  .filter-btn {
    padding: 0.4rem 0.9rem;
    font-size: 0.7rem;
  }
}

/* ============================================
