/* ===== CSS Variables ===== */
:root {
  --color-bg: #171427;
  --color-bg-mid: #1a1630;
  --color-bg-light: #1d1932;
  --color-bg-card: #1f1b35;
  --color-accent-primary: #c4a882;
  --color-accent-light: #dbc4a0;
  --color-text: #d7d0d0;
  --color-text-muted: #9a9199;
  --color-white: #f5f0e8;
  --color-purple: #6b5b95;
  --color-border: rgba(196, 168, 130, 0.2);

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Cormorant Garamond', Georgia, serif;

  --max-width: 1200px;
  --section-padding: 5.25rem 0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: linear-gradient(160deg, #171427 0%, #1a1630 35%, #1c1832 55%, #181530 75%, #171427 100%);
  background-attachment: fixed;
  color: var(--color-text);
  line-height: 1.7;
  font-size: 16px;
  font-weight: 400;
  min-height: 100vh;
}

a {
  color: var(--color-accent-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-accent-light);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.3;
}

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

ul {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: var(--section-padding);
  position: relative;
  z-index: 1;
}

.section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
  letter-spacing: 0.12em;
  font-weight: 300;
}

.section h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-accent-primary);
  margin: 1rem auto 0;
  opacity: 0.6;
}

/* ===== Navigation ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-bottom 0.4s ease;
}

.site-header.scrolled {
  background: rgba(23, 20, 39, 0.85);
  backdrop-filter: blur(12px);
}

.navbar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.logo {
  text-decoration: none;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--color-accent-primary);
  letter-spacing: 0.15em;
  font-weight: 400;
}

.logo-img {
  height: 50px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-home-item {
  display: none;
}

.nav-links a {
  color: var(--color-text);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: none;
  font-weight: 400;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-white);
  transition: width 0.3s ease;
}

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

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

.nav-lang {
  margin-left: auto;
  position: relative;
}

.nav-lang select {
  display: none;
}

.nav-lang-icon {
  display: block;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.nav-lang-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-text);
  fill: none;
  stroke-width: 1.5;
  transition: stroke 0.3s ease;
}

.nav-lang-icon:hover svg,
.nav-lang-icon.active svg {
  stroke: var(--color-accent-primary);
}

/* Custom language dropdown */
.lang-dropdown {
  display: block;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 140px;
  background: rgba(23, 20, 39, 0.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(196, 168, 130, 0.12);
  border-radius: 8px;
  padding: 6px 0;
  opacity: 0;
  transform: scale(0.9) translateY(-5px);
  transform-origin: top right;
  transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1002;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.lang-dropdown.open {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.lang-dropdown a {
  display: block;
  padding: 10px 18px;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  transition: color 0.2s ease, background 0.2s ease;
  text-decoration: none;
}

.lang-dropdown a:hover {
  color: var(--color-white);
  background: rgba(196, 168, 130, 0.08);
}

.lang-dropdown a.active {
  color: var(--color-accent-primary);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
  order: -1;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-text);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ===== Cursor Glow ===== */
.cursor-glow {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.cursor-glow.visible {
  opacity: 1;
}

.cursor-glow-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(196, 168, 130, 0.08) 0%,
    rgba(196, 168, 130, 0.04) 25%,
    rgba(107, 91, 149, 0.02) 50%,
    transparent 70%
  );
  filter: blur(2px);
}

.cursor-glow-outer {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(196, 168, 130, 0.035) 0%,
    rgba(107, 91, 149, 0.015) 40%,
    transparent 65%
  );
  filter: blur(8px);
}

.cursor-glow-trail {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(219, 196, 160, 0.05) 0%,
    rgba(196, 168, 130, 0.02) 35%,
    transparent 60%
  );
  filter: blur(20px);
}

/* ===== Nav Overlay (mobile only) ===== */
.nav-overlay {
  display: none;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--color-bg);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(23, 20, 39, 0.55);
  z-index: 1;
}

/* Fog / Mist layers */
.hero-fog {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.fog-layer {
  position: absolute;
  width: 200%;
  height: 100%;
  background: repeating-linear-gradient(
    105deg,
    transparent 0%,
    transparent 20%,
    rgba(196, 168, 130, 0.015) 25%,
    transparent 30%,
    transparent 50%,
    rgba(107, 91, 149, 0.02) 55%,
    transparent 60%
  );
  filter: blur(40px);
}

.fog-layer:nth-child(1) {
  top: -20%;
  animation: fogDrift1 25s ease-in-out infinite;
  opacity: 0.8;
}

.fog-layer:nth-child(2) {
  top: 10%;
  animation: fogDrift2 30s ease-in-out infinite;
  opacity: 0.6;
}

.fog-layer:nth-child(3) {
  bottom: -10%;
  animation: fogDrift3 35s ease-in-out infinite;
  opacity: 0.5;
  background: repeating-linear-gradient(
    80deg,
    transparent 0%,
    transparent 25%,
    rgba(107, 91, 149, 0.025) 30%,
    transparent 35%,
    transparent 55%,
    rgba(196, 168, 130, 0.02) 60%,
    transparent 65%
  );
  filter: blur(50px);
}

@keyframes fogDrift1 {
  0%   { transform: translateX(-30%) translateY(0); }
  50%  { transform: translateX(-10%) translateY(-5%); }
  100% { transform: translateX(-30%) translateY(0); }
}

@keyframes fogDrift2 {
  0%   { transform: translateX(-20%) translateY(3%); }
  50%  { transform: translateX(-40%) translateY(-3%); }
  100% { transform: translateX(-20%) translateY(3%); }
}

@keyframes fogDrift3 {
  0%   { transform: translateX(-10%) translateY(0); }
  50%  { transform: translateX(-35%) translateY(5%); }
  100% { transform: translateX(-10%) translateY(0); }
}


.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 2rem;
  text-align: center;
}

.hero-title {
  font-size: 2.9rem;
  letter-spacing: 0.2em;
  color: var(--color-accent-primary);
  margin-bottom: 2rem;
  text-transform: none;
  font-weight: 300;
  white-space: nowrap;
}

.hero-quote {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  color: rgba(215, 208, 208, 0.85);
  line-height: 1.8;
  margin-bottom: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Hero Reveal Animations ===== */
.hero-reveal {
  opacity: 0;
  transform: scale(0.92);
  animation: titleReveal 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

@keyframes titleReveal {
  0% {
    opacity: 0;
    transform: scale(0.92);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Quote lines float up from mist */
.quote-line {
  display: block;
  opacity: 0;
  transform: translateY(18px);
  filter: blur(4px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), filter 0.9s ease;
}

.quote-line.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.quote-author {
  display: block;
  margin-top: 1rem;
  font-size: 0.95rem;
  font-style: normal;
  color: var(--color-accent-primary);
  letter-spacing: 0.03em;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 1.2s ease, transform 1s ease;
}

.quote-author.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Intro ===== */
.intro {
  background: rgba(23, 20, 39, 0.35);
}

.intro-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.intro-content p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

/* Intro booking button */
.intro-booking-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 1.5rem;
  padding: 0.7rem 2rem;
  background: rgba(196, 168, 130, 0.75);
  color: var(--color-bg);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.intro-booking-btn:hover {
  background: rgba(196, 168, 130, 0.9);
  color: var(--color-bg);
}

/* Home services - use svc-card style */
.home-svc-cards {
  max-width: 620px;
  margin: 0 auto;
}

/* Home service descriptions - desktop only */
.svc-card-desc-desktop {
  color: var(--color-text-muted);
  font-size: 0.82rem;
  line-height: 1.7;
  flex: 1;
}

/* Home blog - single entry */
.home-blog-list {
  max-width: 620px;
  margin: 0 auto;
}

/* ===== How It Works ===== */
.how-it-works {
  background: rgba(23, 20, 39, 0.35);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  text-align: center;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.step p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  flex: 1;
}

.step-number {
  width: 52px;
  height: 52px;
  border: 1px solid var(--color-accent-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-accent-primary);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

/* Steps navigation - hidden on desktop */
.steps-nav {
  display: none;
}

/* ===== About Preview ===== */
.about-preview {
  position: relative;
  z-index: 1;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.about-preview-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to right,
    rgba(23, 20, 39, 0.9) 0%,
    rgba(23, 20, 39, 0.7) 40%,
    rgba(23, 20, 39, 0.4) 100%
  );
}

.about-preview-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  width: 100%;
  padding: 5rem 2rem;
  margin: 0 auto;
}

.about-preview-content h2 {
  text-align: left;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--color-white);
  letter-spacing: 0.08em;
}

.about-preview-content p {
  max-width: 480px;
  margin-bottom: 2.5rem;
  font-size: 1rem;
  color: rgba(215, 208, 208, 0.8);
  line-height: 1.9;
}

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--color-accent-primary);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
}

.about-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent-primary);
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-link:hover::after {
  width: 100%;
}

.about-link svg {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-link:hover svg {
  transform: translateX(5px);
}

.about-link:hover {
  color: var(--color-accent-light);
}

/* ===== About Page ===== */

.about-main {
  padding-top: 8rem;
  position: relative;
  overflow: hidden;
}

.about-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
}

.about-image {
  position: sticky;
  top: 6rem;
  z-index: 3;
}

.about-portrait {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  filter: brightness(0.9);
}

.about-text h2 {
  text-align: left;
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.about-text h2::after {
  margin: 0.8rem 0 0;
  width: 30px;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(215, 208, 208, 0.85);
  margin-bottom: 1.6rem;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* About text reveal animation */
.about-title-reveal {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-title-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-line {
  opacity: 0;
  transform: translateY(15px);
  filter: blur(3px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.7s ease;
}

.about-line.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.smoke-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 2;
  opacity: 0.5;
  mix-blend-mode: screen;
  will-change: transform;
  animation: smokeDrift 20s linear infinite;
}

.smoke-fullpage {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
}

@keyframes smokeDrift {
  0%   { transform: translate3d(0, 0, 0) scale(1.05); }
  33%  { transform: translate3d(15px, -10px, 0) scale(1.07); }
  66%  { transform: translate3d(-10px, 5px, 0) scale(1.04); }
  100% { transform: translate3d(0, 0, 0) scale(1.05); }
}

/* About Philosophy */
.about-philosophy {
  background: rgba(23, 20, 39, 0.3);
}

.philosophy-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

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

.philosophy-item h3 {
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  margin-bottom: 0;
}

.philosophy-line {
  width: 25px;
  height: 1px;
  background: var(--color-accent-primary);
  margin: 0.8rem auto;
  opacity: 0.5;
}

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

/* About CTA */
.about-cta {
  text-align: center;
}

.about-cta-content p {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  font-style: italic;
  margin-bottom: 1.5rem;
}

/* ===== Contact Page ===== */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: none;
  color: var(--color-text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(17, 14, 31, 0.6);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: 6px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent-primary);
  background: rgba(17, 14, 31, 0.8);
}

.form-group select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23c4a882' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

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

.form-group textarea {
  resize: vertical;
}

/* ===== Services Page ===== */
.services-first-section {
  padding-top: 8rem;
  position: relative;
  z-index: 1;
}

.services-first-section,
.svc-showcase,
.svc-submit {
  padding-bottom: 3.5rem;
}

.svc-showcase,
.svc-submit {
  padding-top: 3.5rem;
  position: relative;
  z-index: 1;
}

/* ===== Services Showcase ===== */
.svc-cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 620px;
  margin: 0 auto;
}

.svc-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.4s ease, transform 0.3s ease;
}

.svc-card:hover {
  border-color: rgba(196, 168, 130, 0.3);
  transform: translateY(-2px);
}

.svc-card-img {
  position: relative;
  overflow: hidden;
  min-height: 180px;
}

.svc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.75);
}

.svc-card:hover .svc-card-img img {
  transform: scale(1.06);
  filter: brightness(0.85);
}


.svc-card-info {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
}

.svc-card-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.4rem;
}

.svc-card-duration {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}

.svc-card-price {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--color-accent-primary);
  letter-spacing: 0.05em;
}

.svc-card-info h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.svc-card-info p {
  color: var(--color-text-muted);
  font-size: 0.82rem;
  line-height: 1.7;
  flex: 1;
}

.svc-card-pay {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(196, 168, 130, 0.08);
  color: #69b3e7;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
}

.svc-card:hover .svc-card-pay {
  color: #9dcef0;
}

.svc-card-pay svg {
  fill: currentColor;
  width: 14px;
  height: 14px;
}

/* Make svc-card a link */
a.svc-card {
  text-decoration: none;
  color: inherit;
}

a.svc-card:hover {
  color: inherit;
}

/* Services section h2 smaller */
/* ===== Mobile Tabs ===== */
.svc-tabs {
  display: none;
}

/* ===== Submit Section ===== */
.svc-submit {
  background: rgba(23, 20, 39, 0.3);
}

.svc-form-wrap {
  max-width: 680px;
  margin: 0 auto;
  background: rgba(34, 30, 64, 0.5);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 3rem;
}

/* Form */
.submit-form {
  width: 100%;
}

.form-block {
  margin-bottom: 0;
  padding: 0;
  border: none;
}

.form-block + .form-block {
  margin-top: 1.8rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(196, 168, 130, 0.08);
}

.form-block-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: none;
  color: var(--color-accent-primary);
  margin-bottom: 1.2rem;
  font-weight: 400;
  padding: 0;
  border: none;
}

.form-block-title::after {
  display: none;
}

.form-block-desc {
  color: var(--color-text-muted);
  font-size: 0.82rem;
  margin-top: -0.6rem;
  margin-bottom: 1.2rem;
  font-style: italic;
}

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

.form-group {
  margin-bottom: 1.2rem;
}

.form-row .form-group {
  margin-bottom: 0;
}

.label-required {
  color: var(--color-accent-primary);
}

/* Custom Select (service selector) */
.custom-select {
  position: relative;
}

.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(17, 14, 31, 0.6);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease;
  text-align: left;
}

.custom-select-trigger:hover,
.custom-select.open .custom-select-trigger {
  border-color: var(--color-accent-primary);
  background: rgba(17, 14, 31, 0.8);
}

.custom-select-trigger svg {
  color: var(--color-accent-primary);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.custom-select.open .custom-select-trigger svg {
  transform: rotate(180deg);
}

.custom-select-value {
  color: var(--color-text-muted);
}

.custom-select-value.selected {
  color: var(--color-text);
}

.custom-select-dropdown {
  display: block;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: rgba(23, 20, 39, 0.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(196, 168, 130, 0.12);
  border-radius: 8px;
  padding: 6px 0;
  z-index: 100;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: scale(0.95) translateY(-5px);
  transform-origin: top;
  transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.custom-select.open .custom-select-dropdown {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.custom-select-option {
  display: block;
  padding: 10px 18px;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}

.custom-select-option:hover {
  color: var(--color-white);
  background: rgba(196, 168, 130, 0.08);
}

.custom-select-option.active {
  color: var(--color-accent-primary);
}

/* PayPal Payment Section */
.paypal-pay-section {
  margin-bottom: 1.5rem;
  text-align: center;
}

.paypal-instruction {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 1.2rem;
  font-style: italic;
}

.paypal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.8rem;
  background: rgba(0, 48, 135, 0.2);
  color: #69b3e7;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  border-radius: 6px;
  border: 1px solid rgba(0, 112, 186, 0.2);
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.paypal-btn:hover {
  background: rgba(0, 48, 135, 0.3);
  color: #9dcef0;
  border-color: rgba(0, 112, 186, 0.35);
  transform: translateY(-1px);
}

.paypal-btn svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  fill: #69b3e7;
  transition: fill 0.3s ease;
}

.paypal-btn:hover svg {
  fill: #9dcef0;
}

/* File Upload */
.file-upload {
  position: relative;
  cursor: pointer;
}

.file-upload input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.file-upload-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem;
  border: 1px dashed rgba(196, 168, 130, 0.2);
  border-radius: 8px;
  background: rgba(17, 14, 31, 0.4);
  transition: border-color 0.3s ease, background 0.3s ease;
  color: var(--color-text-muted);
}

.file-upload:hover .file-upload-content {
  border-color: var(--color-accent-primary);
  background: rgba(196, 168, 130, 0.03);
}

.file-upload-text {
  font-size: 0.85rem;
  color: var(--color-text);
}

.file-upload-hint {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

/* Submit Button */
.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  margin-top: 1.5rem;
  padding: 0.9rem 2rem;
  background: rgba(196, 168, 130, 0.75);
  border: none;
  color: var(--color-bg);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: rgba(196, 168, 130, 0.9);
}

.submit-btn svg {
  stroke: var(--color-bg);
  transition: transform 0.3s ease;
}

.submit-btn:hover svg {
  transform: translateX(3px);
}

/* ===== Blog Page ===== */
.blog-page {
  padding-top: 8rem;
  position: relative;
  z-index: 1;
}

.blog-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.blog-entry {
  display: grid;
  grid-template-columns: 220px 1fr;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.blog-entry:hover {
  border-color: rgba(196, 168, 130, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  color: inherit;
}

.blog-entry-img {
  overflow: hidden;
  min-height: 180px;
}

.blog-entry-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.8);
}

.blog-entry:hover .blog-entry-img img {
  transform: scale(1.05);
  filter: brightness(0.9);
}

.blog-entry-body {
  padding: 1.8rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-entry-body time {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  letter-spacing: 0.12em;
  text-transform: none;
  margin-bottom: 0.4rem;
}

.blog-entry-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--color-white);
  transition: color 0.3s ease;
}

.blog-entry:hover .blog-entry-body h3 {
  color: var(--color-accent-primary);
}

.blog-entry-body p {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.blog-entry-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-accent-primary);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  font-family: var(--font-heading);
}

.blog-entry-link svg {
  transition: transform 0.3s ease;
}

.blog-entry:hover .blog-entry-link svg {
  transform: translateX(4px);
}

/* ===== Blog Article Page ===== */
.blog-article-header {
  position: relative;
  z-index: 1;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.blog-article-header-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.6);
}

.blog-article-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(23, 20, 39, 0.3) 0%,
    rgba(23, 20, 39, 0.6) 50%,
    rgba(23, 20, 39, 0.95) 100%
  );
}

.blog-article-header-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 2rem 3.5rem;
}

.blog-article-header-content time {
  font-size: 0.75rem;
  color: var(--color-accent-primary);
  letter-spacing: 0.15em;
  text-transform: none;
}

.blog-article-header-content h1 {
  font-size: 2.8rem;
  color: var(--color-white);
  letter-spacing: 0.1em;
  font-weight: 300;
  margin: 0.6rem 0 0.8rem;
}

.blog-article-author {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-style: italic;
  letter-spacing: 0.05em;
}

.blog-article-body {
  padding: 4rem 0;
  position: relative;
  z-index: 1;
}

.blog-article-content {
  max-width: 640px;
  margin: 0 auto;
}

.blog-article-content p {
  font-size: 1rem;
  line-height: 2;
  color: rgba(215, 208, 208, 0.85);
  margin-bottom: 1.8rem;
}

.blog-article-content p:last-child {
  margin-bottom: 0;
}

.blog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--color-accent-primary);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(196, 168, 130, 0.1);
  max-width: 640px;
}

.blog-back-link svg {
  transition: transform 0.3s ease;
}

.blog-back-link:hover svg {
  transform: translateX(-4px);
}

.blog-back-link:hover {
  color: var(--color-accent-light);
}

/* ===== Footer ===== */
.site-footer {
  position: relative;
  z-index: 1;
  padding: 4rem 0 2.5rem;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/footer-bg.png') center bottom / 100% auto no-repeat;
  z-index: -2;
}


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

/* Top: logo + nav */
.footer-top {
  margin-bottom: 2.5rem;
}

.footer-logo {
  height: 30px;
  width: auto;
  margin: 0 auto 1.5rem;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
}

.footer-nav a {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--color-accent-primary);
}

/* Middle: newsletter */
.footer-middle {
  margin-bottom: 2.5rem;
}

.footer-newsletter {
  display: flex;
  max-width: 400px;
  margin: 0 auto;
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.footer-newsletter:focus-within {
  border-color: var(--color-accent-primary);
}

.footer-newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--color-text);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
}

.footer-newsletter button {
  background: transparent;
  border: none;
  border-left: 1px solid var(--color-border);
  color: var(--color-accent-primary);
  padding: 0.75rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.footer-newsletter button:hover {
  background: rgba(196, 168, 130, 0.1);
}

/* Divider */
.footer-divider {
  width: 40px;
  height: 1px;
  background: var(--color-accent-primary);
  opacity: 0.3;
  margin: 0 auto 2rem;
}

/* Bottom: copyright + social + payment */
.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.footer-social {
  margin-bottom: 1.2rem;
}

.footer-social a {
  color: var(--color-text-muted);
  transition: color 0.3s ease;
  display: inline-flex;
}

.footer-social a:hover {
  color: var(--color-accent-primary);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .navbar {
    justify-content: space-between;
  }

  .nav-toggle {
    display: flex;
    order: -1;
  }

  .nav-home-item {
    display: block;
  }

  .nav-lang {
    margin-left: 0;
    position: relative;
  }

  /* Dropdown menu - slides from top */
  .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(23, 20, 39, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 0 2rem;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition:
      max-height 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
      opacity 0.35s ease,
      transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-bottom: 1px solid transparent;
  }

  .nav-links.open {
    max-height: 300px;
    opacity: 1;
    transform: translateY(0);
    padding: 0.8rem 2rem 1.2rem;
    border-bottom: none;
  }

  .nav-links li {
    text-align: center;
  }

  .nav-links a {
    font-size: 1.1rem;
    font-family: var(--font-heading);
    letter-spacing: 0.18em;
    padding: 0.85rem 0;
    display: block;
    border-bottom: none;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
  }


  .nav-links.open a {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links.open li:nth-child(1) a { transition-delay: 0.08s; }
  .nav-links.open li:nth-child(2) a { transition-delay: 0.15s; }
  .nav-links.open li:nth-child(3) a { transition-delay: 0.22s; }

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

  /* Navbar solid when menu open */
  .site-header.menu-open {
    background: rgba(23, 20, 39, 0.97);
    backdrop-filter: blur(20px);
  }

  .hero-title {
    font-size: 2.2rem;
    letter-spacing: 0.12em;
    white-space: normal;
  }

  .hero-quote {
    font-size: 1.05rem;
  }

  .section h2 {
    font-size: 2rem;
  }

  /* About page mobile */
  .about-main {
    padding-top: 6rem;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-image {
    position: static;
    max-width: 300px;
    margin: 0 auto;
  }

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

  .about-text h2::after {
    margin: 0.8rem auto 0;
  }

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

  .philosophy-list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* About preview (homepage) mobile */
  .about-preview {
    min-height: 50vh;
  }

  .about-preview-overlay {
    background: linear-gradient(
      to bottom,
      rgba(23, 20, 39, 0.85) 0%,
      rgba(23, 20, 39, 0.65) 100%
    );
  }

  .about-preview-content {
    text-align: center;
    padding: 4rem 2rem;
  }

  .about-preview-content h2 {
    text-align: center;
    font-size: 2rem;
  }

  .about-preview-content p {
    max-width: 100%;
  }



  .steps {
    display: block;
    position: relative;
    min-height: 160px;
  }

  .step {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
  }

  .step.active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .step .step-number {
    display: none;
  }

  /* Steps navigation */
  .steps-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 2.5rem;
  }

  .steps-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(196, 168, 130, 0.25);
    background: transparent;
    color: var(--color-text-muted);
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
  }

  .steps-nav-btn.active {
    border-color: var(--color-accent-primary);
    color: var(--color-accent-primary);
    background: rgba(196, 168, 130, 0.08);
    transform: scale(1.1);
  }

  .steps-nav-line {
    width: 40px;
    height: 1px;
    background: rgba(196, 168, 130, 0.15);
    flex-shrink: 0;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .site-footer::before {
    background-size: auto 100%;
    background-position: center bottom;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }

  /* Mobile tabs - pill toggle */
  .svc-tabs {
    display: flex;
    justify-content: center;
    padding: 0 2rem;
    margin-bottom: 0.5rem;
  }

  .svc-tabs-inner {
    display: flex;
    background: rgba(23, 20, 39, 0.6);
    border: 1px solid var(--color-border);
    border-radius: 50px;
    padding: 4px;
    gap: 2px;
  }

  .svc-tab {
    padding: 0.65rem 2rem;
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .svc-tab.active {
    color: var(--color-accent-primary);
    background: rgba(196, 168, 130, 0.1);
    border: 1px solid rgba(196, 168, 130, 0.2);
  }

  .svc-panel {
    display: none;
  }

  .svc-panel.active {
    display: block;
    animation: panelFadeIn 0.5s ease forwards;
  }

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

  .svc-showcase h2,
  .svc-submit h2 {
    display: none;
  }

  /* Services page mobile */
  .svc-card {
    grid-template-columns: 130px 1fr;
  }

  .svc-card-img {
    min-height: 150px;
  }

  .svc-card-info p {
    display: none;
  }

  .svc-form-wrap {
    padding: 2rem 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .services-first-section,
  .blog-page {
    padding-top: 7rem;
  }

  /* Blog mobile */
  .blog-entry {
    grid-template-columns: 130px 1fr;
  }

  .blog-entry-img {
    min-height: 140px;
  }

  .blog-entry-body {
    padding: 1.2rem 1.3rem;
  }

  .blog-entry-body h3 {
    font-size: 1.05rem;
  }

  .blog-entry-body p {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .services-first-section,
  .blog-page,
  .about-main {
    padding-top: 6rem;
  }

  .container {
    padding: 0 1.25rem;
  }
}

/* ===== Stars Canvas ===== */
#stars-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
