:root {
  --primary: #1c3d2b;
  --accent: #c89d49;
  --accent-light: #f8f0d9;
  --text-muted: rgba(245, 247, 244, 0.82);
  --bg-page: #818b7e;
  --bg-light: #ffffff;
  --shadow-sm: 0 8px 18px rgba(28, 61, 43, 0.12);
  --font-heading: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Manrope', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

html, body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-page);
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--primary);
  line-height: 1.6;
}

section {
  scroll-margin-top: 120px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0.01em;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font: inherit;
}

.container {
  width: min(100%, 1100px);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.collapse {
  width: 100%;
}

.d-flex {
  display: flex;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

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

.align-items-stretch {
  align-items: stretch;
}

.justify-content-lg-end {
  justify-content: flex-end;
}

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

.text-end {
  text-align: right;
}

.text-success {
  color: var(--primary) !important;
}

.text-secondary {
  color: var(--text-muted);
}

.text-white {
  color: #fff !important;
}

.text-light {
  color: #f6f7f8;
}

.bg-white {
  background-color: #fff;
}

.bg-light {
  background-color: var(--bg-light);
}

.bg-success {
  background-color: var(--primary);
}

.bg-warning {
  background-color: #ffc107;
}

.bg-danger {
  background-color: #dc3545;
}

.shadow-sm {
  box-shadow: var(--shadow-sm);
}

.rounded-4 {
  border-radius: 1.25rem;
}

.fw-bold {
  font-weight: 700;
}

.small {
  font-size: 0.875rem;
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.object-fit-contain {
  object-fit: contain;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-5 {
  margin-bottom: 2rem;
}

.mb-lg-0 {
  margin-bottom: 0;
}

.ms-2 {
  margin-left: 0.5rem;
}

.ms-lg-auto {
  margin-left: 0;
}

.me-2 {
  margin-right: 0.5rem;
}

.gap-3 {
  gap: 1rem;
}

.px-3 {
  padding-inline: 1rem;
}

.p-3 {
  padding: 1rem;
}

.py-5 {
  padding-block: clamp(3rem, 6vw, 4rem);
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.border-0 {
  border: 0;
}

.position-fixed {
  position: fixed;
}

.position-relative {
  position: relative;
}

.bottom-0 {
  bottom: 0;
}

.end-0 {
  right: 0;
}

.btn {
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(28, 61, 43, 0.2);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-lg {
  font-size: 1rem;
  padding: 0.85rem 1.75rem;
}

.lead {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-muted);
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.8rem;
  color: rgba(248, 240, 217, 0.75);
  margin-bottom: 0.75rem;
}

.about-intro {
  max-width: 860px;
  margin: 0 auto;
}

.about-heading {
  margin-bottom: 1.5rem;
  position: relative;
}

.about-title {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  position: relative;
  display: inline-block;
  padding-bottom: 0.75rem;
}

.about-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: clamp(120px, 18vw, 200px);
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(248, 240, 217, 0.75) 50%, transparent 100%);
}

.about-copy {
  color: rgba(245, 247, 244, 0.85) !important;
}

.section-panel {
  background-color: var(--bg-light);
  color: var(--primary);
  border-radius: 32px;
  padding: clamp(2.5rem, 6vw, 3.5rem);
  box-shadow: 0 25px 60px rgba(18, 39, 28, 0.18);
  backdrop-filter: blur(6px);
}

.section-panel .lead,
.section-panel .text-secondary {
  color: rgba(28, 61, 43, 0.68);
}

.section-panel .list-group-item {
  color: rgba(28, 61, 43, 0.82);
  border-bottom: 1px solid rgba(28, 61, 43, 0.08);
}

.section-panel .list-group-item:last-child {
  border-bottom: none;
}

.section-panel .table {
  color: rgba(28, 61, 43, 0.85);
}

.section-panel .table thead {
  background-color: rgba(28, 61, 43, 0.06);
}

.section-panel .table-bordered {
  border-color: rgba(28, 61, 43, 0.12);
}

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

@media (prefers-reduced-motion: no-preference) {
  .section-panel,
  .contact-card {
    animation: floatFade 0.8s ease 0.1s both;
  }
}

.list-group {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-group-item {
  font-size: 1.05rem;
  color: var(--primary);
  border: none;
  background-color: transparent;
  padding: 0.75rem 0;
}

.table-responsive {
  overflow-x: auto;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  padding: 0.75rem;
  border: 1px solid rgba(28, 61, 43, 0.1);
  text-align: center;
}

.table thead {
  background-color: rgba(28, 61, 43, 0.05);
  font-weight: 600;
}

.table-bordered {
  border: 1px solid rgba(28, 61, 43, 0.12);
}

.table-bordered th,
.table-bordered td {
  border: 1px solid rgba(28, 61, 43, 0.12);
}

.table-light {
  background-color: rgba(28, 61, 43, 0.05);
}

.bg-gold {
  background-color: var(--accent);
}

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

.form-label {
  color: var(--primary);
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(28, 61, 43, 0.15);
  border-radius: 0.75rem;
  font-size: 1rem;
  background-color: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200, 157, 73, 0.2);
}

.contact-section {
  padding-block: clamp(4rem, 8vw, 6rem);
}

.contact-card {
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  display: grid;
  gap: clamp(2rem, 6vw, 4.5rem);
}

.contact-intro {
  max-width: 32rem;
}

.contact-title {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.15;
  color: #f5f7f4;
  margin-bottom: 1.5rem;
}

.contact-copy {
  color: rgba(245, 247, 244, 0.75);
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  line-height: 1.7;
  margin: 0;
}

.contact-form {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 32rem;
  justify-self: end;
}

.contact-form .form-field {
  display: grid;
  gap: 0.35rem;
}

.contact-form .form-label {
  color: rgba(245, 247, 244, 0.7);
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-form .required {
  font-size: 0.8rem;
  text-transform: none;
  letter-spacing: normal;
  color: rgba(245, 247, 244, 0.6);
}

.contact-form .form-control {
  padding: 0.5rem 0;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(245, 247, 244, 0.5);
  border-radius: 0;
  color: #f5f7f4;
  font-size: 1.05rem;
}

.contact-form .form-control::placeholder {
  color: rgba(245, 247, 244, 0.45);
}

.contact-form .form-control:focus {
  border-color: #ffffff;
  box-shadow: none;
}

.contact-submit {
  justify-self: start;
  background: linear-gradient(135deg, #f8f0d9 0%, #c89d49 100%);
  border: none;
  color: #1c3d2b;
  font-size: 1rem;
  letter-spacing: 0.08em;
  padding: 0.85rem 2.4rem;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-position 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-size: 140%;
  box-shadow: 0 18px 36px rgba(26, 44, 32, 0.28);
}

.contact-submit:hover {
  transform: translateY(-3px);
  background-position: right center;
}

.contact-submit:focus-visible {
  outline: 3px solid rgba(248, 240, 217, 0.55);
  outline-offset: 3px;
}

@media (min-width: 992px) {
  .contact-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .contact-form {
    justify-self: stretch;
  }
}

.brand-logo {
  height: 68px;
  width: 68px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(28, 61, 43, 0.25));
  flex-shrink: 0;
  display: block;
}

.navbar {
  background-color: rgba(12, 30, 22, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(245, 247, 244, 0.12);
  box-shadow: 0 12px 28px rgba(6, 18, 13, 0.35);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-block: 1rem;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: rgba(245, 247, 244, 0.9);
}

.navbar-brand .brand-logo {
  height: 64px;
  width: 64px;
}

.navbar-toggler {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(245, 247, 244, 0.3);
  border-radius: 0.75rem;
  width: 48px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.navbar-toggler:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: rgba(245, 247, 244, 0.45);
}

.navbar-toggler:focus-visible {
  outline: 3px solid rgba(200, 157, 73, 0.55);
  outline-offset: 2px;
}

.navbar-toggler-icon {
  position: relative;
  width: 22px;
  height: 2px;
  background-color: rgba(245, 247, 244, 0.9);
  border-radius: 999px;
  transition: transform 0.2s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background-color: rgba(245, 247, 244, 0.9);
  border-radius: 999px;
  transition: transform 0.2s ease;
}

.navbar-toggler-icon::before {
  transform: translateY(-6px);
}

.navbar-toggler-icon::after {
  transform: translateY(6px);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: translate(-0.5px, 0) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: translate(-0.5px, 0) rotate(-45deg);
}

.navbar-collapse {
  width: 100%;
  display: none;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.navbar-collapse.is-open {
  display: flex;
}

.navbar-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
  text-align: right;
}

.nav-item {
  margin: 0;
}

.nav-link {
  color: rgba(245, 247, 244, 0.82) !important;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--accent-light) !important;
}

.navbar-brand span {
  color: rgba(245, 247, 244, 0.9) !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h2, h4 {
  color: var(--primary);
}

#about i {
  margin-top: 2rem;
}

.border-gold {
  border: 2px solid var(--accent);
}

/* Carousel */
.netflix-carousel-wrapper {
  position: relative;
  min-height: clamp(260px, 40vw, 420px);
  width: 100%;
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1.5rem, 5vw, 3rem);
  background: linear-gradient(135deg, #f8f9f6 0%, #eef3ef 100%);
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(28, 61, 43, 0.1);
  overflow: hidden;
}

.carousel-track {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
}

.netflix-carousel {
  flex: 1 1 auto;
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem 0.75rem;
}

.netflix-item {
  flex: 0 0 auto;
  width: clamp(240px, 30vw, 340px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(0.5rem, 1vw, 0.75rem);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  border: 3px solid rgba(200, 157, 73, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, opacity 0.4s ease;
  background-color: #fff;
  padding: clamp(0.5rem, 1vw, 1rem);
}

.carousel-media {
  width: 100%;
  flex: 1 1 auto;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, rgba(200, 157, 73, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
}

.carousel-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(1.05);
}

.netflix-item.reveal-ready {
  opacity: 0;
  transform: translateY(18px);
}

.netflix-item.reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  width: 3.25rem;
  height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  padding: 0;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.carousel-control::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-top: 0.9rem solid transparent;
  border-bottom: 0.9rem solid transparent;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.carousel-control.prev {
  left: 0.75rem;
}
.carousel-control.prev::before {
  border-right: 1.2rem solid #1c3d2b;
}

.carousel-control.next {
  right: 0.75rem;
}
.carousel-control.next::before {
  border-left: 1.2rem solid #1c3d2b;
}

.carousel-control:hover {
  transform: translateY(-50%) scale(1.05);
  filter: drop-shadow(0 10px 24px rgba(28, 61, 43, 0.25));
}

.carousel-control:hover.prev::before {
  border-right-color: var(--accent);
}
.carousel-control:hover.next::before {
  border-left-color: var(--accent);
}

.carousel-control:focus-visible {
  outline: none;
  filter: drop-shadow(0 0 0 0 rgba(0, 0, 0, 0));
}

.carousel-control:focus-visible::after {
  content: '';
  position: absolute;
  inset: -0.4rem;
  border-radius: 12px;
  border: 2px solid rgba(248, 240, 217, 0.75);
}

.netflix-item.reveal-ready.is-visible:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(28, 61, 43, 0.18);
  border-color: rgba(200, 157, 73, 0.55);
}

.carousel-card-caption {
  display: block;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(28, 61, 43, 0.85);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 992px) {
  .navbar .container {
    flex-wrap: nowrap;
  }

  .navbar-toggler {
    display: none;
  }

  .navbar-collapse {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    width: auto;
    margin-top: 0;
    gap: 2rem;
  }

  .navbar-nav {
    flex-direction: row;
    gap: 2rem;
  }

  .justify-content-lg-end {
    justify-content: flex-end;
  }

  .ms-lg-auto {
    margin-left: auto;
  }

  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
}

@media (max-width: 991px) {
  .navbar {
    box-shadow: 0 18px 32px rgba(7, 20, 14, 0.42);
    border-bottom: 1px solid rgba(248, 240, 217, 0.22);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .netflix-carousel {
    scroll-behavior: auto;
  }
}

@media (max-width: 992px) {
  .netflix-item {
    width: clamp(200px, 40vw, 280px);
  }
}

/* Mobile Styles */
@media (max-width: 576px) {
  h2, h4 {
    font-size: 1.5rem;
  }

  .brand-logo {
    height: 56px;
    width: 56px;
  }

  .navbar-brand .brand-logo {
    height: 52px;
    width: 52px;
  }

  .lead {
    font-size: 1rem;
  }

  .netflix-carousel-wrapper {
    padding: 1.5rem;
    min-height: 220px;
  }

  .carousel-track {
    align-items: center;
  }

  .netflix-item {
    width: min(85vw, 240px);
  }

  .netflix-carousel {
    gap: 0.75rem;
    padding: 0.25rem 0.5rem;
  }

  .btn-lg {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }

  .form-control {
    font-size: 0.95rem;
  }
}

.toast-container {
  z-index: 1080;
  pointer-events: none;
}

.toast-container.is-active {
  pointer-events: auto;
}

.toast-container-center {
  top: clamp(4rem, 12vh, 6rem);
  left: 50%;
  transform: translateX(-50%);
  bottom: auto;
  right: auto;
  width: min(90vw, 420px);
}

.toast-container-center .toast {
  width: 100%;
}

.toast {
  background-color: #ffffff;
  border-radius: 1rem;
  border-left: 5px solid var(--primary);
  box-shadow: 0 12px 30px rgba(28, 61, 43, 0.18);
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.toast-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background-color: var(--primary);
  color: #fff;
}

.toast-body {
  padding: 0.75rem 1rem;
  background-color: #fff;
  color: var(--primary);
}

.toast-success {
  border-left-color: rgba(44, 100, 71, 0.9);
}

.toast-success .toast-header {
  background: linear-gradient(135deg, rgba(32, 72, 51, 0.95) 0%, rgba(26, 58, 39, 0.95) 100%);
}

.toast-danger {
  border-left-color: rgba(123, 56, 56, 0.9);
}

.toast-danger .toast-header {
  background: linear-gradient(135deg, rgba(140, 63, 63, 0.95) 0%, rgba(107, 43, 43, 0.95) 100%);
}

.toast-warning {
  border-left-color: rgba(184, 145, 63, 0.92);
}

.toast-warning .toast-header {
  background: linear-gradient(135deg, rgba(200, 157, 73, 0.95) 0%, rgba(151, 111, 46, 0.95) 100%);
  color: #1c3d2b;
}

.toast-warning .btn-close-white {
  color: #1c3d2b;
}

.btn-close {
  width: 1.75rem;
  height: 1.75rem;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.btn-close::before,
.btn-close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 2px;
  background-color: currentColor;
  transform-origin: center;
}

.btn-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.btn-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.btn-close-white {
  color: #fff;
}

.btn-close:focus-visible {
  outline: 2px solid rgba(200, 157, 73, 0.5);
  outline-offset: 2px;
}

.spinner-border {
  display: inline-block;
  width: 1em;
  height: 1em;
  border: 3px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spinner 0.75s linear infinite;
}

.spinner-border-sm {
  width: 0.85em;
  height: 0.85em;
  border-width: 2px;
}

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