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

:root {
  --black: #050707;
  --dark: #091113;
  --card: #0d1719;
  --gold: #d9a900;
  --gold-light: #f3c928;
  --text: #f4f4f1;
  --muted: #a6adae;
  --line: rgba(217, 169, 0, .28);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--black);
  color: var(--text);
  overflow-x: hidden;
}

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

#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #030404;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity .8s ease, visibility .8s ease;
}

#loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  width: min(650px, 82vw);
  overflow: hidden;
  opacity: 0;
  transform: scale(.88);
  animation: logoIn 1.3s cubic-bezier(.16, 1, .3, 1) forwards;
}

.loader-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.loader-line {
  width: 0;
  height: 2px;
  margin-top: 25px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: lineIn 1.3s ease .7s forwards;
}

#loader > span {
  margin-top: 12px;
  font-size: 10px;
  letter-spacing: 5px;
  color: var(--gold-light);
  opacity: 0;
  animation: fadeIn .8s ease 1s forwards;
}

@keyframes logoIn {
  to { opacity: 1; transform: scale(1); }
}

@keyframes lineIn {
  to { width: 210px; }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 86px;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(3, 6, 7, .72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: .3s ease;
}

.navbar.scrolled {
  height: 72px;
  background: rgba(3, 6, 7, .95);
  border-bottom-color: var(--line);
}

.brand {
  width: 170px;
  height: 55px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.brand img {
  width: 100%;
  height: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

nav > a {
  position: relative;
  color: #ddd;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: .3s;
}

nav > a:not(.tenant-btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: .3s;
}

nav > a:hover,
nav > a.active {
  color: var(--gold-light);
}

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

.tenant-btn {
  border: 1px solid var(--gold);
  padding: 13px 20px;
  border-radius: 6px;
  color: var(--gold-light) !important;
  transition: .3s;
}

.tenant-btn:hover {
  background: var(--gold);
  color: #050505 !important;
  box-shadow: 0 0 25px rgba(217,169,0,.25);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 27px;
  height: 2px;
  background: white;
  margin: 6px;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background:
    url("images/hero.jpg") center center / cover no-repeat;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.50) 42%, rgba(0,0,0,.18) 100%),
    linear-gradient(180deg, rgba(0,0,0,.16) 0%, transparent 45%, rgba(0,0,0,.30) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin-left: 10%;
  padding-top: 60px;
}

.eyebrow,
.section-heading > p {
  color: var(--gold-light);
  letter-spacing: 4px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(48px, 7vw, 92px);
  line-height: .98;
  font-weight: 400;
  letter-spacing: -3px;
}

.hero h1 strong {
  color: var(--gold-light);
  font-weight: 700;
}

.hero-text {
  max-width: 550px;
  margin: 28px 0;
  color: #b8c0c1;
  line-height: 1.9;
  font-size: 15px;
}

.gold-btn {
  display: inline-flex;
  gap: 28px;
  align-items: center;
  padding: 15px 22px;
  background: var(--gold);
  color: #090909;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: .3s;
}

.gold-btn:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(217,169,0,.2);
}

.social-float {
  position: absolute;
  z-index: 3;
  right: 35px;
  bottom: 45px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-float a {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--gold-light);
  border-radius: 8px;
  font-size: 22px;
  transition: .3s;
}

.social-float a:hover {
  background: var(--gold);
  color: black;
}

.section {
  padding: 120px 9%;
}

.section-heading {
  max-width: 750px;
  margin-bottom: 55px;
}

.section-heading h2 {
  font-size: clamp(32px, 4vw, 55px);
  font-weight: 500;
  letter-spacing: -2px;
}

.section-heading h2 span {
  color: var(--gold-light);
}

.about {
  background: linear-gradient(180deg, #060909, #0a1113);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 20px;
}

.about-card,
.about-stat {
  min-height: 270px;
  padding: 35px;
  background: rgba(13,23,25,.75);
  border: 1px solid rgba(255,255,255,.07);
  transition: .3s;
}

.about-card:hover,
.about-stat:hover {
  border-color: var(--line);
  transform: translateY(-5px);
}

.gold-icon {
  color: var(--gold-light);
  font-size: 30px;
  margin-bottom: 35px;
}

.about-card h3,
.about-stat h3 {
  margin-bottom: 17px;
  font-size: 22px;
}

.about-card p,
.about-stat p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 13px;
}

.about-stat span {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 3px;
}

.about-stat h3 {
  margin-top: 40px;
  font-size: 25px;
  line-height: 1.15;
}

.gallery {
  background: #050707;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 15px;
}

.gallery-item {
  height: 310px;
  overflow: hidden;
}

.gallery-item.large {
  height: 310px;
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(217,169,0,.22), transparent 25%),
    linear-gradient(135deg, #101a1c, #050707);
  border: 1px solid rgba(217,169,0,.12);
  transition: .5s;
}

.photo-placeholder span {
  color: rgba(243,201,40,.5);
  letter-spacing: 5px;
  font-size: 11px;
}

.gallery-item:hover .photo-placeholder {
  transform: scale(1.04);
}

.gallery-note {
  margin-top: 20px;
  color: #697173;
  font-size: 11px;
}

code {
  color: var(--gold);
}

.contact {
  background: #080d0e;
}

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.5fr;
  gap: 25px;
}

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

.contact-card,
.address-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.07);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: .3s;
}

.contact-card:hover {
  border-color: var(--line);
  transform: translateX(4px);
}

.contact-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--gold-light);
  border-radius: 50%;
  font-size: 21px;
}

.contact-card small,
.address-card small {
  display: block;
  color: #858e90;
  font-size: 9px;
  letter-spacing: 2px;
  margin-bottom: 7px;
}

.contact-card strong {
  font-size: 14px;
}

.address-card {
  display: block;
  margin-top: 5px;
}

.address-card p {
  color: #c2c8c8;
  line-height: 1.7;
  font-size: 13px;
}

.address-card a {
  display: inline-block;
  margin-top: 15px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 600;
}

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

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 530px;
  border: 0;
  filter: grayscale(1) contrast(1.1) brightness(.75);
}

footer {
  min-height: 110px;
  padding: 25px 9%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid var(--line);
  background: #030505;
}

.footer-brand {
  width: 150px;
  height: 45px;
  overflow: hidden;
}

.footer-brand img {
  width: 100%;
}

footer p,
footer a {
  color: #717879;
  font-size: 10px;
}

footer a {
  color: var(--gold-light);
}

@media (max-width: 900px) {
  .navbar {
    padding: 0 5%;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    padding: 25px;
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
    background: rgba(3,6,7,.98);
    border-bottom: 1px solid var(--line);
  }

  nav.open {
    display: flex;
  }

  nav > a {
    text-align: center;
  }

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

  .hero-content {
    margin-left: 7%;
    margin-right: 7%;
  }

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

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

  .gallery-item,
  .gallery-item.large {
    height: 280px;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 400px;
  }
}

@media (max-width: 600px) {
  .brand {
    width: 130px;
  }

  .section {
    padding: 85px 6%;
  }

  .hero h1 {
    font-size: 50px;
    letter-spacing: -2px;
  }

  .hero-text {
    font-size: 13px;
  }

  .social-float {
    right: 15px;
    bottom: 20px;
  }

  .social-float a {
    width: 40px;
    height: 40px;
  }

  footer {
    flex-direction: column;
    text-align: center;
    padding: 35px 6%;
  }
}


/* --- 2026 GOPMAHALL refinements --- */
.hero::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -220px;
  top: 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,169,0,.10), transparent 68%);
  filter: blur(8px);
  animation: glowPulse 5s ease-in-out infinite;
}

.hero-content {
  animation: heroUp 1s cubic-bezier(.16,1,.3,1) .25s both;
}

.section {
  position: relative;
}

.section-heading h2 {
  text-wrap: balance;
}

.map-wrap {
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

.map-wrap iframe {
  display: block;
  filter: grayscale(.85) contrast(1.05) brightness(.8);
}

.map-directions {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 13px 17px;
  border: 1px solid var(--gold);
  border-radius: 5px;
  background: rgba(3,6,7,.92);
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .7px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  transition: .3s;
}

.map-directions:hover {
  background: var(--gold);
  color: #050505;
  transform: translateY(-2px);
}

.map-directions span {
  font-size: 16px;
}

.gallery-note {
  text-align: center;
  letter-spacing: 3px;
  color: rgba(243,201,40,.45);
}

@keyframes glowPulse {
  0%, 100% { transform: scale(.92); opacity: .55; }
  50% { transform: scale(1.08); opacity: 1; }
}

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

@media (max-width: 600px) {
  .map-directions {
    left: 15px;
    right: 15px;
    justify-content: center;
  }
}

/* Galeri fotoğrafları */
.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .5s ease;
}

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

/* --- Dil seçici --- */
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: 4px;
  color: rgba(255,255,255,.35);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}

.lang-btn {
  border: 0;
  background: transparent;
  color: #858e90;
  padding: 6px 3px;
  font: inherit;
  cursor: pointer;
  transition: .25s ease;
}

.lang-btn:hover,
.lang-btn.active {
  color: var(--gold-light);
}

/* --- Sosyal medya ikonları --- */
.social-float .social-icon {
  width: 45px;
  height: 45px;
}

.social-icon svg {
  width: 21px;
  height: 21px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.whatsapp-icon svg {
  fill: currentColor;
  stroke: none;
  width: 22px;
  height: 22px;
}

@media (max-width: 900px) {
  .language-switcher {
    justify-content: center;
    margin: 2px 0 0;
    padding-top: 6px;
    border-top: 1px solid rgba(255,255,255,.06);
  }
}

/* Gerçek WhatsApp ve Instagram ikonları */
.contact-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.whatsapp-contact-icon svg {
  fill: currentColor;
  stroke: none;
}

.instagram-contact-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.contact-card:hover .contact-icon {
  background: rgba(217,169,0,.08);
}
