/* YAKUP VURUR — premium corporate theme */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap");

:root {
  --bg: #0c0e11;
  --bg-soft: #14181d;
  --surface: #1a2028;
  --surface-2: #222a33;
  --gold: #c9a66b;
  --gold-soft: #e8d4b0;
  --gold-dim: rgba(201, 166, 107, 0.35);
  --text: #f2f3f5;
  --muted: #9aa3ad;
  --line: rgba(201, 166, 107, 0.28);
  --max: 1180px;
  --nav-h: 72px;
  --radius: 6px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --font-body: "Inter", system-ui, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
}

@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;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(201, 166, 107, 0.12), transparent),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 45%, #0a0c0e 100%);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
}

a {
  color: var(--gold-soft);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: #fff;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.container {
  width: min(var(--max), 92%);
  margin-inline: auto;
}

/* ——— Navbar ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  background: rgba(12, 14, 17, 0.72);
  backdrop-filter: blur(12px);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(10, 12, 15, 0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.site-header .inner {
  width: min(var(--max), 92%);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  flex-shrink: 0;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text);
}

.brand__name span {
  color: var(--gold);
}

.brand__tag {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold-soft);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  margin-left: auto;
  padding: 0;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--gold-soft);
}

.lang-switch {
  display: flex;
  gap: 0.35rem;
  flex-shrink: 0;
}

.lang-switch button {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.55rem;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.lang-switch button:hover {
  color: var(--text);
  border-color: var(--gold);
}

.lang-switch button.is-active {
  background: linear-gradient(135deg, #b89255, var(--gold-soft));
  color: #1a1510;
  border-color: var(--gold-soft);
}

@media (max-width: 900px) {
  .site-header .inner {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: flex;
  }

  .header-actions {
    margin-left: auto;
    order: 2;
  }

  .nav-links {
    order: 4;
    margin-left: 0;
    width: 100%;
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    background: rgba(10, 12, 15, 0.98);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    justify-content: flex-start;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-links a {
    display: block;
    padding: 0.85rem 0;
  }
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: clamp(420px, 78vh, 720px);
  display: flex;
  align-items: center;
  padding: clamp(3rem, 8vw, 5.5rem) 0;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45) saturate(0.9);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10, 12, 15, 0.92) 0%, rgba(10, 12, 15, 0.55) 48%, rgba(10, 12, 15, 0.35) 100%),
    radial-gradient(circle at 70% 40%, rgba(201, 166, 107, 0.15), transparent 50%);
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-soft);
  margin: 0 0 1rem;
}

.hero h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2rem, 5vw, 3.5rem);
  max-width: 16ch;
}

.hero__lead {
  margin: 0 0 2rem;
  max-width: 38rem;
  font-size: 1.05rem;
  color: var(--muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  color: var(--text);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn--primary {
  background: linear-gradient(135deg, #b89255, var(--gold-soft));
  color: #1a1510;
  border-color: var(--gold-soft);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
}

/* ——— Sections ——— */
.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-bottom: 1px solid rgba(201, 166, 107, 0.1);
}

.section__head {
  margin-bottom: 2.25rem;
  max-width: 42rem;
}

.section__eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
}

.section__head h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
}

.section__head p {
  margin: 0;
  color: var(--muted);
}

/* ——— Cards grid ——— */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.card {
  background: linear-gradient(165deg, var(--surface), var(--surface-2));
  border: 1px solid rgba(201, 166, 107, 0.2);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

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

.card__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.card__body {
  padding: 1.25rem 1.35rem 1.5rem;
  border-top: 3px solid var(--gold);
  margin-top: -3px;
}

.card__body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.card__body p {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.card__link {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-soft);
}

/* ——— Process steps ——— */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

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

@media (max-width: 520px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

.step {
  padding: 1.35rem 1.2rem;
  background: rgba(26, 32, 40, 0.65);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.step__num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.step h4 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.step p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

/* ——— Trust bar ——— */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
  padding: 2rem;
  background: rgba(201, 166, 107, 0.06);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.trust-bar strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gold-soft);
}

.trust-bar span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ——— CTA band ——— */
.cta-band {
  text-align: center;
  padding: clamp(2.5rem, 5vw, 4rem);
  background: linear-gradient(160deg, var(--surface), #151a20);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.cta-band h2 {
  margin: 0 0 0.75rem;
}

.cta-band p {
  margin: 0 auto 1.5rem;
  max-width: 36rem;
  color: var(--muted);
}

/* ——— Page hero (inner pages) ——— */
.page-hero {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(ellipse at 30% 0%, rgba(201, 166, 107, 0.1), transparent 55%);
}

.page-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

.page-hero p {
  margin: 0;
  max-width: 40rem;
  color: var(--muted);
}

/* ——— Two column ——— */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 860px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

.prose p {
  color: var(--muted);
  margin: 0 0 1rem;
}

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

/* ——— Values ——— */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

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

@media (max-width: 520px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

.value-card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(26, 32, 40, 0.5);
}

.value-card h4 {
  margin: 0 0 0.5rem;
  color: var(--gold-soft);
  font-size: 1rem;
}

.value-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ——— Gallery ——— */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.gallery-filters button {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.gallery-filters button:hover,
.gallery-filters button.is-active {
  background: rgba(201, 166, 107, 0.15);
  color: var(--gold-soft);
  border-color: var(--gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.85rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(201, 166, 107, 0.15);
}

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

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item.is-hidden {
  display: none;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent 45%);
  opacity: 0;
  transition: opacity 0.25s;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* ——— Lightbox ——— */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.88);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: min(92vw, 1200px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  border-radius: var(--radius);
  cursor: pointer;
}

.lightbox__close:hover {
  background: var(--surface-2);
}

/* ——— Contact ——— */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  padding: 1.5rem 1.75rem;
  background: linear-gradient(165deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-card h3 {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-card p,
.contact-card a {
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
}

.contact-card a:hover {
  color: var(--gold-soft);
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 320px;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
  filter: grayscale(0.25) contrast(1.05);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

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

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

label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

input,
textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

/* ——— Footer ——— */
.site-footer {
  padding: 3rem 0 1.5rem;
  margin-top: auto;
  border-top: 1px solid var(--line);
  background: #080a0c;
}

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

@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.site-footer h4 {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.site-footer p,
.site-footer li {
  font-size: 0.9rem;
  color: var(--muted);
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 0.5rem;
}

.site-footer a {
  color: var(--muted);
}

.site-footer a:hover {
  color: var(--gold-soft);
}

.footer-bottom {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
}

/* ——— WhatsApp float ——— */
.wa-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55);
  color: #fff;
}

.wa-float svg {
  width: 28px;
  height: 28px;
}

/* ——— Layout wrapper ——— */
.page-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}
