body,html {
  font-family: 'Montserrat', sans-serif;
}
body {
  overflow-x: hidden;
}
* { margin: 0; padding: 0; box-sizing: border-box; }

.menu-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: white;
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
}

.menu-btn svg {
  stroke: currentColor;
  width: 20px;
  height: 20px;
}

/* Navbar scrolled ise siyah renk */
.navbar.scrolled .menu-btn {
  color: #111;
}
@media (max-width: 768px) {
  .menu-btn {
    font-size: 13px;
    gap: 4px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@500;700&display=swap');

/* Menü çizgilerinin varsayılan hali - sayfanın en üstü */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 15px 40px;
  background-color: transparent;
}

.navbar.scrolled {
  background-color: white;
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar .left,
.navbar .right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.navbar .center .logo {
  height: 45px;
}

.navbar .left span,
.navbar .right span {
  font-size: 14px;
  font-weight: 500;
  color: white;
  transition: color 0.3s ease;
}

/* Scroll sonrası yazılar siyah olsun */
.navbar.scrolled .left span,
.navbar.scrolled .right span {
  color: #111;
}

.menu-text {
  margin-right: 10px;
}

.menu-btn .bar {
  width: 20px;
  height: 2px;
  background-color: currentColor;
}

/* Mobil uyum */
@media (max-width: 768px) {
  .navbar-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .left span,
  .right span {
    font-size: 12px;
  }

  .menu-text {
    display: none;
  }
}

#menu-toggle {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: white;
}

.nav-left, .nav-right { display: flex; align-items: center; gap: 15px; }
.nav-center { text-align: center; }
.logo { height: 40px; }

#side-menu {
  position: fixed;
  right: -100%;
  top: 0;
  width: 300px;
  height: 100vh;
  background: white;
  transition: right 0.3s ease;
  z-index: 999;
}

#side-menu.active {
  right: 0;
}

.sidebar {
  position: fixed;
  right: -300px;
  top: 0; width: 300px; height: 100%;
  background: #fff;
  box-shadow: -2px 0 10px rgba(0,0,0,0.3);
  transition: right 0.3s ease;
  z-index: 1001;
  padding: 20px;
}

.sidebar.open { right: 0; }
.close-btn {
  font-size: 26px; background: none; border: none;
  float: right; cursor: pointer;
}
.sidebar-logo { height: 40px; margin: 20px auto; display: block; }
.sidebar ul { list-style: none; padding: 20px 0; }
.sidebar ul li { margin: 15px 0; }
.sidebar ul li a { text-decoration: none; color: #001F4D; font-size: 16px; }
.socials { display: flex; justify-content: space-around; margin-top: 30px; }

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
}

.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 10;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 0.5;
  border-radius: 50%;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.slider-dots .dot.active {
  opacity: 1;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero .dots {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.hero .dot {
  width: 16px;
  height: 6px;
  background: #fff;
  opacity: 0.4;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hero .dot.active {
  width: 24px;
  opacity: 1;
}

.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 12px;
  z-index: 10;
}

.overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: #dfd7ca; text-align: center;
}

.overlay h1 {
  font-size: 4rem; letter-spacing: 2px; margin-bottom: 20px;
}

.btn {
  padding: 12px 30px; background: rgba(255,255,255,0.8);
  border-radius: 30px; color: #000; text-decoration: none;
  font-weight: bold; margin-top: 10px;
}

.dots {
  margin-top: 20px;
}
.dot {
  display: inline-block;
  width: 30px; height: 5px;
  background: white; opacity: 0.3;
  margin: 0 5px;
}
.dot.active { opacity: 1; }
.fixed-icons {
  position: fixed;
  right: 20px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 1000;
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  transition: all 0.3s ease-in-out;
}

.icon:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* WhatsApp icon */
.icon.whatsapp {
  background-image: url('https://cdn-icons-png.flaticon.com/512/733/733585.png');
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: center;
}

/* Telefon icon */
.icon.phone {
  background-image: url('https://cdn-icons-png.flaticon.com/512/597/597177.png');
  background-size: 55%;
  background-repeat: no-repeat;
  background-position: center;
}

.stats-section {
  padding: 10px 2px;
  background: url('https://picsum.photos/id/1011/1600/800') center/cover no-repeat;
  background-attachment: fixed;
  background-size: cover;
  text-align: center;
  color: #001f4d;
  position: relative;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.9);
  z-index: 0;
}

.stats-section * {
  position: relative;
  z-index: 1;
}

.stats-header h3 {
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 10px;
  opacity: 0.6;
}

.stats-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 400;
}

.stats-header p {
  font-size: 1rem;
  color: #333;
  max-width: 600px;
  margin: 0 auto 40px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.stat-card {
  background: rgba(255,255,255,0.85);
  padding: 30px;
  border-radius: 10px;
  width: 200px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #001f4d;
  margin-bottom: 10px;
}

.footer {
  background: #243642;
  color: white;
  font-family: 'Montserrat', sans-serif;
  padding: 60px 30px 20px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.logo-col img {
  width: 120px;
  margin-bottom: 15px;
}

.footer-col h4 {
  font-size: 1rem;
  margin: 20px 0 10px;
  border-bottom: 1px solid #333;
  padding-bottom: 5px;
  color: #f5f5f5;
}

.footer-col p, .footer-col ul li {
  font-size: 0.9rem;
  color: #ccc;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #bbb;
  text-decoration: none;
  transition: 0.2s;
}
.footer-col ul li a:hover {
  color: #fff;
}

.social-links {
  margin-top: 10px;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 12px;
  font-size: 18px;
  background: #222;
  border-radius: 50%;
  color: #ccc;
  transition: 0.2s;
  text-decoration: none;
}

.social-links a:hover {
  color: white;
  background: #555;
  transform: scale(1.1);
}

.footer-bottom {
  max-width: 1300px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid #333;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #999;
}

.footer-bottom .legal-links a {
  margin-left: 20px;
  color: #888;
  text-decoration: none;
}
.footer-bottom .legal-links a:hover {
  color: white;
}

.social-icons a {
  font-size: 20px;
  margin-right: 10px;
  color: white;
  text-decoration: none;
}
.catalog-grid {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.catalog-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.5s ease-in-out;
  z-index: 1;
}

.catalog-overlay {
  display: flex;
  position: relative;
  z-index: 2;
  height: 100%;
}

.catalog-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
  backdrop-filter: blur(0px);
  transition: backdrop-filter 0.4s, background-color 0.4s;
  border-left: 1px solid rgba(255,255,255,0.2);
  border-right: 1px solid rgba(255,255,255,0.2);
}

.catalog-item:hover {
  backdrop-filter: blur(5px);
  background-color: rgba(0,0,0,0.2);
  border-left: 1px solid rgba(255,255,255,0.8);
  border-right: 1px solid rgba(255,255,255,0.8);
}

.catalog-item h3 {
  font-size: 1.8rem;
  opacity: 0.8;
  transition: 0.3s;
}

.catalog-item:hover h3 {
  opacity: 1;
  transform: scale(1.05);
}

.catalog-item .loc {
  font-size: 0.75rem;
  opacity: 0.6;
  letter-spacing: 1px;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.catalog-item .desc {
  font-size: 0.9rem;
  max-width: 250px;
  opacity: 0.85;
  margin-top: 10px;
  padding: 0 10px;
}

.icon-pulse-wrapper {
  position: relative;
  width: 48px;
  height: 48px;
}

.icon-pulse-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.3);
  animation: pulse-ring 1.8s infinite;
  z-index: 0;
}

@keyframes pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.2);
    opacity: 0;
  }
}

.icon-pulse-wrapper .icon {
  position: relative;
  z-index: 1;
}

.project-hero {
  position: relative;
  width: 100vw;
  height: 400px;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.project-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
}

/* Navbar en üstteyken beyaz metin */
/* Menü buton yazı ve ikon hizalama */

.menu-icon {
  stroke: currentColor;
}

.navbar.scrolled .menu-btn {
  color: #111;
}

.navbar.transparent .menu-btn,
.navbar.transparent .menu-text {
  color: #fff;
}

.navbar {
  transition: background 0.3s, color 0.3s;
}

.navbar.transparent {
  background-color: transparent;
  box-shadow: none;
}

.navbar.scrolled {
  background-color: #dfd7ca;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .left span,
.navbar.scrolled .right span,
.navbar.scrolled .nav-title {
  color: #111;
}

.navbar.transparent .left span,
.navbar.transparent .right span,
.navbar.transparent .nav-title,
.navbar.transparent .menu-btn .bar {
  color: white;
}

.navbar.scrolled .menu-btn {
  color: #111;
}

.navbar.transparent .nav-link {
  color: white;
}

.navbar.scrolled .nav-link {
  color: #111;
}

/* Menü ikon çubukları - scroll sonrası siyah */
.navbar.scrolled .menu-btn .bar {
  background-color: #111;
}

.menu-btn .bar {
  width: 25px;
  height: 3px;
  margin: 4px auto;
  display: block;
  transition: background-color 0.3s;
  border-radius: 2px;
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 48px;
  text-align: center;
}

.hero .slide .overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 5;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.hero .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.hero .slide.active {
  opacity: 1;
  z-index: 2;
}

.hero .btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background: #fff;
  color: #000;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  z-index: 6;
  position: relative;
}

.project-hero .overlay-text {
  background-color: rgba(0,0,0,0.4);
  padding: 40px;
  border-radius: 10px;
}
.project-hero .loc {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.project-hero h1 {
  font-size: 3rem;
  font-weight: bold;
}

.project-hero .desc {
  font-size: 1.2rem;
  margin-top: 1rem;
}

.detail-block {
  margin-bottom: 40px;
}

.detail-block h5 {
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: #888;
  margin-bottom: 5px;
}

.detail-block p {
  font-size: 1.8rem;
  font-weight: 500;
  color: #0c1c40;
}

.features-list,
.unit-types {
  list-style: none;
  padding: 0;
}

.features-list li,
.unit-types li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-size: 1rem;
  color: #0c1c40;
}

/* Katalog CTA */
.catalog-cta {
  margin: 100px auto;
  padding: 0 20px;
}

.catalog-box {
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid #ddd;
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.catalog-box small {
  font-size: 0.75rem;
  color: #999;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.catalog-box h4 {
  font-size: 1.8rem;
  color: #0c1c40;
  margin-top: 5px;
}

.arrow-button {
  background: none;
  border: 1px solid #ccc;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
  color: #0c1c40;
  cursor: pointer;
  transition: 0.2s ease;
}

.arrow-button:hover {
  background: #0c1c40;
  color: white;
  border-color: #0c1c40;
}

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

.project-gallery h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #0c1c40;
  font-weight: 400;
}

/* Slider */
.gallery-slider {
  position: relative;
  max-width: 90%;
  margin: auto;
  overflow: hidden;
}

.gallery-slider .slide {
  display: none;
}

.gallery-slider .slide img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.gallery-slider .active {
  display: block;
}

/* Oklar */
.gallery-slider .prev,
.gallery-slider .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.3);
  color: #fff;
  font-size: 2rem;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}

.gallery-slider .prev { left: 15px; }
.gallery-slider .next { right: 15px; }

/* Dotlar */
.gallery-slider .dots {
  margin-top: 15px;
  text-align: center;
}

.gallery-slider .dot {
  height: 10px;
  width: 10px;
  margin: 0 6px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.gallery-slider .dot.active {
  background-color: #0c1c40;
}

.project-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 4rem 5%;
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.detail-box h4 {
  font-size: 16px;
  letter-spacing: 2px;
  color: #7b8a99;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.detail-box p {
  font-size: 28px;
  font-weight: 600;
  color: #0a1f44;
  margin-bottom: 30px;
}

.detail-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-box ul li {
  font-size: 18px;
  color: #0a1f44;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.catalog-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 2rem;
  margin: 3rem auto;
  max-width: 90%;
  border-radius: 4px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: none;
}

.catalog-cta:hover {
  background: #f9fafb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.catalog-content {
  display: flex;
  flex-direction: column;
}

.catalog-title {
  font-size: 0.8rem;
  color: #888;
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
}

.catalog-link {
  font-size: 1.4rem;
  color: #0a1d4a;
  text-decoration: none;
  font-weight: 500;
}
.catalog-button {
  width: 48px;
  height: 48px;
  background: #0a1d4a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.catalog-cta:hover .catalog-button {
  background: #000e2a;
}

.catalog-button span {
  font-size: 1.5rem;
}

.project-gallery-heading {
  text-align: center;
  padding: 4rem 2rem 2rem;
}

.project-gallery-heading h2 {
  font-size: 2.5rem;
  font-weight: 500;
  color: #0a1b4c;
}

.project-gallery {
  width: 100%;
  padding: 3rem 0;
  box-sizing: border-box;
}

.project-gallery .swiper {
  width: 90%;
  max-width: 1400px;
  margin: auto;
}

.project-gallery .swiper-slide {
  text-align: center;
}

.project-gallery .swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

.connect-marquee {
  background-color: #fff;
  overflow: hidden;
  padding: 40px 0;
}

.marquee-wrapper {
  width: 100%;
  white-space: nowrap;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}

.marquee-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  white-space: nowrap;
  overflow: hidden;
  padding: 40px 20px;
}

.marquee-content {
  font-size: 48px;
  font-weight: 600;
  color: #001c54;
  animation: scroll-marquee 20s linear infinite;
}

.cta-button {
  display: inline-block;
  padding: 18px 50px;
  background: linear-gradient(90deg, #001c54, #062e88);
  color: #fff;
  border-radius: 100px;
  font-size: 22px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 50px 12px 50px;
  background: linear-gradient(90deg, #001c54, #062e88);
  color: #fff;
  border-radius: 100px;
  font-size: 22px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  height: 60px;
  line-height: 1;
  position: relative;
  top: -2px;
}

.cta-button:hover {
  background: #fff;
  color: #001c54;
  box-shadow: 0 5px 25px rgba(0, 28, 84, 0.25);
  border: 1px solid #001c54;
}

.back-to-projects {
  text-align: center;
  margin: 60px 0;
}

.back-button {
  display: inline-block;
  padding: 18px 40px;
  border: 1px solid #cbd2dc;
  border-radius: 50px;
  font-size: 16px;
  text-transform: uppercase;
  color: #667683;
  background-color: #f7f9fb;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.back-button:hover {
  background-color: #06285c;
  color: #fff;
  border-color: #06285c;
}

.back-button .arrow {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.back-button:hover .arrow {
  transform: translateX(5px);
}

.unit-types {
  padding: 60px 40px;
}

.unit-types h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #06285c;
  font-weight: normal;
}

.units-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

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

.unit-card h3 {
  font-size: 1.4rem;
  color: #06285c;
  margin-top: 15px;
}

.unit-card p {
  color: #5c6c7d;
  margin-top: 4px;
  font-size: 1rem;
}

.unit-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.swiper-button-next,
.swiper-button-prev {
  width: 40px !important;
  height: 40px !important;
  background-color: rgba(0, 0, 0, 0.6) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px !important;
  color: #fff !important;
  line-height: 1 !important;
  font-weight: bold;
  transition: color 0.3s ease;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #002f6c !important;
  transform: scale(1.1);
}

.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
  color: #fff !important;
}

.sales-support {
  margin-top: 20px;
}

.person-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.person-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
}

.contact-details p {
  margin: 1rem 0;
  font-size: clamp(13px, 2.5vw, 15px);
  color: #fff;
  line-height: 1.6;
}

.contact-details i {
  color: #dfb66a;
  font-size: 16px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.profile-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #fff;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.icon-circle {
  width: 42px;
  height: 42px;
  background-color: #fff;
  color: #002c5f;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  transition: 0.3s ease;
}

.icon-circle:hover {
  background-color: #002c5f;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 0 5px rgba(255,255,255,0.3);
}

.contact-item p {
  margin: 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.6;
}

.titillium-web-extralight {
  font-family: "Titillium Web", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.titillium-web-light {
  font-family: "Titillium Web", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.titillium-web-regular {
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.titillium-web-semibold {
  font-family: "Titillium Web", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.titillium-web-bold {
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.titillium-web-black {
  font-family: "Titillium Web", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.titillium-web-extralight-italic {
  font-family: "Titillium Web", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.titillium-web-light-italic {
  font-family: "Titillium Web", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.titillium-web-regular-italic {
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.titillium-web-semibold-italic {
  font-family: "Titillium Web", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.titillium-web-bold-italic {
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.handwritten-message {
  font-family: "Titillium Web", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 1.5rem;
  color: #001f4d;
  margin: 0 auto;
  padding: 60px 20px;
  line-height: 1.8;
  text-align: center;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
/* Label & Icon birlikte hizalanır */
.menu-label {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Svg menü ikonu */
.menu-label svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  display: block;
}

.navbar .menu-btn svg {
  stroke: currentColor;
  width: 20px;
  height: 20px;
}

/* Scroll sonrası siyah navbar renkleri */
.navbar.scrolled .menu-btn,
.navbar.scrolled .nav-title,
.navbar.scrolled .nav-link {
  color: #111;
}

/* Menü yazısı rengini elinde tutacak */
.navbar .nav-link,
.navbar .nav-title {
  color: white;
  transition: color 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar .menu-btn {
    font-size: 13px;
    gap: 4px;
  }
}

/* En alta ekle */
.navbar .nav-link,
.navbar .nav-title {
  color: white;
}

.navbar.scrolled .nav-link,
.navbar.scrolled .nav-title {
  color: #111;
}

.navbar.scrolled .menu-btn {
  color: #111;
}

.navbar.scrolled {
  background-color: #fff !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .nav-link,
.navbar.scrolled .nav-title,
.navbar.scrolled .menu-btn span {
  color: #111 !important;
}

.navbar.scrolled .menu-btn svg path {
  stroke: #111;
}

.navbar {
  transition: all 0.3s ease-in-out;
}

/* GENEL NAVBAR */
.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* SOL, ORTA, SAĞ */
.navbar .left,
.navbar .right {
  display: flex;
  gap: 20px;
  align-items: center;
}

.navbar .center .logo {
  height: 100px;
  max-width: 100%;
  margin-left: 50px;
}

/* NAVBARE BAĞLI METİN */
.nav-link,
.nav-title,
.menu-btn span {
  font-size: 14px;
  font-weight: 500;
  color: inherit;
  transition: color 0.3s;
  cursor: pointer;
}

/* MENÜ BUTONU */
.menu-btn {
  background: transparent;
  border: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

/* SCROLL DURUMUNA GÖRE RENK AYARI */
.navbar.scrolled .nav-link,
.navbar.scrolled .nav-title,
.navbar.scrolled .menu-btn span {
  color: #000;
}

.menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

/* Mobil Menü */
.mobile-menu {
  display: none;
  flex-direction: column;
  text-align: center;
  background-color: white;
}

.mobile-menu a {
  padding: 15px 0;
  color: #111;
  text-decoration: none;
  border-top: 1px solid #eee;
}

/* Menü Açıkken */
.navbar.open .mobile-menu {
  display: flex;
}

/* Responsive davranış */
@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }

  .menu-btn {
    display: none;
  }

  .left, .right {
    display: flex;
    gap: 20px;
  }

  .navbar-content {
    justify-content: space-between;
  }

  .mobile-menu a {
    display: none;
  }
}

/* Masaüstü görünüm: min-width 768px ve üstü */
@media screen and (min-width: 768px) {
  .navbar-content .left,
  .navbar-content .right {
    display: flex !important;
    align-items: center;
    gap: 20px;
  }

  .menu-btn {
    display: flex !important;
    align-items: center;
  }

  .menu-btn span {
    display: inline;
  }
}

/* Sadece mobilde menü açma butonu görünsün */
@media screen and (max-width: 767px) {
  .navbar-content .right .nav-title {
    display: none;
  }

  .menu-btn span {
    display: none;
  }

  .menu-btn svg {
    display: inline-block;
  }
}

.sidebar .socials {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
}

.sidebar .socials a {
  width: 40px;
  height: 40px;
  background-color: #222;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  transition: 0.3s ease;
  text-decoration: none;
}

.sidebar .socials a:hover {
  background-color: #ff6600;
  transform: scale(1.1);
}

.sidebar .socials a {
  color: #ffffff;
  font-size: 18px;
  background-color: #243642;
  padding: 10px;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.sidebar .socials a:hover {
  background-color: #ff6600;
  color: #fff;
}

.location-distance {
  padding: 80px 20px;
  text-align: center;
  background-color: #fff;
}

.location-distance h2 {
  font-size: 2.2em;
  margin-bottom: 40px;
  color: #1a1a1a;
  font-weight: normal;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.location-card {
  border: 1px solid #ddd;
  padding: 30px 20px;
  border-radius: 12px;
  background-color: #ffffff;
  transition: 0.3s ease;
}

.location-card i {
  font-size: 30px;
  margin-bottom: 12px;
  color: #243642;
}

.location-card p {
  margin: 8px 0 4px;
  font-weight: 600;
  color: #222;
}

.location-card span {
  font-size: 14px;
  color: #555;
}

.location-card:hover {
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.project-summary-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  color: #0a1c3b;
  font-family: 'Montserrat', sans-serif;
}

.project-summary-container {
  max-width: 1200px;
  margin: 0 auto;
}

.summary-title {
  font-size: 2.2rem;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}

.summary-intro {
  font-size: 1rem;
  text-align: center;
  margin-bottom: 50px;
  color: #333;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.summary-box {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.summary-box:hover {
  transform: translateY(-5px);
}

.summary-box h3 {
  font-size: 1.2rem;
  margin: 20px 0 15px;
  font-weight: 500;
  color: #001f4d;
}

.summary-box p,
.summary-box li {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.summary-box ul {
  padding-left: 0;
  list-style: none;
}

.icon-flat {
  max-width: 60px;
  height: auto;
  margin-bottom: 10px;
  display: inline-block;
}

.summary-footer {
  text-align: center;
  margin-top: 40px;
}

.summary-footer p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.summary-btn {
  display: inline-block;
  background-color: #001f4d;
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.summary-btn:hover {
  background-color: #0a336e;
}
.summary-footer {
  text-align: center;
  margin-top: 40px;
}

.summary-footer img.icon-flat {
  display: block;
  margin: 0 auto 15px;
  width: 50px;
  height: auto;
}
.fixed-icons {
  position: fixed;
  right: 20px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 1000;
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  transition: all 0.3s ease-in-out;
}

.icon img {
  width: 99%;
  height: 99%;
  object-fit: contain;
  display: block;
}

.icon.scroll-to-top {
  background: white; /* Beyaz arka plan diğerleriyle eşleşsin */
}

.icon.scroll-to-top:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}
.icon-pulse-wrapper .icon.scroll-to-top + .icon-pulse-wrapper::before {
  display: none;
}
.scroll-icon-wrapper {
  width: 48px;
  height: 48px;
}
.scroll-icon-wrapper::before,
.scroll-to-top::before {
  display: none !important;
  content: none;
}
.catalog-swiper-mobile {
  display: none;
}

@media (max-width: 768px) {
  .catalog-grid {
    display: none;
  }
  .catalog-swiper-mobile {
    display: block;
    height: 100vh;
  }

  .swiper-slide {
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .slide-content {
    z-index: 2;
    position: relative;
  }

  .badge {
    background: rgba(255,255,255,0.3);
    color: white;
    padding: 6px 14px;
    font-size: 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
    text-transform: uppercase;
  }

  .slide-btn {
    margin-top: 20px;
    padding: 12px 24px;
    background: rgba(255,255,255,0.2);
    border: 1px solid white;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(4px);
  }

  .swiper-button-next, .swiper-button-prev {
    color: white;
  }
}
.catalog-swiper-mobile {
  display: none !important;
}

@media (max-width: 768px) {
  .catalog-grid {
    display: none !important;
  }

  .catalog-swiper-mobile {
    display: block !important;
    height: 100vh;
  }
}
.catalog-overlay {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 100%;
  position: relative;
  z-index: 2;
}

.catalog-link {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  z-index: 2;
  height: 100%;
}

.catalog-item {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 100%; /* veya sabit height */
  overflow: hidden;
}

.catalog-blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.4); /* opsiyonel karartma */
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.catalog-item:hover .catalog-blur {
  opacity: 1;
}

.catalog-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 20px;
}


.catalog-link.cta-link {
  color: #0a1d4a;
  font-size: 1.4rem;
  font-weight: 500;
  text-decoration: none;
}

/* ======= NAVBAR FIXES (ChatGPT edits) ======= */

/* Altı çizili ve renkli linkleri düzelt */
.nav-link a,
.nav-title a {
  color: inherit;
  text-decoration: none;
}

.nav-link a:hover,
.nav-title a:hover {
  text-decoration: none;
  color: inherit;
}

/* Scroll sonrası a etiketlerinin rengi düzelt */
.navbar .nav-link a,
.navbar .nav-title a {
  color: white;
}

.navbar.scrolled .nav-link a,
.navbar.scrolled .nav-title a {
  color: #111;
}

/* Mobil görünümde hem sağ hem sol menüyü gizle */
@media screen and (max-width: 767px) {
  .navbar-content .right .nav-title,
  .navbar-content .left .nav-link {
    display: none;
  }
}
    :root {
      --myproj-card-radius: 1.6rem;
      --myproj-overlay: rgba(12,17,32,0.47);
      --myproj-btn-bg: #f7f7fa;
      --myproj-btn-color: #141414;
      --myproj-btn-hover-bg: #ffd666;
    }
    .myproj-main-wrapper {
      background: #f7f9fd;
      font-family: 'Segoe UI', Arial, sans-serif;
      padding-bottom: 2rem;
    }
    .myproj-title {
      text-align: center;
      margin: 2.4rem 0 1.7rem;
      font-size: 2.3rem;
      font-weight: 700;
      letter-spacing: 2px;
      color: #183354;
    }
    /* Grid View */
    .myproj-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
      gap: 2.3rem;
      padding: 2.3rem;
      max-width: 1180px;
      margin: 0 auto 2.2rem;
    }
    .myproj-card {
      position: relative;
      border-radius: var(--myproj-card-radius);
      overflow: hidden;
      min-height: 315px;
      background-size: cover;
      background-position: center;
      box-shadow: 0 7px 24px rgba(20,26,54,0.14);
      display: flex;
      align-items: stretch;
      cursor: pointer;
      transition: transform .17s, box-shadow .17s;
      z-index: 1;
    }
    .myproj-card:hover {
      transform: translateY(-5px) scale(1.028);
      box-shadow: 0 14px 38px rgba(15,20,40,0.23);
    }
    .myproj-overlay {
      position: absolute;
      inset: 0;
      background: var(--myproj-overlay);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      align-items: flex-start;
      padding: 2rem 1.5rem 1.2rem 1.5rem;
      z-index: 2;
      transition: background .13s;
    }
    .myproj-card:hover .myproj-overlay {
      background: rgba(12,17,32,0.59);
    }
    .myproj-card-title {
      color: #fff;
      font-size: 1.35rem;
      font-weight: 600;
      margin-bottom: 0.7rem;
      letter-spacing: 1px;
      text-shadow: 0 2px 8px rgba(0,0,0,0.17);
    }
    .myproj-btn {
      background: var(--myproj-btn-bg);
      color: var(--myproj-btn-color);
      border: none;
      border-radius: 999px;
      padding: 0.55rem 1.3rem;
      font-size: 1.02rem;
      font-weight: 500;
      cursor: pointer;
      box-shadow: 0 2px 12px rgba(30,30,30,0.04);
      transition: background 0.15s, color 0.15s;
      outline: none;
    }
    .myproj-btn:hover {
      background: var(--myproj-btn-hover-bg);
      color: #292929;
    }

    @media (max-width: 700px) {
      .myproj-grid { padding: 0.7rem; gap: 1.1rem;}
      .myproj-slider-card { min-width: 90vw; height: 190px; }
      .myproj-title { font-size: 1.5rem;}
    }
.reservation-bar-modern {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  align-items: center;
  background: rgba(38,48,54,0.50);
  border-radius: 16px;
  padding: 22px 18px;
  max-width: 950px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  backdrop-filter: blur(2px);
}

.reservation-field {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 115px;
}

.reservation-field label {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.reservation-field input[type="date"],
.reservation-field select {
  background: rgba(255,255,255,0.95);
  color: #2b3140;
  border: none;
  border-radius: 8px;
  padding: 9px 13px;
  font-size: 1rem;
  width: 115px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: box-shadow .2s;
}

.reservation-field input[type="date"]:focus,
.reservation-field select:focus {
  outline: 2px solid #2962ff;
  box-shadow: 0 4px 12px rgba(41,98,255,0.15);
}

.reservation-btn-modern {
  background: #fff;
  color: #1a338b;
  font-weight: bold;
  padding: 15px 34px;
  border: none;
  border-radius: 8px;
  font-size: 1.09rem;
  letter-spacing: 1px;
  cursor: pointer;
  margin-left: 18px;
  margin-top: 22px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  transition: background 0.25s, color 0.18s;
}
.reservation-btn-modern:hover {
  background: #1a338b;
  color: #fff;
}

/* Mobil uyum */
@media (max-width: 700px) {
  .reservation-bar-modern {
    flex-direction: column;
    align-items: stretch;
    gap: 13px;
    padding: 15px 7px;
    max-width: 98vw;
  }
  .reservation-btn-modern {
    margin: 12px 0 0 0;
    width: 100%;
    font-size: 1.1rem;
  }
  .reservation-field {
    width: 100%;
    min-width: unset;
  }
  .reservation-field input[type="date"],
  .reservation-field select {
    width: 100%;
    font-size: 1.1rem;
  }
}
.slider-container {
  position: relative;
}

.reservation-bar-modern {
  position: absolute;
  left: 50%;
  top: 48%; /* butonun hizasına göre ayarla */
  transform: translate(-50%, -50%);
  z-index: 99;
}
.reservation-field input {
  font-size: 1.05em;
  border: 1px solid #eee;
  border-radius: 7px;
  background: #fff;
  padding: 8px 10px;
  transition: border 0.18s;
}

.reservation-field input:focus {
  border: 1.5px solid #1a338b;
  background: #f9fafd;
}
/* --- Genel Ayarlar --- */
.reservation-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  font-family: sans-serif;
  color: #333;
}

/* --- 1. Header / Search Bar --- */
.reservation-header .search-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-end;
}

.reservation-header .field {
  flex: 1;
  min-width: 150px;
}

.reservation-header label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}

.reservation-header input,
.reservation-header select {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.btn-search {
  background: #000;
  color: #fff;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  cursor: pointer;
}

.tabs {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
  border-bottom: 1px solid #e0e0e0;
}

.tabs button {
  background: none;
  border: none;
  padding: 0.5rem 0;
  cursor: pointer;
  font-weight: 500;
}

.tabs button.active {
  border-bottom: 2px solid #000;
}

/* --- 2. İçerik Bölümü --- */
.reservation-content {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

/* Oda Kartları */
.room-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.room-card {
  display: flex;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  overflow: hidden;
}

.room-card img {
  width: 150px;
  object-fit: cover;
}

.card-body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.price {
  font-size: 1.2rem;
  margin: 0.5rem 0;
}

.btn-add-room {
  align-self: flex-start;
  background: #000;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
}

/* Rezervasyon Özeti */
.reservation-summary {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 1rem;
  background: #fafafa;
}

.reservation-summary h4 {
  margin-top: 0;
}

.reservation-summary ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0;
}

.reservation-summary .total {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  margin: 1rem 0;
}

.btn-continue {
  width: 100%;
  padding: 0.6rem;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .reservation-content {
    grid-template-columns: 1fr;
  }
  .reservation-summary {
    order: -1; /* mobilde yukarı göster */
    margin-bottom: 2rem;
  }
}
.guests-dropdown {
  position: relative;
  display: inline-block;
  font-family: sans-serif;
}

/* Toggle butonu */
.gd-toggle {
  padding: 0.5rem 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
}

/* Menü gizli */
.gd-menu {
  position: absolute;
  top: 100%;
  right: 0;
  width: 260px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  display: none;
  z-index: 10;
}

/* Toggle açıkken göster */
.guests-dropdown.open .gd-menu {
  display: block;
}

/* Oda satırları */
.gd-room {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid #eee;
}
.gd-room:last-child {
  border-bottom: none;
}
.gd-room-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.gd-room-header .remove-room {
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
}

/* Sayı seçici */
.gd-counter {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.gd-counter button {
  width: 24px;
  height: 24px;
  border: 1px solid #ccc;
  background: #f9f9f9;
  cursor: pointer;
  border-radius: 4px;
}
.gd-counter span {
  width: 30px;
  text-align: center;
  display: inline-block;
}

/* Footer */
.gd-footer {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 1rem;
}
.gd-footer .gd-add,
.gd-footer .gd-search {
  padding: 0.5rem 1rem;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}
.gd-footer .gd-add {
  background: #f0f0f0;
}
.gd-footer .gd-search {
  background: #000;
  color: #fff;
}
.gd-room .gd-counter {
  margin-bottom: 0.75rem;
}
/* .gd-counter: label ve kontrol grubunu aynı satıra getir */
.gd-counter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

/* Label’ın altına açılmasın, yan yana dursun */
.gd-counter label {
  margin: 0;
  font-weight: 500;
}

/* Buton + sayı grubunu yatay hizala */
.gd-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Buton boyutları sabitle, içeriği ortala */
.gd-controls button {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccc;
  background: #f9f9f9;
  border-radius: 4px;
  cursor: pointer;
}

/* Sayı kutusu */
.gd-controls span {
  min-width: 24px;
  text-align: center;
  display: inline-block;
  font-weight: 500;
}
/* Mission bölümü */
.mission,
#misyonumuz {
  /* Metni iki yana yasla */
  text-align: justify;

  /* Satırlar arası mesafeyi aç */
  line-height: 2.8;

  /* İsteğe bağlı: maksimum genişlik ve otomatik margin ile ortala */
  max-width: 900px;
  margin: 0 auto 2rem;
}

/* Başlık alt boşlukları */
.mission h2,
#misyonumuz h2 {
  text-align: center;
  margin-bottom: 1rem;
}

/* Paragraflar arası boşluk */
.mission p,
#misyonumuz p {
  margin-bottom: 3.2rem;
}
