:root {
  --rainbow-red: #ffb3ba;
  --rainbow-orange: #ffdfba;
  --rainbow-yellow: #ffffba;
  --rainbow-green: #baffc9;
  --rainbow-blue: #bae1ff;
  --rainbow-purple: #e8baff;
  --bg-main: #fffdf9;
  --bg-white: #ffffff;
  --text-main: #2d3436;
  --text-muted: #5c6368;
  --shadow-soft: 0 8px 32px rgba(45, 52, 54, 0.08);
  --radius-lg: 1.25rem;
  --radius-md: 0.875rem;
  --radius-sm: 0.5rem;
  --header-height: 5rem;
  --font-main: "Nunito", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--text-main);
  background: var(--bg-main);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #c45c26;
  text-decoration: none;
}

a:hover {
  color: #9a4520;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: var(--bg-white);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.site-header .navbar {
  padding: 0.5rem 0;
}

.navbar-brand {
  max-width: calc(100% - 3.75rem);
  flex-shrink: 1;
  min-width: 0;
}

.navbar-brand img {
  height: 3.25rem;
  width: auto;
  max-width: 100%;
}

.navbar-nav .nav-link {
  color: var(--text-main);
  font-weight: 600;
  padding: 0.5rem 0.85rem !important;
  border-radius: var(--radius-sm);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  background: var(--rainbow-blue);
  color: var(--text-main);
}

.header-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.btn-phone {
  background: var(--rainbow-blue);
  color: var(--text-main);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.btn-primary-soft {
  background: linear-gradient(135deg, var(--rainbow-purple), var(--rainbow-blue));
  color: var(--text-main);
  border: none;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
}

.btn-primary-soft:hover {
  color: var(--text-main);
  opacity: 0.92;
}

main {
  min-height: 60vh;
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--bg-white);
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.section-lead {
  color: var(--text-muted);
  max-width: 42rem;
  margin-bottom: 2rem;
}

.hero {
  position: relative;
  padding: 2.75rem 0 3.25rem;
  background: linear-gradient(135deg, var(--rainbow-blue) 0%, var(--rainbow-green) 40%, var(--rainbow-yellow) 100%);
}

.hero--media {
  min-height: min(88vh, 820px);
  padding: 4rem 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #1e3a4a;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media__fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-media__video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #1e3a4a;
}

.hero-media__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    120deg,
    rgba(20, 48, 68, 0.72) 0%,
    rgba(20, 48, 68, 0.38) 45%,
    rgba(20, 48, 68, 0.58) 100%
  );
}

.hero--media .hero-content {
  position: relative;
  z-index: 2;
  padding: 1rem 0;
}

.hero-content {
  padding: 0.5rem 0;
}

.building-photo {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.building-photo__img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: clamp(200px, 48vh, 460px);
  object-fit: contain;
  object-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  background: var(--bg-white);
}

.hero .building-photo {
  margin-top: 1.5rem;
}

@media (min-width: 992px) {
  .hero .building-photo {
    margin-top: 0;
  }

  .building-photo__img {
    max-height: clamp(280px, 58vh, 500px);
  }
}

.hero h1 {
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 32rem;
}

.hero--media h1,
.hero--media p {
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.hero--media p {
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero--media .btn-primary-soft {
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-main);
  border: none;
}

.hero--media .btn-primary-soft:hover {
  background: #fff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  text-decoration: none;
}

.hero-btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  font-size: 1rem;
  flex-shrink: 0;
}

.hero-btn__icon--svg svg {
  display: block;
}

.hero-btn--primary {
  background: linear-gradient(135deg, #fff 0%, var(--rainbow-blue) 100%);
  color: var(--text-main);
  border-color: rgba(255, 255, 255, 0.65);
}

.hero-btn--primary .hero-btn__icon {
  background: var(--rainbow-purple);
}

.hero-btn--primary:hover {
  color: var(--text-main);
  background: #fff;
}

.hero-btn--whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.hero-btn--whatsapp .hero-btn__icon {
  background: rgba(255, 255, 255, 0.2);
}

.hero-btn--whatsapp:hover {
  color: #fff;
}

@media (max-width: 575.98px) {
  .hero-btn {
    width: 100%;
    max-width: 20rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions.justify-content-center {
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media__video {
    display: none;
  }
}

.rainbow-bar {
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--rainbow-red),
    var(--rainbow-orange),
    var(--rainbow-yellow),
    var(--rainbow-green),
    var(--rainbow-blue),
    var(--rainbow-purple)
  );
}

.card-soft {
  background: var(--bg-white);
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  height: 100%;
  overflow: hidden;
  transition: transform 0.2s;
}

.card-soft:hover {
  transform: translateY(-4px);
}

.card-soft .card-img-top {
  height: 200px;
  object-fit: cover;
}

.icon-circle {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.age-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.page-hero {
  background: var(--bg-white);
  padding: 3rem 0 2rem;
  border-bottom: 4px solid transparent;
  border-image: linear-gradient(
      90deg,
      var(--rainbow-red),
      var(--rainbow-orange),
      var(--rainbow-yellow),
      var(--rainbow-green),
      var(--rainbow-blue),
      var(--rainbow-purple)
    )
    1;
}

.page-hero h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.home-intro__img,
.home-egitim__img {
  max-height: 420px;
  width: 100%;
  object-fit: cover;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.blog-card .card-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.blog-card .card-img-top,
.blog-card__thumb {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.blog-page {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
}

.blog-page .contact-cta-section {
  clear: both;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.blog-page--index .blog-index__posts {
  clear: both;
}

.blog-article__column {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.blog-article__header {
  margin-bottom: 1.5rem;
}

.blog-article__title {
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.blog-article__lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 0.25rem;
}

.blog-article__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-bottom: 0;
}

.blog-article__badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  background: var(--rainbow-purple);
  color: var(--text-main);
}

.blog-article__meta-item {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.blog-article__featured {
  margin: 0 0 1.75rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 16 / 9;
  max-height: min(52vw, 420px);
  background: linear-gradient(135deg, var(--rainbow-blue), var(--rainbow-green));
}

.blog-article__featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.blog-article__reading {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-top: 0.25rem;
  padding: clamp(1.35rem, 4vw, 2.25rem);
  border-left: 4px solid var(--rainbow-blue);
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: visible;
  clear: both;
}

.blog-page .blog-article__reading {
  height: auto;
}

.blog-article__reading .blog-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-main);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.blog-article__reading .blog-content::after {
  content: "";
  display: table;
  clear: both;
}

.blog-article__reading .blog-content > *:first-child {
  margin-top: 0;
}

.blog-article__reading .blog-content > *:last-child {
  margin-bottom: 0;
}

.blog-article__reading h2 {
  font-size: clamp(1.2rem, 3vw, 1.4rem);
  font-weight: 800;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--rainbow-yellow);
}

.blog-article__reading h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.blog-article__reading p {
  margin-bottom: 1.15rem;
}

.blog-article__reading ul,
.blog-article__reading ol {
  margin-bottom: 1.15rem;
  padding-left: 1.35rem;
}

.blog-article__reading li {
  margin-bottom: 0.45rem;
}

.blog-article__reading a {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.blog-article__reading blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--rainbow-green);
  background: rgba(186, 255, 201, 0.35);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: normal;
  color: var(--text-muted);
}

.blog-article__reading img,
.blog-page .blog-content img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-md);
  margin: 1.5rem auto;
  display: block;
  float: none;
  box-shadow: 0 4px 20px rgba(45, 52, 54, 0.1);
}

.blog-article__reading figure,
.blog-page .blog-content figure {
  max-width: 100%;
  margin: 1.5rem 0;
  float: none;
}

.blog-article__reading table,
.blog-page .blog-content table {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
}

.blog-article__footer {
  margin-top: 2rem;
  padding-top: 0.5rem;
  clear: both;
}

.blog-page--detail .blog-article {
  padding-bottom: 2rem;
}

.blog-page--detail .contact-cta-section {
  background: var(--bg-main);
  border-top: 1px solid rgba(45, 52, 54, 0.08);
}

@media (max-width: 575.98px) {
  .blog-article__featured {
    max-height: 240px;
    aspect-ratio: 4 / 3;
  }

  .blog-article__reading img,
  .blog-page .blog-content img {
    max-height: 220px;
  }

  .blog-article__reading {
    padding: 1.15rem;
  }

  .blog-page .cta-band {
    padding: 1.75rem 1.15rem;
  }

  .blog-page .cta-band .d-flex {
    flex-direction: column;
    align-items: stretch;
  }

  .blog-page .cta-band .btn,
  .blog-page .cta-band .btn-cta {
    width: 100%;
    justify-content: center;
  }
}

.cta-band {
  background: linear-gradient(135deg, var(--rainbow-purple), var(--rainbow-blue));
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.cta-band h2 {
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.site-footer {
  background: #2d3436;
  color: #dfe6e9;
  padding: 3rem 0 1.5rem;
  margin-top: 3rem;
}

.site-footer a {
  color: #dfe6e9;
}

.site-footer a:hover {
  color: var(--rainbow-yellow);
}

.site-footer h3 {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.9rem;
  color: #b2bec3;
}

.floating-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1040;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s;
}

.floating-whatsapp:hover {
  color: #fff;
  transform: scale(1.08);
}

.contact-info-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.contact-info-card h2 {
  margin-bottom: 0.5rem;
}

.contact-info-card p {
  margin-bottom: 0;
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  border: none;
  width: 100%;
}

.menu-table {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.timeline-item {
  border-left: 4px solid var(--rainbow-blue);
  padding-left: 1.25rem;
  margin-bottom: 1.5rem;
}

.site-header .navbar-toggler {
  border: 2px solid rgba(45, 52, 54, 0.18);
  background: linear-gradient(135deg, var(--rainbow-blue), var(--rainbow-green));
  padding: 0.45rem 0.6rem;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.site-header .navbar-toggler:hover {
  background: linear-gradient(135deg, var(--rainbow-green), var(--rainbow-yellow));
}

.site-header .navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(186, 225, 255, 0.9);
}

.site-header .navbar-toggler-icon {
  width: 1.35em;
  height: 1.35em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232d3436' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.25' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  background-size: 100%;
}

@media (max-width: 991.98px) {
  .site-header .navbar > .container {
    max-width: 100%;
  }

  .site-header .navbar-collapse {
    max-width: 100%;
  }

  .header-actions {
    margin-top: 1rem;
    padding-bottom: 0.5rem;
    width: 100%;
    max-width: 100%;
  }

  .header-actions .btn-cta {
    flex: 1 1 auto;
    justify-content: center;
    min-width: 0;
    font-size: 0.82rem;
    padding: 0.5rem 0.75rem;
    white-space: normal;
    text-align: center;
  }
}

.google-reviews__header {
  border: 1px solid rgba(45, 52, 54, 0.06);
  background: linear-gradient(
    145deg,
    var(--bg-white) 0%,
    rgba(186, 225, 255, 0.35) 50%,
    rgba(232, 186, 255, 0.2) 100%
  );
}

.google-reviews__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.google-reviews__brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #fff;
  color: #4285f4;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(66, 133, 244, 0.25);
}

.google-reviews__brand-label {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.google-reviews__place-name {
  font-weight: 800;
  color: var(--text-main);
}

.google-reviews__address {
  color: var(--text-muted);
}

.google-reviews__tag {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  border: 1px solid rgba(45, 52, 54, 0.08);
  box-shadow: 0 2px 8px rgba(45, 52, 54, 0.06);
}

.google-reviews__tag--red {
  background: var(--rainbow-red);
}

.google-reviews__tag--orange {
  background: var(--rainbow-orange);
}

.google-reviews__tag--green {
  background: var(--rainbow-green);
}

.google-reviews__tag--blue {
  background: var(--rainbow-blue);
}

.google-reviews__tag--purple {
  background: var(--rainbow-purple);
}

.google-reviews__tag--yellow {
  background: var(--rainbow-yellow);
}

.google-reviews__score-panel {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-sm);
  background: var(--bg-white);
  box-shadow: 0 4px 16px rgba(45, 52, 54, 0.08);
  width: fit-content;
  max-width: 100%;
}

.google-reviews__score-main {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.google-reviews__rating-large {
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.google-reviews__score-meta {
  text-align: left;
  line-height: 1.25;
}

.google-reviews__score-value {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-main);
}

.google-reviews__review-count {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.google-reviews__maps-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.8rem;
  background: #4285f4;
  color: #fff;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.google-reviews__maps-btn:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(66, 133, 244, 0.35);
}

.google-reviews__star {
  color: #e0e0e0;
}

.google-reviews__star--full {
  color: #f4b400;
  text-shadow: 0 1px 2px rgba(244, 180, 0, 0.35);
}

.google-reviews__star--half {
  background: linear-gradient(90deg, #f4b400 50%, #e0e0e0 50%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.google-reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.google-reviews__card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.25rem 1.35rem;
  border-left: 4px solid #f4b400;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.google-reviews__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(45, 52, 54, 0.12);
}

.google-reviews__card-stars {
  font-size: 1.15rem;
  line-height: 1;
  letter-spacing: 0.08em;
}

.google-reviews__card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem 0.75rem;
}

.google-reviews__author {
  color: var(--text-main);
}

.google-reviews__time {
  color: var(--text-muted);
  white-space: nowrap;
}

.google-reviews__text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 991.98px) {
  .google-reviews__score-panel {
    margin-top: 0.25rem;
    align-items: center;
    width: 100%;
  }

  .google-reviews__score-main {
    justify-content: center;
  }

  .col-lg-auto.ms-lg-auto {
    display: flex;
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  .google-reviews__grid {
    grid-template-columns: 1fr;
  }

  .google-reviews__tags {
    justify-content: center;
  }

  .google-reviews__brand,
  .google-reviews__place-name,
  .google-reviews__address {
    text-align: center;
  }

  .google-reviews__brand {
    justify-content: center;
    width: 100%;
  }
}

.branch-activity-card__icon {
  font-size: 2rem;
  line-height: 1;
}

.branch-activities-poster {
  max-height: 400px;
  object-fit: contain;
}

.section-intro .page-intro {
  max-width: 48rem;
}

.section-intro .page-intro p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.section-intro .page-intro p:last-child {
  margin-bottom: 0;
}

.hakkimizda-building .building-photo__img,
.section .building-photo__img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: min(52vh, 420px);
  object-fit: contain;
  object-position: center;
}

@media (min-width: 992px) {
  .hakkimizda-building .building-photo__img,
  .section .building-photo__img {
    max-height: min(58vh, 480px);
  }
}

.cms-body img,
.cms-body video,
.cms-body iframe {
  max-width: 100%;
  height: auto;
}

.cms-body table {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.section {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.container {
  padding-left: max(1rem, env(safe-area-inset-left));
  padding-right: max(1rem, env(safe-area-inset-right));
}

@media (max-width: 575.98px) {
  .section-title {
    font-size: 1.35rem;
  }

  .navbar-brand img {
    height: 2.75rem;
  }

  .hero h1 {
    font-size: 1.55rem;
  }

  .hero-actions {
    width: 100%;
    max-width: 100%;
  }

  .hero-btn {
    max-width: none;
    width: 100%;
  }

  .google-reviews__tags {
    gap: 0.35rem !important;
  }

  .google-reviews__tag {
    font-size: 0.78rem;
    padding: 0.35rem 0.65rem;
  }

  .google-reviews__rating-large {
    letter-spacing: 0.02em;
  }

  .floating-whatsapp {
    bottom: max(1rem, env(safe-area-inset-bottom));
    right: max(1rem, env(safe-area-inset-right));
    width: 3.15rem;
    height: 3.15rem;
    font-size: 1.35rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .row {
    --bs-gutter-x: 1rem;
  }
}

main,
.site-header,
.site-footer {
  max-width: 100%;
  overflow-x: hidden;
}

.hero--media {
  max-width: 100%;
}

.page-hero h1,
.section-title {
  overflow-wrap: anywhere;
  word-break: break-word;
}
