@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --primary-color: #10243c; /* La Vie deep navy */
  --secondary-color: #1f3858; /* Supporting navy */
  --accent-color: #b99759; /* La Vie warm gold */
  --accent-hover: #d4b884; /* Soft gold hover */
  --text-light: #fbf8f3;
  --text-dark: #263247;
  --bg-light: #fdf9f2;
  --bg-gray: #f3ebde; /* La Vie warm cream */
  --primary-rgb: 16, 36, 60;
  --accent-rgb: 185, 151, 89;
  --glass-bg: #f2ebe4;
  --glass-border: rgba(185, 151, 89, 0.24);
  --transition-speed: 0.3s;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--primary-color);
}

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

ul {
  list-style: none;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.08);
  transform: translateY(0);
  transition: transform 0.35s ease, box-shadow var(--transition-speed) ease, background var(--transition-speed) ease;
}

header.header-hidden {
  transform: translateY(-100%);
}


.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.35rem 2rem 1rem;
}

.nav-spacer {
  display: none;
}

/* Dil değiştirici — header'da MENÜ butonunun üstünde yatay bayrak sırası */
.lavt-nav-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.65rem;
}

.lavt-lang-switcher {
  position: relative;
  font-family: 'Inter', sans-serif;
}

.lavt-lang-current {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: transparent;
  border: 1px solid rgba(var(--primary-rgb), 0.18);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  cursor: pointer;
  color: var(--primary-color);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: background var(--transition-speed) ease, color var(--transition-speed) ease, border-color var(--transition-speed) ease;
}

.lavt-lang-current:hover,
.lavt-lang-switcher.open .lavt-lang-current {
  background: var(--primary-color);
  color: var(--text-light);
  border-color: var(--primary-color);
}

.lavt-caret {
  width: 0;
  height: 0;
  margin-left: 0.1rem;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform var(--transition-speed) ease;
}

.lavt-lang-switcher.open .lavt-caret {
  transform: rotate(180deg);
}

.lavt-lang-list {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  background: var(--bg-light);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(var(--primary-rgb), 0.18);
  padding: 0.4rem;
  display: none;
  flex-direction: column;
  gap: 0.15rem;
  z-index: 1200;
}

.lavt-lang-switcher.open .lavt-lang-list {
  display: flex;
}

.lavt-flag {
  display: inline-block;
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(var(--primary-rgb), 0.12);
  vertical-align: middle;
  flex-shrink: 0;
}

.lavt-lang-opt {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: 8px;
  padding: 0.6rem 0.75rem;
  cursor: pointer;
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 500;
  transition: background var(--transition-speed) ease, color var(--transition-speed) ease;
}

.lavt-lang-opt:hover,
.lavt-lang-opt:focus-visible {
  background: rgba(var(--accent-rgb), 0.12);
  color: var(--accent-color);
  outline: none;
}

.lavt-lang-opt.active {
  background: var(--primary-color);
  color: var(--text-light);
  border-color: var(--primary-color);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 156px;
  width: auto;
  object-fit: contain;
}

.menu-toggle {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  border: 1px solid rgba(var(--primary-rgb), 0.18);
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  cursor: pointer;
  color: var(--primary-color);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all var(--transition-speed) ease;
}

.menu-toggle:hover,
.menu-toggle[aria-expanded="true"] {
  background: var(--primary-color);
  color: var(--text-light);
  border-color: var(--primary-color);
}

.menu-toggle .menu-toggle-icon {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 22px;
  height: 16px;
}

.menu-toggle .menu-toggle-icon span {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--transition-speed) ease, opacity var(--transition-speed) ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.menu-toggle-label {
  display: inline-block;
}

/* Slide-in mega menu */
.site-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(420px, 90vw);
  height: 100vh;
  background: var(--bg-light);
  box-shadow: -20px 0 60px rgba(var(--primary-rgb), 0.18);
  border-left: 1px solid var(--glass-border);
  padding: 4.5rem 2.25rem 2.5rem;
  overflow-y: auto;
  transition: right 0.4s ease;
  z-index: 1100;
}

.site-menu-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(var(--primary-rgb), 0.18);
  background: var(--bg-light);
  color: var(--primary-color);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background var(--transition-speed) ease, color var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.site-menu-close:hover,
.site-menu-close:focus-visible {
  background: var(--primary-color);
  color: var(--text-light);
  transform: rotate(90deg);
  outline: none;
}

.site-menu.active {
  right: 0;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(var(--primary-rgb), 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 1050;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.menu-group {
  margin-bottom: 1.75rem;
}

.menu-group-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(var(--primary-rgb), 0.55);
  margin-bottom: 0.85rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.25);
}

.menu-section-divider {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(var(--accent-rgb), 0.25);
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.25);
}

.menu-dropdown-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: 0;
  padding: 0.7rem 0.25rem;
  cursor: pointer;
  line-height: 1.2;
  list-style: none;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--primary-color);
  border-radius: 8px;
  transition: background var(--transition-speed) ease, color var(--transition-speed) ease, padding-left var(--transition-speed) ease;
}

.menu-dropdown-toggle::-webkit-details-marker {
  display: none;
}

.menu-dropdown-toggle::after {
  content: '\203A';
  font-size: 1.25rem;
  line-height: 1;
  color: var(--accent-color);
  transform: rotate(90deg);
  transition: transform var(--transition-speed) ease;
}

.menu-dropdown-toggle:hover,
.menu-dropdown-toggle:focus-visible {
  background: rgba(var(--accent-rgb), 0.1);
  color: var(--accent-color);
  padding-left: 0.75rem;
  outline: none;
}

.menu-dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(-90deg);
}

.menu-dropdown .menu-list {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(-6px);
  transition: max-height 0.35s ease, opacity var(--transition-speed) ease, transform var(--transition-speed) ease, visibility var(--transition-speed) ease;
}

.menu-dropdown.open .menu-list,
.menu-dropdown[open] .menu-list {
  max-height: 520px;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateY(0);
}

.menu-dropdown[open] .menu-dropdown-toggle::after {
  transform: rotate(-90deg);
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.menu-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0.25rem;
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--primary-color);
  border-radius: 8px;
  transition: background var(--transition-speed) ease, color var(--transition-speed) ease, padding-left var(--transition-speed) ease;
}

.menu-list a::after {
  content: '\203A';
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity var(--transition-speed) ease, transform var(--transition-speed) ease;
  color: var(--accent-color);
  font-size: 1.2rem;
}

.menu-list a:hover,
.menu-list a:focus-visible,
.menu-list a.active {
  background: rgba(var(--accent-rgb), 0.1);
  color: var(--accent-color);
  padding-left: 0.75rem;
}

.menu-list a:hover::after,
.menu-list a:focus-visible::after,
.menu-list a.active::after {
  opacity: 1;
  transform: translateX(0);
}

.menu-contact-card {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-light);
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.menu-contact-card h4 {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.menu-contact-card a,
.menu-contact-card span {
  color: var(--text-light);
  font-size: 0.92rem;
  opacity: 0.92;
  line-height: 1.45;
}

.menu-contact-card a:hover {
  color: var(--accent-hover);
}

.menu-contact-card .menu-wa-button {
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #25D366;
  color: #ffffff;
  font-weight: 600;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.menu-contact-card .menu-wa-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  color: #ffffff;
}

.menu-contact-card .menu-contact-link {
  margin-top: 0.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  padding: 0.65rem 1rem;
  font-weight: 600;
  color: #ffffff;
  transition: border-color var(--transition-speed) ease, color var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.menu-contact-card .menu-contact-link:hover {
  border-color: var(--accent-hover);
  color: var(--accent-hover);
  transform: translateY(-2px);
}

.menu-social-block {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 0.35rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.menu-social-title {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-social-link,
.social-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.menu-social-link img,
.social-detail-link img {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  padding-top: 210px;
  padding-bottom: 4rem;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(var(--primary-rgb), 0.28), rgba(var(--primary-rgb), 0.84));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 2rem;
  animation: fadeIn 1.5s ease-out forwards;
}

.hero-content h1 {
  font-size: 4.5rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  font-weight: 300;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.btn-primary {
  display: inline-block;
  background: var(--accent-color);
  color: var(--primary-color);
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition-speed) ease;
  box-shadow: 0 4px 15px rgba(var(--accent-rgb), 0.3);
  border: 2px solid var(--accent-color);
}

.btn-primary:hover {
  background: transparent;
  color: var(--accent-color);
  box-shadow: 0 6px 20px rgba(var(--accent-rgb), 0.45);
  transform: translateY(-3px);
}

/* Services Section */
.services {
  background-color: var(--bg-gray);
  padding: 6rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.section-title h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
}

.section-title p {
  font-size: 1.1rem;
  color: #555;
  margin-top: 1.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background: var(--bg-light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(var(--primary-rgb), 0.16);
}

.service-card:focus-visible {
  outline: 3px solid var(--accent-color);
  outline-offset: 5px;
}

.service-image {
  height: 240px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.08);
}

.service-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.service-content p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1.5rem;
  flex: 1;
}

.btn-secondary {
  align-self: flex-start;
  display: inline-block;
  background: transparent;
  color: var(--primary-color);
  padding: 0.75rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid var(--accent-color);
  transition: all var(--transition-speed) ease;
}

.btn-secondary:hover {
  background: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(var(--accent-rgb), 0.35);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
  animation: whatsappPulse 2.5s infinite;
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: #ffffff;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.6);
  animation: none;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4), 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Page Headers */
.page-header {
  height: 42vh;
  min-height: 320px;
  background: linear-gradient(180deg, rgba(253, 249, 242, 0.98), rgba(243, 235, 222, 0.92));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 214px;
  margin-bottom: 4rem;
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.16);
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 12% 10%;
  background: url('../assets/logo-header-full.png') center / contain no-repeat;
  opacity: 0.12;
  pointer-events: none;
}

.page-header h1 {
  color: var(--primary-color);
  font-size: 3.5rem;
  position: relative;
  z-index: 1;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background-color: var(--accent-color);
}

/* Main Content Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

/* About Page (Hakkimizda) */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.about-content p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transition: transform var(--transition-speed) ease;
}

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

.about-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--accent-color);
  border-radius: 12px;
  z-index: -1;
}

/* Service Detail Pages */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.service-detail-image {
  position: sticky;
  top: 120px;
}

.service-detail-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Service detail slider */
.service-slider {
  position: relative;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #f8f2e8, #efe4d3);
}

.service-slider-track {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.service-slider-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-slider-slide.active {
  opacity: 1;
  z-index: 1;
}

.service-slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}

.service-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary-color);
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  z-index: 3;
  transition: background var(--transition-speed) ease, color var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.service-slider-arrow:hover {
  background: var(--accent-color);
  color: var(--text-light);
  transform: translateY(-50%) scale(1.05);
}

.service-slider-arrow.prev {
  left: 14px;
}

.service-slider-arrow.next {
  right: 14px;
}

.service-slider-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.service-slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: background var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.service-slider-dot.active {
  background: var(--accent-color);
  transform: scale(1.2);
}

.service-detail-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.service-detail-content h3 {
  font-size: 1.6rem;
  margin: 2.5rem 0 1.25rem;
  color: var(--primary-color);
}

.service-detail-content p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.25rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.feature-list li {
  position: relative;
  padding: 0.65rem 0 0.65rem 2rem;
  font-size: 1.05rem;
  color: #444;
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.08);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 14px;
  border-right: 2px solid var(--accent-color);
  border-bottom: 2px solid var(--accent-color);
}

.cta-box {
  margin-top: 2.5rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(var(--primary-rgb), 0.22);
}

.cta-box h3 {
  color: var(--text-light);
  font-size: 1.7rem;
  margin: 0 0 0.75rem;
}

.cta-box p {
  color: #d8dce3;
  margin-bottom: 1.75rem;
}

.cta-box .btn-primary {
  font-size: 1rem;
  padding: 0.9rem 2rem;
}

.contact-section {
  margin-top: 5rem;
  padding: 4rem 0;
  background: var(--bg-gray);
  border-top: 1px solid rgba(var(--accent-rgb), 0.14);
}

.contact-section-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-section-copy {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.contact-section-copy h2 {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.contact-section-copy p {
  margin: 0;
  font-size: 1.05rem;
  color: #5a5a5a;
}

.contact-section-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  width: 100%;
}

.contact-detail-item {
  padding: 1.1rem 1.4rem;
  border: 1px solid rgba(var(--primary-rgb), 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  transition: border-color var(--transition-speed) ease, transform var(--transition-speed) ease;
}

a.contact-detail-item:hover {
  border-color: rgba(var(--accent-rgb), 0.45);
  transform: translateY(-2px);
}

.contact-detail-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(var(--primary-rgb), 0.62);
}

.contact-detail-value {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-color);
  line-height: 1.45;
}

.contact-detail-value.social-detail-link,
.footer-info-value.social-detail-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.35rem;
  line-height: 1;
}

.contact-detail-value.social-detail-link img,
.footer-info-value.social-detail-link img {
  width: 14px !important;
  min-width: 14px;
  max-width: 14px;
  height: 14px !important;
  min-height: 14px;
  max-height: 14px;
  display: block;
  flex: 0 0 14px;
  object-fit: contain;
}

.contact-page-intro {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}

.contact-page-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 0.85rem;
}

.contact-page-intro p {
  color: #5a5a5a;
  font-size: 1.08rem;
}

.contact-page-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-section-button {
  align-self: center;
}

/* Room Gallery (Konaklama) */
.room-gallery {
  margin-top: 5rem;
}

.room-gallery-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  display: block;
}

.room-gallery-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
  margin: 0.75rem auto 0;
}

.room-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.room-gallery-item {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(var(--primary-rgb), 0.12);
  aspect-ratio: 4 / 3;
  background: var(--bg-gray);
}

.room-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

/* Gallery Page (Görseller) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 300px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-overlay {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(var(--primary-rgb), 0.9), transparent 60%);
  align-items: flex-end;
  padding: 1.75rem;
  opacity: 1;
  transition: opacity var(--transition-speed) ease;
}

.gallery-overlay h3 {
  color: var(--text-light);
  font-size: 1.35rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
  transform: translateY(0);
  transition: transform var(--transition-speed) ease;
}

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

.gallery-item:hover .gallery-overlay h3 {
  transform: translateY(-4px);
}

/* Footer */
footer {
  background-color: var(--glass-bg);
  color: var(--text-dark);
  padding: 4rem 2rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(var(--accent-rgb), 0.18);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 150px;
  width: auto;
  object-fit: contain;
}

.footer-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 0.5rem 0 1.5rem;
  max-width: 900px;
}

.footer-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.85rem 1.25rem;
  border: 1px solid rgba(var(--primary-rgb), 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  text-align: left;
  min-width: 240px;
  max-width: 380px;
  transition: border-color var(--transition-speed) ease, transform var(--transition-speed) ease;
}

a.footer-info-item:hover {
  border-color: rgba(var(--accent-rgb), 0.45);
  transform: translateY(-2px);
}

.footer-info-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(var(--primary-rgb), 0.62);
}

.footer-info-value {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--primary-color);
  line-height: 1.4;
}

.footer-links {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--primary-color);
  transition: color var(--transition-speed) ease;
}

.footer-links a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  border-top: 1px solid rgba(var(--primary-rgb), 0.12);
  padding-top: 2rem;
  width: 100%;
  color: rgba(var(--primary-rgb), 0.72);
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .service-detail {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .service-detail-image {
    position: static;
  }
  .contact-section-inner {
    gap: 1.5rem;
  }
  .page-header {
    margin-top: 186px;
  }
}

@media (max-width: 768px) {
  .logo img {
    height: 120px;
  }

  .footer-logo img {
    height: 116px;
  }

  .nav-container {
    padding: 1.25rem 1.25rem 1rem;
  }

  .menu-toggle-label {
    display: none;
  }

  .menu-toggle {
    padding: 0.5rem 0.7rem;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .hero {
    padding-top: 175px;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }

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

  .section-title h2 {
    font-size: 2.2rem;
  }

  .contact-section {
    margin-top: 4rem;
    padding: 3rem 0;
  }

  .contact-section-copy h2 {
    font-size: 1.9rem;
  }

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

  .services {
    padding: 4rem 0;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float svg {
    width: 30px;
    height: 30px;
  }

  .service-slider-arrow {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }

  .site-menu {
    padding: 4rem 1.5rem 2rem;
  }

  .page-header {
    margin-top: 162px;
  }
}

@media (max-width: 480px) {
  .page-header {
    margin-top: 150px;
  }
}
