* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #d4bd8a;
  --green: #0f2e26;
}

body {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* Orqa fon rasmi */
.bg {
  min-height: 100vh;
  width: 100%;
  background-image: url("images/benedict-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.overlay {
  min-height: 100vh;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.container {
  margin: 0 auto;
  display: flex;
  min-height: 100vh;
  width: 100%;
  max-width: 28rem; /* 448px */
  flex-direction: column;
  padding: 2rem 1.25rem; /* py-8 px-5 */
}

/* Til tugmalari */
.langs {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.lang-btn {
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s ease;
  background: transparent;
  border: 1px solid rgba(212, 189, 138, 0.4);
  color: rgba(212, 189, 138, 0.8);
}

.lang-btn:hover {
  border-color: var(--gold);
}

.lang-btn.active {
  background: var(--gold);
  color: var(--green);
  border-color: var(--gold);
}

/* Logo */
.logo-wrap {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.logo {
  height: 10rem;
  width: 10rem;
  overflow: hidden;
  border-radius: 9999px;
  border: 4px solid var(--gold);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.logo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
}

/* Sarlavha */
h1 {
  margin-bottom: 2rem;
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
  color: var(--gold);
}

/* Havolalar */
.links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  border-radius: 1rem;
  border: 1px solid rgba(212, 189, 138, 0.3);
  background: rgba(15, 46, 38, 0.8);
  padding: 0.875rem 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  text-decoration: none;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
}

a.link:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: var(--green);
  box-shadow: 0 10px 30px -10px rgba(212, 189, 138, 0.5);
}

.phone-btn:hover {
  border-color: var(--gold);
  background: var(--green);
}

.icon {
  display: flex;
  height: 2.25rem;
  width: 2.25rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--gold);
  color: var(--green);
}

.icon svg {
  height: 1.25rem;
  width: 1.25rem;
}

.link-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.link-title {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
}

.flex-1 {
  flex: 1;
}

.link-sub {
  margin-top: 0.125rem;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  color: rgba(212, 189, 138, 0.7);
}

/* Telefon akkordioni */
.phone-btn {
  color: inherit;
}

.chevron {
  height: 1.25rem;
  width: 1.25rem;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.phone-btn.open .chevron {
  transform: rotate(180deg);
}

.phones {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin 0.3s ease;
}

.phones.open {
  max-height: 300px;
  margin-top: 0.75rem;
}

.phones a {
  display: block;
  border-radius: 1rem;
  border: 1px solid rgba(212, 189, 138, 0.3);
  background: rgba(15, 46, 38, 0.8);
  padding: 0.75rem 1rem;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--gold);
  text-decoration: none;
  transition: all 0.2s ease;
}

.phones a:hover {
  border-color: var(--gold);
  background: var(--green);
}

/* Footer */
.footer {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(212, 189, 138, 0.6);
}
