html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

:root {
  /* Palet Renkleri */
  --primary: #222831;
  /* Koyu Lacivert/Siyah */
  --secondary: #31363F;
  /* Butonlar ve İkincil Alanlar */
  --accent: #76ABAE;
  /* Vurgu ve Harita Pinleri */
  --bg-white: #EEEEEE;
  /* Açık Gri Arka Plan */

  /* Mantıksal Atamalar */
  --brand-main: var(--secondary);
  --bg-soft: var(--bg-white);
  --border: rgba(49, 54, 63, 0.2);
  /* #31363F'in %20 şeffaf hali */

  --sidebar-width: 280px;
  --transition: cubic-bezier(0.76, 0, 0.24, 1);
  --font-ui: 'Plus Jakarta Sans', sans-serif;
  --font-editorial: 'Bebas Neue', sans-serif;
  --font-heading: 'Bebas Neue', sans-serif;
  --header-height: 70px;
  --map-height-mobile: 400px;
}

@media (max-width: 1024px) {
  :root {
    --sidebar-width: 0px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-white);
  color: var(--primary);
  font-family: var(--font-ui);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  /* Bebas Neue is regular weight usually */
  letter-spacing: 1px;
}

.italic {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
}

/* CUSTOM CURSOR */
.custom-cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.2s ease;
}

.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://grainy-gradients.vercel.app/noise.svg');
  opacity: 0.03;
  pointer-events: none;
  z-index: 9998;
}

/* SIDEBAR */
.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background: var(--bg-white);
  border-right: 1px solid var(--border);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1000;
}

@media (max-width: 1024px) {
  .sidebar {
    display: none;
  }
}

.main-logo {
  width: 100%;
  max-width: 180px;
  height: auto;
  display: block;
}

/* MOBILE HEADER & NAV */
.mobile-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 9000;
  border-bottom: 1px solid var(--border);
}

.mobile-logo img {
  height: 32px;
  width: auto;
}

.mobile-menu-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  /* Check for tablet might want less e.g. 300px */
  max-width: 320px;
  height: 100%;
  background: white;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.mobile-nav-overlay.active .mobile-nav-content {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.mobile-logo-nav img {
  height: 28px;
  width: auto;
}

.mobile-menu-close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-grow: 1;
  justify-content: center;
}

.mobile-nav-list a {
  font-family: var(--font-heading);
  font-size: 2rem;
  text-decoration: none;
  color: transparent;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  width: fit-content;
  margin: 0 auto;
  padding: 0 10px;
}

.mobile-nav-list a::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: var(--primary);
  transition: transform 0.5s var(--transition);
  transform: translateY(0);
}

.mobile-nav-list a::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: var(--brand-main);
  transition: transform 0.5s var(--transition);
  transform: translateY(100%);
}

.mobile-nav-list a:hover::before {
  transform: translateY(-100%);
}

.mobile-nav-list a:hover::after {
  transform: translateY(0);
}

.mobile-nav-footer {
  margin-top: auto;
  padding-bottom: 20px;
}


.sidebar-nav {
  margin-top: -60px;
}

.nav-list {
  list-style: none;
}

.nav-list li {
  margin: 24px 0;
}

.nav-list a {
  display: block;
  text-decoration: none;
  color: transparent;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.nav-list a::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: var(--primary);
  transition: transform 0.5s var(--transition);
  transform: translateY(0);
}

.nav-list a::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: var(--brand-main);
  transition: transform 0.5s var(--transition);
  transform: translateY(100%);
}

.nav-list a:hover::before {
  transform: translateY(-100%);
}

.nav-list a:hover::after {
  transform: translateY(0);
}

.sidebar-footer {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cta-sidebar {
  background: var(--accent);
  color: white;
  text-decoration: none;
  padding: 14px 24px;
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: transform 0.3s var(--transition);
}

.cta-sidebar:hover {
  transform: translateY(-3px);
}

.lang-switch {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: 1px;
}

.lang-switch .active {
  color: var(--accent);
}

/* MAIN CONTENT */
.main-content {
  margin-left: var(--sidebar-width);
  width: calc(100% - var(--sidebar-width));
}

@media (max-width: 768px) {
  .main-content {
    margin-left: 0;
    width: 100%;
    padding-top: var(--header-height);
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.section-padding {
  padding: 140px 0;
}

@media (max-width: 1024px) {
  .section-padding {
    padding: 60px 0;
  }

  .container {
    padding: 0 20px;
  }
}

.bg-soft {
  background-color: var(--bg-soft);
}

.bg-dark {
  background-color: var(--primary);
  color: white;
}

/* HERO */
.hero-section {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 100px;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .hero-section {
    height: 60vh;
    /* Viewport uyumlu kısa yükseklik */
    min-height: 400px;
    padding-left: 0;
    justify-content: center;
    text-align: center;
  }

  .hero-text-container {
    padding: 30px 20px;
    margin: 0 16px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  }

  .hero-title {
    font-size: 3rem;
    margin-bottom: 0;
    /* Remove bottom margin since subtext/btn are hidden */
  }

  /* Hide subtext and CTA button on mobile */
  .hero-sub,
  .hero-cta-group {
    display: none !important;
  }

  /* Darken subtext for better readability on glass */
  /* .hero-sub {
    color: #111 !important;
    Force dark color
  } */

  /* .hero-cta-group {
    justify-content: center;
  } */

  .scroll-indicator {
    display: none;
  }

  .media-overlay {
    background: none !important;
  }

  .hero-text-container {
    background: rgba(255, 255, 255, 0.7);
    /* Glassmorphism Base */
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border-radius: 30px;
    padding: 40px 24px;
    margin: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  }

  /* Darken subtext for better readability on glass */
  .hero-sub {
    color: #111 !important;
    /* Force dark color */
  }

  /* Text Shadow for extra contrast if needed */
  .hero-title,
  .hero-sub,
  .hero-eyebrow {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  }
}

.hero-bg-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-fallback,
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.85) 5%, rgba(255, 255, 255, 0) 50%);
}

.hero-text-container {
  max-width: 800px;
}

.hero-eyebrow {
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 24px;
  color: var(--brand-main);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  line-height: 0.95;
  margin-bottom: 32px;
  font-weight: 300;
}

.hero-sub {
  font-size: 1.25rem;
  color: var(--secondary);
  margin-bottom: 48px;
  max-width: 500px;
}

.hero-cta-group {
  display: flex;
  gap: 20px;
}

.btn {
  padding: 18px 40px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s var(--transition);
}

.btn-filled {
  background: var(--accent);
  color: white;
}

.btn-filled:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-5px);
}

.btn-outline {
  border: 1px solid var(--border);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.scroll-indicator {
  position: absolute;
  right: 60px;
  bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.scroll-indicator span {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 3px;
  writing-mode: vertical-rl;
}

.scroll-indicator .line {
  width: 1px;
  height: 100px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}

.scroll-indicator .line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--brand-main);
  animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(200%);
  }
}

/* SECTION TITLES */
.label {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 4px;
  color: var(--brand-main);
  margin-bottom: 16px;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 600;
}

/* SECTION GRID */
.section-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
}

@media (max-width: 1024px) {
  .section-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.lead-text {
  font-size: 1.5rem;
  line-height: 1.4;
  margin-bottom: 60px;
}

.stats-row {
  display: flex;
  gap: 60px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 600;
  line-height: 1;
}

.stat-desc {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--secondary);
  margin-top: 10px;
}

/* MAP */
.map-container {
  margin-top: 60px;
  background: white;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.03);
}

.map-visual {
  height: 500px;
  background: var(--bg-soft);
  border-radius: 12px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.map-overlay-text {
  font-size: 8rem;
  font-weight: 900;
  opacity: 0.03;
  letter-spacing: -10px;
}

.map-point {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s;
}

.map-point::after {
  content: attr(data-city);
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  padding: 4px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}

.map-point:hover {
  transform: scale(1.5);
}

.map-point:hover::after {
  opacity: 1;
}

.point-a {
  background: var(--brand-main);
}

.point-b {
  background: var(--accent);
}

.map-legend {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  justify-content: center;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 700;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.color-a {
  background: var(--brand-main);
}

.color-b {
  background: var(--accent);
}

/* MEDIA TABS */
.media-tabs {
  margin-top: 60px;
}

.tab-triggers {
  display: flex;
  gap: 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 60px;
}

.tab-btn {
  background: none;
  border: none;
  padding: 20px 0;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 2px;
  cursor: pointer;
  color: var(--secondary);
  position: relative;
  transition: color 0.3s;
}

.tab-btn.active {
  color: var(--accent);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--brand-main);
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.8s;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.media-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.4s var(--transition);
}

.media-card:hover {
  transform: translateY(-10px);
}

.card-img {
  height: 300px;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.media-card:hover .card-img img {
  transform: scale(1.1);
}

.card-info {
  padding: 30px;
}

.card-info h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.card-info p {
  font-size: 0.95rem;
  color: var(--secondary);
}

/* MULTIMEDIA WALL */
.multimedia-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 350px;
  gap: 20px;
  margin-top: 60px;
}

.wall-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.wall-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-large {
  grid-row: span 2;
}

.item-wide {
  grid-column: span 2;
}

.wall-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  color: white;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s var(--transition);
}

.wall-item:hover .wall-overlay {
  opacity: 1;
  transform: translateY(0);
}

.wall-tag {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-main);
}

/* SPECS */
.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
}

.spec-block {
  background: var(--bg-soft);
  padding: 60px;
  border-radius: 20px;
}

.spec-block.full {
  grid-column: span 2;
}

.spec-block h4 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 30px;
}

.spec-list {
  list-style: none;
}

.spec-list li {
  margin: 16px 0;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.cancel-table {
  width: 100%;
  border-collapse: collapse;
}

.cancel-table th {
  text-align: left;
  padding: 20px;
  font-size: 0.8rem;
  text-transform: uppercase;
  border-bottom: 2px solid var(--border);
}

.cancel-table td {
  padding: 20px;
  border-bottom: 1px solid var(--border);
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 100px;
  margin-top: 60px;
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-row {
  display: flex;
  gap: 20px;
}

input,
select,
textarea {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand-main);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.detail-item h5 {
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: var(--brand-main);
  margin-bottom: 12px;
}

.detail-item p {
  font-size: 1.1rem;
  font-weight: 600;
}

/* FOOTER */
.main-footer {
  padding: 60px 0;
  border-top: 1px solid var(--border);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--secondary);
}

.footer-link {
  display: block;
  text-decoration: none;
  color: transparent;
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.footer-link::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: var(--secondary);
  transition: transform 0.5s var(--transition);
  transform: translateY(0);
}

.footer-link::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: var(--brand-main);
  transition: transform 0.5s var(--transition);
  transform: translateY(100%);
}

.footer-link:hover::before {
  transform: translateY(-100%);
}

.footer-link:hover::after {
  transform: translateY(0);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .section-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-section {
    padding-left: 40px;
  }
}

/* Utility Classes - Brand Colors (Yeni Palet - Cool Tones) */
:root {
  --brand-50: #f0f4f4;
  --brand-100: #d8e5e6;
  --brand-200: #b0cbcc;
  --brand-300: #8db4b6;
  --brand-400: #76ABAE;
  --brand-500: #5a9194;
  --brand-600: #31363F;
  --brand-700: #292d35;
  --brand-800: #22252c;
  --brand-900: #1a1d22;
}

.bg-brand-50 {
  background-color: var(--brand-50) !important;
}

.bg-brand-900 {
  background-color: var(--brand-900) !important;
}

.bg-brand-500 {
  background-color: var(--brand-main) !important;
}

.bg-brand-600 {
  background-color: var(--brand-600) !important;
}

.bg-accent {
  background-color: var(--accent) !important;
}

.bg-brand-100 {
  background-color: var(--brand-100) !important;
}

.bg-brand-200 {
  background-color: var(--brand-200) !important;
}

.bg-brand-600 {
  background-color: var(--brand-600) !important;
}

.text-brand-50 {
  color: var(--brand-50) !important;
}

.text-brand-100 {
  color: var(--brand-100) !important;
}

.text-brand-600 {
  color: var(--brand-600) !important;
}

.text-brand-700 {
  color: var(--brand-700) !important;
}

.text-brand-800 {
  color: var(--brand-800) !important;
}

.text-brand-900 {
  color: var(--brand-900) !important;
}

.border-brand-100 {
  border-color: var(--brand-100) !important;
}

.border-brand-200 {
  border-color: var(--brand-200) !important;
}

.border-brand-300 {
  border-color: var(--brand-300) !important;
}

.border-brand-400 {
  border-color: var(--brand-400) !important;
}

.border-brand-500 {
  border-color: var(--brand-500) !important;
}

.border-brand-600 {
  border-color: var(--brand-600) !important;
}

.hover\:bg-brand-50:hover {
  background-color: var(--brand-50) !important;
}

.hover\:bg-brand-600:hover {
  background-color: var(--brand-600) !important;
}

.hover\:text-brand-600:hover {
  color: var(--brand-600) !important;
}

.hover\:text-brand-700:hover {
  color: var(--brand-700) !important;
}

.hover\:text-brand-800:hover {
  color: var(--brand-800) !important;
}

.hover\:border-brand-400:hover {
  border-color: var(--brand-400) !important;
}

.hover\:border-brand-600:hover {
  border-color: var(--brand-600) !important;
}

.group:hover .group-hover\:text-brand-600 {
  color: var(--brand-600) !important;
}

.group:hover .group-hover\:bg-brand-600 {
  background-color: var(--brand-600) !important;
}

.group:hover .group-hover\:text-white {
  color: white !important;
}

.focus\:ring-brand-500:focus {
  --tw-ring-color: var(--brand-500) !important;
}


.media-grid {
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 900px) {
  .sidebar {
    width: 100%;
    height: auto;
    position: relative;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .main-content {
    margin-left: 0;
    width: 100%;
  }

  .sidebar-nav {
    display: none;
  }

  /* Mobile menu implementation would go here */
  .hero-section {
    height: auto;
    padding: 100px 20px;
  }

  /* Global Radius Reduction for Mobile */
  .map-container,
  .media-card,
  .wall-item,
  .spec-block,
  .rounded-\[60px\],
  .rounded-\[40px\],
  .rounded-3xl {
    border-radius: 20px !important;
  }

  .media-grid,
  .contact-grid,
  .specs-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating>.form-control-plaintext::placeholder,
.form-floating>.form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating>.form-control-plaintext:focus::placeholder,
.form-floating>.form-control:focus::placeholder {
  text-align: start;
}

/* Map Mobile Adjustments */
@media (max-width: 768px) {

  .map-visual,
  #map-canvas {
    height: var(--map-height-mobile) !important;
  }
}

/* Mobile Map Menu */
.mobile-map-menu {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding: 10px 0;
  margin-bottom: 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* Firefox */
}

.mobile-map-menu::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.mobile-map-btn {
  flex: 0 0 auto;
  padding: 8px 16px;
  border-radius: 20px;
  background: #f3f4f6;
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: all 0.3s;
  cursor: pointer;
}

.mobile-map-btn.active {
  background: var(--brand-main);
  color: white;
  box-shadow: 0 4px 12px rgba(162, 106, 65, 0.3);
}

.mobile-map-btn i {
  margin-right: 6px;
}