/* ============================================================
   Terrace Tema Site Yöneticiliği — V4 STUNNING UPGRADE
   Real Images + Enhanced Polish
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.75;
  color: #374151;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

body.rtl {
  direction: rtl;
  text-align: right;
}

/* --- Typography -------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  color: #111827;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 3.5vw, 2.75rem); font-weight: 600; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  color: #374151;
  line-height: 1.75;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

ul, ol {
  list-style: none;
}

/* --- Utility ----------------------------------------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 120px 0;
}

.section--alt {
  background-color: #FAFAFA;
}

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

/* Language visibility */
[data-lang] {
  display: none;
}
[data-lang="tr"] {
  display: inline;
}

.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #B8860B;
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 24px;
}

.section-desc {
  max-width: 640px;
  margin: 0 auto 64px;
  color: #6B7280;
  font-size: 1.0625rem;
  line-height: 1.8;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger > .reveal:nth-child(1) { transition-delay: 0ms; }
.stagger > .reveal:nth-child(2) { transition-delay: 60ms; }
.stagger > .reveal:nth-child(3) { transition-delay: 120ms; }
.stagger > .reveal:nth-child(4) { transition-delay: 180ms; }
.stagger > .reveal:nth-child(5) { transition-delay: 240ms; }
.stagger > .reveal:nth-child(6) { transition-delay: 300ms; }
.stagger > .reveal:nth-child(7) { transition-delay: 360ms; }
.stagger > .reveal:nth-child(8) { transition-delay: 420ms; }
.stagger > .reveal:nth-child(9) { transition-delay: 480ms; }
.stagger > .reveal:nth-child(10) { transition-delay: 540ms; }
.stagger > .reveal:nth-child(11) { transition-delay: 600ms; }
.stagger > .reveal:nth-child(12) { transition-delay: 660ms; }
.stagger > .reveal:nth-child(13) { transition-delay: 720ms; }
.stagger > .reveal:nth-child(14) { transition-delay: 780ms; }

/* --- Buttons ----------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn:active::after {
  opacity: 1;
}

.btn--primary {
  background-color: #111827;
  color: #FFFFFF;
}

.btn--primary:hover {
  background-color: #1F2937;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.15);
}

.btn--secondary {
  background-color: transparent;
  color: #111827;
  border: 1.5px solid #E5E7EB;
}

.btn--secondary:hover {
  border-color: #D1D5DB;
  background-color: #F9FAFB;
  transform: translateY(-2px);
}

.btn--white {
  background-color: #FFFFFF;
  color: #111827;
}

.btn--white:hover {
  background-color: #F9FAFB;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.btn--glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn--glass:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.875rem;
  border-radius: 10px;
}

/* --- Header / Navigation ----------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

/* Header starts transparent on hero */
.header:not(.scrolled) .header__logo-img,
.header:not(.scrolled) .header__nav a {
  color: #FFFFFF;
}

.header:not(.scrolled) .header__logo-img {
  filter: brightness(0) invert(1);
}

.header:not(.scrolled) .lang-switcher {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.header:not(.scrolled) .lang-switcher__btn {
  color: rgba(255, 255, 255, 0.7);
}

.header:not(.scrolled) .lang-switcher__btn.active {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

.header:not(.scrolled) .menu-toggle span {
  background: #FFFFFF;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  letter-spacing: -0.02em;
}

.header__logo-img {
  height: 67px;
  width: auto;
  transition: transform 0.2s ease;
}

.header__logo:hover .header__logo-img {
  transform: scale(1.05);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__nav a {
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 450;
  color: #6B7280;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.header__nav a:hover {
  color: #111827;
  background-color: #F3F4F6;
}

/* Fix: hero üzerinde hover'da yazı okunabilir olsun */
.header:not(.scrolled) .header__nav a:hover {
  color: #111827;
  background-color: rgba(255, 255, 255, 0.9);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: #F3F4F6;
  border-radius: 10px;
  padding: 3px;
}

.lang-switcher__btn {
  padding: 6px 12px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #6B7280;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.lang-switcher__btn:hover {
  color: #374151;
}

.lang-switcher__btn.active {
  background: #FFFFFF;
  color: #111827;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.menu-toggle:hover {
  background: rgba(243, 244, 246, 0.5);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: #374151;
  margin: 5px auto;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}

/* Mobile Menu Panel */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  padding: 24px;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu.open {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu a {
  display: block;
  padding: 16px 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: #111827;
  border-bottom: 1px solid #F3F4F6;
}

.mobile-menu__lang {
  display: flex;
  gap: 8px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #E5E7EB;
}

/* --- Hero -------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.12); }
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(17, 24, 39, 0.55) 0%,
    rgba(17, 24, 39, 0.65) 50%,
    rgba(17, 24, 39, 0.75) 100%
  );
}

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

.hero__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

.hero__title {
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.hero__subtitle {
  font-size: 1.1875rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 48px;
}

.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Scroll Indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero__scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.hero__scroll-wheel {
  width: 3px;
  height: 8px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes scrollWheel {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(6px); }
}

/* Quick Info Bar */
.quick-info {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.quick-info__item {
  background: rgba(255, 255, 255, 0.08);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: background 0.2s ease;
}

.quick-info__item:hover {
  background: rgba(255, 255, 255, 0.12);
}

.quick-info__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D4A017;
}

.quick-info__label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2px;
}

.quick-info__value {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

/* --- About Section ----------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img {
  border-radius: 16px;
  overflow: hidden;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-img:hover img {
  transform: scale(1.03);
}

.about-img--main {
  aspect-ratio: 4 / 3;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
}

.about-img--secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 55%;
  aspect-ratio: 4 / 3;
  border: 6px solid #FFFFFF;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.about-stat {
  position: absolute;
  top: -20px;
  left: -20px;
  background: #111827;
  color: #FFFFFF;
  padding: 24px 28px;
  border-radius: 16px;
  text-align: center;
  z-index: 3;
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.2);
}

.about-stat__number {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #D4A017;
}

.about-stat__label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

.about-content .section-label {
  text-align: left;
}

.about-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #6B7280;
  margin-bottom: 40px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #FAFAFA;
  border-radius: 12px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #374151;
  transition: all 0.2s ease;
}

.about-feature:hover {
  background: #F3F4F6;
  transform: translateX(4px);
}

body.rtl .about-feature:hover {
  transform: translateX(-4px);
}

.about-feature i {
  color: #B8860B;
}

/* --- Services ---------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #FFFFFF;
  border: 1px solid #F3F4F6;
  border-radius: 16px;
  padding: 36px 32px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #B8860B, #D4A017);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  border-color: #E5E7EB;
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__icon {
  width: 52px;
  height: 52px;
  background: #FFFBEB;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B8860B;
  margin-bottom: 20px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-card__icon {
  background: linear-gradient(135deg, #FFFBEB, #FEF3C7);
  transform: scale(1.08);
}

.service-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 12px;
}

.service-card__text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #6B7280;
}

/* --- Board ------------------------------------------------- */
.board-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.board-card {
  background: #FFFFFF;
  border: 1px solid #F3F4F6;
  border-radius: 16px;
  padding: 40px 28px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.board-card:hover {
  border-color: #E5E7EB;
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
}

.board-card__avatar {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #F3F4F6, #E5E7EB);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9CA3AF;
  transition: all 0.3s ease;
}

.board-card:hover .board-card__avatar {
  background: linear-gradient(135deg, #FFFBEB, #FEF3C7);
  color: #B8860B;
}

.board-card__name {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 6px;
}

.board-card__role {
  font-size: 0.875rem;
  color: #B8860B;
  font-weight: 500;
}

/* --- Announcements ----------------------------------------- */
.announcements-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.announcement-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  background: #FFFFFF;
  border: 1px solid #F3F4F6;
  border-radius: 16px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.announcement-item:hover {
  border-color: #E5E7EB;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.announcement-item::after {
  content: '→';
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%) translateX(-8px);
  opacity: 0;
  color: #B8860B;
  font-size: 1.25rem;
  transition: all 0.25s ease;
}

body.rtl .announcement-item::after {
  content: '←';
  right: auto;
  left: 32px;
  transform: translateY(-50%) translateX(8px);
}

.announcement-item:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.announcement-item__date {
  min-width: 72px;
  text-align: center;
  padding: 8px 12px;
  background: #FAFAFA;
  border-radius: 12px;
}

.announcement-item__day {
  font-size: 1.75rem;
  font-weight: 700;
  color: #111827;
  line-height: 1;
}

.announcement-item__monthyear {
  font-size: 0.75rem;
  font-weight: 500;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.announcement-item__divider {
  width: 1px;
  height: 48px;
  background: #E5E7EB;
}

.announcement-item__content {
  flex: 1;
}

.announcement-item__title {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 4px;
}

.announcement-item__excerpt {
  font-size: 0.875rem;
  color: #9CA3AF;
}

/* --- Rules ------------------------------------------------- */
.rules-container {
  max-width: 900px;
  margin: 0 auto;
}

.rules-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  justify-content: center;
}

.rules-tab {
  padding: 10px 24px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #6B7280;
  background: transparent;
  border: 1.5px solid #E5E7EB;
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s ease;
}

.rules-tab.active {
  background: #111827;
  color: #FFFFFF;
  border-color: #111827;
}

.rules-tab:hover:not(.active) {
  border-color: #D1D5DB;
  color: #374151;
}

.rules-panel {
  display: none;
}

.rules-panel.active {
  display: block;
}

.rules-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rules-list li {
  position: relative;
  padding: 16px 20px 16px 48px;
  background: #FAFAFA;
  border-radius: 12px;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #374151;
  transition: background 0.2s ease;
}

.rules-list li:hover {
  background: #F3F4F6;
}

.rules-list li::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 22px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #B8860B;
  opacity: 0.5;
}

body.rtl .rules-list li {
  padding: 16px 48px 16px 20px;
}

body.rtl .rules-list li::before {
  left: auto;
  right: 20px;
}

/* --- Gallery ----------------------------------------------- */
.gallery-filter {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
}

.gallery-filter__btn {
  padding: 8px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #6B7280;
  background: transparent;
  border: 1.5px solid #E5E7EB;
  border-radius: 100px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s ease;
}

.gallery-filter__btn.active {
  background: #111827;
  color: #FFFFFF;
  border-color: #111827;
}

.gallery-filter__btn:hover:not(.active) {
  border-color: #D1D5DB;
  color: #374151;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #F3F4F6;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

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

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 1;
}

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

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.5) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  z-index: 2;
}

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

.gallery-item__caption {
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Gallery loading shimmer */
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #F3F4F6 25%, #E5E7EB 50%, #F3F4F6 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  z-index: 0;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* --- Lightbox ---------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(10px);
}

.lightbox.open {
  display: flex;
  opacity: 1;
}

.lightbox__content {
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox__content img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__close:hover {
  opacity: 1;
}

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #FFFFFF;
  font-size: 2rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  backdrop-filter: blur(10px);
}

.lightbox__prev { left: 24px; }
.lightbox__next { right: 24px; }

.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox__counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  font-weight: 500;
}

/* --- Forms CTA --------------------------------------------- */
.forms-cta {
  border-radius: 24px;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
  background: #111827;
}

.forms-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 360px;
}

.forms-cta__img {
  position: relative;
  overflow: hidden;
}

.forms-cta__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.forms-cta__content {
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.forms-cta__content h3 {
  font-size: 1.75rem;
  margin-bottom: 16px;
  color: #FFFFFF;
}

.forms-cta__content p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
  font-size: 1rem;
  line-height: 1.7;
}

.forms-cta__content .btn--primary {
  background: #B8860B;
  align-self: flex-start;
}

.forms-cta__content .btn--primary:hover {
  background: #D4A017;
}

/* --- Contact ----------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: #FFFFFF;
  border: 1px solid #F3F4F6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B8860B;
}

.contact-info__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9CA3AF;
  margin-bottom: 2px;
}

.contact-info__value {
  font-size: 0.9375rem;
  color: #111827;
  font-weight: 500;
}

.contact-info__value a {
  color: #111827;
  transition: color 0.2s;
}

.contact-info__value a:hover {
  color: #B8860B;
}

.contact-map {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #F3F4F6;
  margin-top: 32px;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: none;
}

/* Contact Form */
.contact-form {
  background: #FFFFFF;
  border: 1px solid #F3F4F6;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.contact-form__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 28px;
  color: #111827;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 0.9375rem;
  color: #111827;
  background: #FAFAFA;
  border: 1.5px solid #E5E7EB;
  border-radius: 10px;
  transition: all 0.2s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  background: #FFFFFF;
  border-color: #B8860B;
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

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

/* --- Back to Top ------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: #111827;
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 900;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.15);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #1F2937;
  transform: translateY(-2px);
}

body.rtl .back-to-top {
  right: auto;
  left: 32px;
}

/* --- Footer ------------------------------------------------ */
.footer {
  background: #111827;
  color: #D1D5DB;
  padding: 80px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid #1F2937;
}

.footer__brand-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.footer__brand-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #9CA3AF;
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  background: #1F2937;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9CA3AF;
  transition: all 0.2s ease;
}

.footer__social a:hover {
  background: #374151;
  color: #FFFFFF;
}

.footer__heading {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9CA3AF;
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 0.9375rem;
  color: #D1D5DB;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: #FFFFFF;
}

.footer__contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.footer__contact-item i {
  color: #B8860B;
  margin-top: 3px;
  width: 16px;
  min-width: 16px;
}

.footer__contact-item span {
  font-size: 0.9375rem;
  color: #D1D5DB;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.8125rem;
  color: #6B7280;
}

.footer__online-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #B8860B;
  color: #FFFFFF;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.footer__online-btn:hover {
  background: #A0750A;
  transform: translateY(-1px);
}

/* --- Skip Link --------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: #111827;
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  z-index: 10000;
  font-size: 0.875rem;
  font-weight: 500;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

/* --- Focus styles ------------------------------------------ */
.btn:focus-visible,
.lang-switcher__btn:focus-visible,
.rules-tab:focus-visible,
.menu-toggle:focus-visible,
.gallery-filter__btn:focus-visible {
  outline: 2px solid #B8860B;
  outline-offset: 2px;
}

/* --- RTL Adjustments --------------------------------------- */
body.rtl .footer__contact-item {
  flex-direction: row-reverse;
}

body.rtl .contact-info__item {
  flex-direction: row-reverse;
}

body.rtl .announcement-item__content {
  text-align: right;
}

body.rtl .quick-info__item {
  flex-direction: row-reverse;
}

body.rtl .about-content .section-title {
  text-align: right;
}

body.rtl .about-img--secondary {
  right: auto;
  left: -40px;
}

body.rtl .about-stat {
  left: auto;
  right: -20px;
}

/* Smooth fade for lang switching */
[data-lang] {
  transition: opacity 0.15s ease;
}

/* Loading state for images */
img[loading="lazy"] {
  background: #F3F4F6;
}

/* --- Responsive -------------------------------------------- */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .board-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    gap: 48px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .forms-cta__inner {
    grid-template-columns: 1fr;
  }

  .forms-cta__img {
    max-height: 240px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }

  .header__nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: 100svh;
  }

  .hero__title {
    font-size: 2.25rem;
  }

  .hero__scroll-indicator {
    display: none;
  }

  .quick-info {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-img--secondary {
    position: relative;
    bottom: auto;
    right: auto;
    left: auto;
    width: 100%;
    border: none;
    margin-top: 12px;
  }

  .about-stat {
    position: relative;
    top: auto;
    left: auto;
    display: inline-block;
    margin-bottom: 16px;
  }

  .about-content .section-title {
    text-align: center !important;
  }

  .about-content .section-label {
    text-align: center;
  }

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

  .about-features {
    grid-template-columns: 1fr;
  }

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

  .board-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

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

  .gallery-item--wide {
    grid-column: span 2;
  }

  .gallery-filter {
    flex-wrap: wrap;
  }

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

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__ctas .btn {
    justify-content: center;
  }

  .lang-switcher {
    display: none;
  }

  .rules-tabs {
    flex-wrap: wrap;
  }

  .forms-cta__content {
    padding: 40px 28px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .gallery-item--wide {
    grid-column: span 1;
  }

  .announcement-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .announcement-item__divider {
    width: 100%;
    height: 1px;
  }

  .announcement-item::after {
    display: none;
  }

  .lightbox__prev { left: 12px; }
  .lightbox__next { right: 12px; }
}

/* --- Large Screens ----------------------------------------- */
@media (min-width: 1400px) {
  .container {
    max-width: 1280px;
  }

  .section {
    padding: 140px 0;
  }
}

/* --- Print ------------------------------------------------- */
@media print {
  .header,
  .mobile-menu,
  .hero__bg,
  .hero__scroll-indicator,
  .gallery-grid,
  .contact-form,
  .footer,
  .lightbox,
  .back-to-top {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
  }

  .hero__title {
    color: #111827 !important;
  }

  .hero__subtitle {
    color: #374151 !important;
  }

  .section {
    padding: 40px 0;
    page-break-inside: avoid;
  }

  body {
    font-size: 12pt;
    color: #000;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* --- Scrollbar --------------------------------------------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #FAFAFA;
}

::-webkit-scrollbar-thumb {
  background: #D1D5DB;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #9CA3AF;
}

/* --- Selection --------------------------------------------- */
::selection {
  background: rgba(184, 134, 11, 0.15);
  color: #111827;
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* --- High contrast ----------------------------------------- */
@media (prefers-contrast: high) {
  .service-card,
  .board-card {
    border-width: 2px;
    border-color: #374151;
  }

  .btn--secondary {
    border-width: 2px;
  }
}

/* ========== ANNOUNCEMENT MODAL ========== */
.ann-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.ann-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.ann-modal {
  background: #fff;
  border-radius: 20px;
  max-width: 780px;
  width: 92%;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 32px 64px rgba(0,0,0,0.2);
  animation: annSlideUp 0.35s ease;
}
@keyframes annSlideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.ann-modal__close {
  position: sticky;
  top: 16px;
  float: right;
  margin: 16px 16px 0 0;
  background: rgba(0,0,0,0.06);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
}
.ann-modal__close:hover { background: rgba(0,0,0,0.12); }
.ann-modal__content { padding: 48px 48px 40px; }
.ann-modal__header { margin-bottom: 28px; }
.ann-modal__date {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #B8860B;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.ann-modal__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
  margin: 0;
}
.ann-modal__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}
.ann-modal__gallery img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 16/10;
}
.ann-modal__body {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #374151;
}
.ann-modal__body h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111827;
  margin: 28px 0 12px;
}
.ann-modal__body h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #B8860B;
  margin: 20px 0 8px;
}
.ann-modal__body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.ann-modal__body ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
  font-size: 0.88rem;
  color: #4B5563;
}
.ann-modal__body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #B8860B;
}

/* Schedule Table */
.ann-schedule {
  background: #FAFAF8;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 24px 28px;
  margin: 20px 0 24px;
}
.ann-schedule h4 {
  margin: 0 0 14px !important;
  font-size: 1rem;
}
.ann-schedule table {
  width: 100%;
  border-collapse: collapse;
}
.ann-schedule table td {
  padding: 10px 16px;
  border-bottom: 1px solid #E5E7EB;
  font-size: 0.9rem;
}
.ann-schedule table tr:last-child td { border-bottom: none; }
.ann-schedule table td:first-child {
  font-weight: 600;
  color: #374151;
  width: 140px;
}
.ann-note {
  display: inline-block;
  font-size: 0.75rem;
  background: #FEF3C7;
  color: #92400E;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
}
.ann-schedule__note {
  font-size: 0.8rem;
  color: #6B7280;
  margin: 12px 0 0;
  font-style: italic;
}
.ann-scope-section { margin-bottom: 8px; }
.ann-footer {
  background: #F0FDF4;
  border-radius: 10px;
  padding: 14px 20px;
  color: #166534;
  font-size: 0.88rem;
  margin-top: 24px;
}
.ann-signature {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #E5E7EB;
  font-size: 0.88rem;
  color: #6B7280;
}

/* Announcement item arrow */
.announcement-item__arrow {
  display: flex;
  align-items: center;
  margin-left: auto;
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 0.2s, transform 0.2s;
}
.announcement-item:hover .announcement-item__arrow {
  opacity: 1;
  transform: translateX(4px);
}
.announcement-item:hover {
  background: #FAFAF8;
  transition: background 0.2s;
}

/* Modal responsive */
@media (max-width: 640px) {
  .ann-modal__content { padding: 32px 24px 28px; }
  .ann-modal__title { font-size: 1.25rem; }
  .ann-modal__gallery { grid-template-columns: 1fr; }
  .ann-schedule table td { padding: 8px 10px; font-size: 0.82rem; }
}

/* --- Current Works ----------------------------------------- */
#current-works .section-desc {
  max-width: 760px;
  margin: 0 auto;
}

.current-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.current-works-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.06);
}

#current-works .gallery-item {
  aspect-ratio: auto;
  background: #FFFFFF;
}

#current-works .gallery-item::before,
#current-works .gallery-item__overlay {
  display: none;
}

#current-works .gallery-item img {
  height: 220px;
  object-fit: cover;
  object-position: top;
}

.current-works-caption {
  padding: 12px 14px 14px;
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.5;
}

.current-works-videos {
  margin-top: 36px;
}

.current-works-subtitle {
  font-weight: 600;
  color: #111827;
  margin-bottom: 16px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.current-works-subtitle::before {
  content: '';
  width: 18px;
  height: 2px;
  background: #B8860B;
  display: inline-block;
}

.current-works-video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.works-video-card {
  background: #0F172A;
  border: 1px solid #1F2937;
  border-radius: 14px;
  overflow: hidden;
}

.works-video-card video {
  width: 100%;
  height: 280px;
  background: #0B0F1A;
  object-fit: contain;
  display: block;
}

.works-video-caption {
  padding: 12px 14px 14px;
  font-size: 0.9rem;
  color: #E5E7EB;
  line-height: 1.5;
}

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

  .current-works-video-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .current-works-grid {
    grid-template-columns: 1fr;
  }

  #current-works .gallery-item img {
    height: 210px;
  }

  .works-video-card video {
    height: 220px;
  }
}
