/* Shared site styles for Afro Barbing Salon */
:root {
  --black: #0a0a0a;
  --charcoal: #1a1a1a;
  --dark-charcoal: #111111;
  --deep-brown: #2c1810;
  --gold: #c9a84c;
  --gold-light: #e8d48b;
  --gold-dark: #a08030;
  --white: #ffffff;
  --off-white: #f5f0eb;
  --text-light: #b0a090;
  --text-muted: #7a6a5a;
  --glass-bg: rgba(20, 20, 20, 0.7);
  --glass-border: rgba(201, 168, 76, 0.15);
  --shadow-sm: 0 2px 20px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 80px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 0 30px rgba(201, 168, 76, 0.1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --font-serif: 'Playfair Display', 'Cormorant Garamond', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Prevents fixed navbar from overlapping section headers */
}

body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-border);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo .monogram {
  width: 48px;
  height: 48px;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  border-radius: 50%;
  transition: var(--transition);
}

.nav-logo:hover .monogram {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.3);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-text .brand-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1.2;
}

.nav-logo-text .brand-tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  position: relative;
  padding: 4px 0;
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 12px 28px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.25);
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--off-white);
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
  background-image: url('Images/cover%20img.jpeg');
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 30% 80%, rgba(44, 24, 16, 0.3) 0%, transparent 50%);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-badge {
    justify-content: center;
  }

  .hero-cta {
    justify-content: center;
  }
}

.hero-content {
  position: relative;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg-video video {
  margin-top: 5rem;
  width: 100%;
  height: 90%;
  object-fit: cover;
  object-position: center 20%;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.75) 0%, rgba(10, 10, 10, 0.5) 100%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero-badge i {
  font-size: 10px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(42px, 5.5vw, 76px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 520px;
  margin-bottom: 36px;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 50px;
  transition: var(--transition);
  letter-spacing: 0.5px;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  padding: 16px 40px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  border: none;
  box-shadow: 0 4px 30px rgba(201, 168, 76, 0.2);
}

.btn-primary:disabled,
.btn-outline:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 50px rgba(201, 168, 76, 0.35);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
}

.btn-outline:hover {
  background: rgba(201, 168, 76, 0.1);
  transform: translateY(-2px);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-avatars {
  display: flex;
}

.trust-avatars img,
.trust-avatars .avatar-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--charcoal);
  margin-right: -12px;
  object-fit: cover;
  background: var(--dark-charcoal);
}

.avatar-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
}

.trust-info .trust-count {
  font-weight: 600;
  color: var(--white);
  font-size: 15px;
}

.trust-info .trust-stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 2px;
}

.trust-info .trust-label {
  font-size: 13px;
  color: var(--text-muted);
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-dark {
  background: var(--charcoal);
}

.section-darker {
  background: var(--dark-charcoal);
}

.section-black {
  background: var(--black);
}

.section-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  font-weight: 300;
  line-height: 1.7;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 20px 0 40px;
}

.section-divider.center {
  margin-left: auto;
  margin-right: auto;
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.services-grid,
.services-page-grid,
.about-grid,
.testimonials-grid,
.values-grid,
.team-grid,
.gallery-grid,
.contact-grid {
  display: grid;
  gap: 24px;
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 20px;
}

.services-page-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 20px;
}

.service-card,
.service-page-card,
.value-card,
.team-card,
.testimonial-card,
.about-feature-item,
.cta-banner,
.footer-brand,
.quote-card,
.contact-card,
.form-card {
  background: linear-gradient(145deg, rgba(30, 30, 30, 0.8), rgba(20, 20, 20, 0.8));
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-page-card,
.team-card,
.testimonial-card,
.contact-card,
.form-card {
  padding: 40px 36px;
}

.service-card:hover,
.service-page-card:hover,
.value-card:hover,
.team-card:hover,
.testimonial-card:hover,
.contact-card:hover,
.form-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 76, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(201, 168, 76, 0.05);
}

.service-card::before,
.service-page-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover::before,
.service-page-card:hover::before {
  opacity: 1;
}

.service-icon,
.icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.service-page-card .icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: rgba(201, 168, 76, 0.1);
}

.service-card h3,
.service-page-card h3,
.value-card h3,
.team-card h3,
.contact-card h3,
.form-card h3,
.cta-banner h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--white);
}

.service-card h3,
.service-page-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.service-page-card h3 {
  margin-bottom: 18px;
}

.service-card p,
.service-page-card p,
.value-card p,
.team-card p,
.testimonial-card blockquote,
.about-feature-item p,
.footer-brand p,
.cta-banner p,
.form-card p,
.contact-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  font-weight: 300;
}

.service-card .learn-more,
.btn-primary,
.btn-outline {
  font-weight: 600;
}

.service-card-video {
  position: relative;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  cursor: pointer;
  background: var(--charcoal);
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.service-card-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-md);
}

.service-card-video::after {
  content: '\f04b';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.9);
  color: var(--black);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.service-card-video:hover::after {
  background: var(--gold);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 8px 40px rgba(201, 168, 76, 0.4);
}

.service-card-video:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 76, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(201, 168, 76, 0.05);
}

.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-card .learn-more i {
  font-size: 10px;
  transition: var(--transition);
}

.service-card:hover .learn-more i {
  transform: translateX(4px);
}

/* Product Category Tabs */
.product-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 28px 0 8px;
  flex-wrap: wrap;
}

.product-tab {
  padding: 10px 28px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: transparent;
  color: var(--text-light);
  font-family: var(--font-serif);
  font-size: 16px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}

.product-tab:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.product-tab.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  font-weight: 600;
}

.product-category {
  display: none;
}

.product-category.active {
  display: block;
}

.price {
  display: inline-block;
  margin-top: 20px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
}

.duration {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.pricing-note {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background: rgba(201, 168, 76, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: var(--radius-md);
}

.pricing-note h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.about-grid {
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: var(--transition);
}

.about-image-wrapper:hover img {
  transform: scale(1.03);
}

.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  box-shadow: 0 10px 50px rgba(201, 168, 76, 0.3);
}

.about-badge-float span {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}

.about-feature-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: var(--radius-sm);
  padding: 20px 16px;
  text-align: center;
}

.about-feature-item:hover {
  border-color: rgba(201, 168, 76, 0.2);
  background: rgba(201, 168, 76, 0.05);
}

.about-feature-item i {
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 8px;
}

.about-feature-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.about-feature-item p {
  font-size: 12px;
  color: var(--text-muted);
}

.testimonials-grid {
  position: relative;
  margin-top: 20px;
}

.testimonials-wrapper {
  overflow: hidden;
  margin: 0 -4px;
  padding: 4px;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.testimonials-track > .testimonial-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
}

@media (max-width: 1023px) {
  .testimonials-track > .testimonial-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}

@media (max-width: 767px) {
  .testimonials-track > .testimonial-card {
    flex: 0 0 100%;
  }
}

.testimonial-card {
  background: linear-gradient(145deg, rgba(30, 30, 30, 0.9), rgba(20, 20, 20, 0.9));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card:hover {
  border-color: rgba(201, 168, 76, 0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(201, 168, 76, 0.05);
}

.testimonial-card .client-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  border: 2px solid var(--gold);
  background: var(--dark-charcoal);
}

.testimonial-card .stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testimonial-card blockquote {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
  font-weight: 300;
}

.testimonial-card .client-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

.testimonial-card .client-title {
  font-size: 12px;
  color: var(--text-muted);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.15);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dots .dot.active {
  background: var(--gold);
  width: 32px;
  border-radius: 5px;
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.2);
}

.carousel-dots .dot:hover {
  background: rgba(201, 168, 76, 0.4);
}

.gallery-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 10, 0.85) 100%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span,
.gallery-overlay .gallery-label {
  transform: translateY(10px);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay span,
.gallery-item:hover .gallery-overlay .gallery-label {
  transform: translateY(0);
}

.gallery-overlay span {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}

.gallery-overlay .gallery-label {
  font-size: 11px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.gallery-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1200;
  padding: 24px;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  width: min(100%, 1000px);
  max-height: 90vh;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.lightbox-image {
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
  background: var(--black);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  border: none;
  background: rgba(10, 10, 10, 0.7);
  color: var(--white);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: var(--transition);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(201, 168, 76, 0.9);
  color: var(--black);
}

.lightbox-close {
  top: 18px;
  right: 18px;
}

.lightbox-prev {
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
}

.lightbox-next {
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
}

.lightbox-counter {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--off-white);
  font-size: 13px;
  background: rgba(10, 10, 10, 0.75);
  padding: 8px 12px;
  border-radius: 999px;
}

.footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(201, 168, 76, 0.06);
  padding: 80px 0 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand .footer-logo .monogram {
  width: 40px;
  height: 40px;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  border-radius: 50%;
}

.footer-brand .footer-logo span {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 300;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 16px;
  transition: var(--transition);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.1);
}

.footer h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  font-size: 14px;
  color: var(--text-light);
  padding: 6px 0;
  transition: var(--transition);
  font-weight: 300;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact p,
.footer-newsletter p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 300;
}

.footer-contact i,
.footer-newsletter i {
  color: var(--gold);
  width: 16px;
  margin-top: 3px;
}

.footer-newsletter p {
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 4px;
  transition: var(--transition);
}

.newsletter-form:focus-within {
  border-color: var(--gold);
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 0;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--white);
  outline: none;
}

.newsletter-form input::placeholder {
  color: var(--text-muted);
}

.newsletter-form button {
  background: transparent;
  border: none;
  color: var(--gold);
  font-size: 18px;
  cursor: pointer;
  padding: 8px 12px;
}

.newsletter-form button:hover {
  transform: translateX(4px);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
}

/* ===== 404 PAGE ===== */
.page-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 140px 0 80px;
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--black) 100%);
  overflow: hidden;
}

.page-404::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.page-404-content {
  position: relative;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.page-404-code {
  font-family: var(--font-serif);
  font-size: clamp(8rem, 20vw, 14rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.12) 0%, rgba(201, 168, 76, 0.03) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  user-select: none;
}

.page-404-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 8px auto 24px;
  border-radius: 2px;
}

.page-404-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.page-404-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light);
  font-weight: 300;
  margin-bottom: 36px;
}

.page-404-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FLOATING BOOK BUTTON ===== */
.float-book {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  display: none;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  box-shadow: 0 8px 40px rgba(201, 168, 76, 0.4);
  transition: var(--transition);
  text-decoration: none;
}

.float-book:hover {
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 12px 50px rgba(201, 168, 76, 0.55);
  color: var(--black);
}

.float-book i {
  font-size: 18px;
}

@media (max-width: 768px) {
  .float-book {
    display: flex;
  }

  .back-to-top {
    bottom: 90px;
  }
}

/* ===== TOAST NOTIFICATIONS ===== */
.toast-container {
  position: fixed;
  top: 100px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  background: rgba(18, 18, 18, 0.97);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 12px;
  padding: 16px 24px;
  min-width: 280px;
  max-width: 400px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: toastIn 0.4s ease, toastOut 0.4s ease 3.6s forwards;
}

.toast i {
  font-size: 18px;
  flex-shrink: 0;
}

.toast-success i {
  color: var(--gold);
}

.toast-error i {
  color: #e74c3c;
}

.toast span {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.4;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes toastOut {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(40px); }
}

/* ===== PAGE TRANSITION ===== */
body {
  animation: pageFadeIn 0.5s ease;
}

@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  border: none;
  font-size: 18px;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(201, 168, 76, 0.4);
}

.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-left.visible {
  transform: translateX(0);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-right.visible {
  transform: translateX(0);
}

.contact-grid {
  grid-template-columns: 1fr 1.25fr;
  gap: 32px;
  align-items: start;
  margin-top: 40px;
}

.contact-card,
.form-card {
  background: linear-gradient(145deg, rgba(30, 30, 30, 0.9), rgba(12, 12, 12, 0.95));
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.form-card {
  display: flex;
  flex-direction: column;
}

.form-card h3 {
  margin-bottom: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}

.form-input,
.form-textarea,
.form-select {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--off-white);
  font-size: 14px;
  font-family: var(--font-sans);
  outline: none;
  transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.06);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-message {
  margin-top: 16px;
  font-size: 14px;
  min-height: 24px;
}

.form-message.success {
  color: #9bdd6a;
}

.form-message.error {
  color: #ffbaba;
}

.page-header {
  padding: 160px 0 60px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 80%, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
}

.page-header p {
  font-size: 17px;
  color: var(--text-light);
  max-width: 560px;
  margin: 16px auto 0;
  font-weight: 300;
}

.services-header {
  position: relative;
  overflow: hidden;
}

.services-header-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.services-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-header-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.6) 0%, rgba(10, 10, 10, 0.85) 100%);
  pointer-events: none;
}

.services-header .container {
  position: relative;
  z-index: 2;
}

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-story-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-story-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 2.5vw, 38px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.about-story-content p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
  font-weight: 300;
}

.values-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 20px;
}

.value-card {
  padding: 36px 28px;
}

.value-card i {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 16px;
}

.team-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 20px;
}

.team-card {
  overflow: hidden;
}

.team-card img {
  width: 100%;
  height: auto;
  display: block;
}

.team-card .team-info {
  padding: 24px 28px;
}

.team-card .role {
  font-size: 13px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.cta-banner {
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.05), rgba(201, 168, 76, 0.02));
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: var(--radius-lg);
  margin-top: 20px;
}

.cta-banner h2 {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 12px;
}

.footer h4 {
  margin-bottom: 20px;
}

@media (max-width: 1024px) {
  .about-grid,
  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .about-image-wrapper,
  .hero-image-wrapper {
    max-width: 100%;
    aspect-ratio: 16/10;
  }

  .hero-floating-badge {
    width: 100px;
    height: 100px;
    right: 10px;
    top: 10px;
  }

  .hero-floating-badge span {
    font-size: 9px;
  }

  .testimonials-grid,
  .services-page-grid,
  .footer-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transition: var(--transition);
    border-left: 1px solid rgba(201, 168, 76, 0.1);
    z-index: 1000;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 18px;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: 80vh;
    padding: 80px 0 40px;
  }

  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-desc {
    font-size: 16px;
    max-width: 100%;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .services-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .about-story {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-card img {
    height: auto;
  }

  .page-header {
    padding: 120px 0 40px;
  }

.team-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.team-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
  transition: var(--transition);
}

.team-social a:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.cta-banner {
    padding: 40px 24px;
  }

  .section {
    padding: 60px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.15;
  }

  .section-title {
    font-size: 24px;
  }

  .btn-primary,
  .btn-outline {
    padding: 12px 24px;
    font-size: 14px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ===== ENHANCED FORM STYLING ===== */

.contact-grid-enhanced {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 40px;
  margin-top: 40px;
}

.form-card-primary,
.form-card-secondary {
  background: radial-gradient(circle at top left, rgba(201, 168, 76, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(10, 10, 10, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
}

.form-card-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.7), transparent);
  opacity: 0.5;
}

.form-card-primary:hover {
  border-color: rgba(201, 168, 76, 0.25);
  box-shadow: 0 24px 80px rgba(201, 168, 76, 0.12), 0 0 40px rgba(201, 168, 76, 0.08);
  transform: translateY(-4px);
}

.form-card-secondary:hover {
  border-color: rgba(201, 168, 76, 0.2);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}

.form-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.form-header i {
  font-size: 28px;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(201, 168, 76, 0.12);
  border-radius: 14px;
}

.form-header h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.form-modern {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0;
}

.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--off-white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 14px;
  padding: 16px 18px;
  color: var(--off-white);
  font-size: 14px;
  font-family: var(--font-sans);
  transition: var(--transition);
  outline: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(176, 160, 144, 0.55);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.08);
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
  margin-bottom: 20px;
}

.form-field.full-width {
  grid-column: 1 / -1;
}

.optional {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
  text-transform: none;
  font-variant: petite-caps;
}

.form-feedback {
  min-height: 20px;
  font-size: 13px;
  margin: 16px 0 20px;
  font-weight: 500;
}

.form-feedback.success {
  color: #7dd321;
}

.form-feedback.error {
  color: #ff6b6b;
}

.contact-info-box {
  margin-top: 32px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
}

.contact-info-box h4 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.contact-list-modern {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-list-modern li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.6;
}

.contact-list-modern i {
  color: var(--gold);
  width: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-list-modern strong {
  color: var(--off-white);
  font-weight: 500;
}

@media (max-width: 1024px) {
  .contact-grid-enhanced {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .form-card-primary,
  .form-card-secondary {
    padding: 32px 24px;
  }

  .form-header {
    margin-bottom: 24px;
  }

  .form-header h3 {
    font-size: 22px;
  }
}

  .nav-links .nav-cta-mobile {
    display: inline-block;
    margin-top: 10px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-desc {
    font-size: 16px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-outline {
    justify-content: center;
    text-align: center;
  }

  .section {
    padding: 60px 0;
  }

  .hero-floating-badge {
    width: 80px;
    height: 80px;
    right: 10px;
    top: 10px;
    animation: none; /* Disable animation on mobile to save CPU/Battery */
  }

  .hero-floating-badge span {
    font-size: 8px;
  }

  .about-badge-float {
    width: 110px;
    height: 110px;
    bottom: -10px;
    right: -10px;
  }

  .about-badge-float span {
    font-size: 10px;
  }

}

@media (max-width: 480px) {
  .hero-title {
    font-size: 30px;
  }

  .container {
    padding: 0 16px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
