* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #fffaf8;
  --bg-soft: #fff4f6;
  --white: #ffffff;
  --text: #2b2323;
  --muted: #7b6d6d;
  --primary: #d9a5b3;
  --primary-dark: #c58d9d;
  --primary-soft: #f8e4ea;
  --border: #f0dfe4;
  --shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 18px 45px rgba(0, 0, 0, 0.1);
  --radius: 20px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(180deg, #fff7f9 0%, #fffaf8 100%);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

button {
  font-family: inherit;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 42px;
}

.section-tag {
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-heading h2 {
  font-size: 38px;
  line-height: 1.2;
  font-weight: 700;
  max-width: 720px;
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(240, 223, 228, 0.9);
}

.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.logo {
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  position: relative;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: var(--primary-dark);
  transition: var(--transition);
}

.nav a:hover,
.nav a.active {
  color: var(--primary-dark);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 14px;
  cursor: pointer;
  padding: 0;
  box-shadow: var(--shadow);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px auto;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(217, 165, 179, 0.18), transparent 32%),
    radial-gradient(circle at bottom right, rgba(197, 141, 157, 0.14), transparent 28%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 680px;
}

.hero-subtitle {
  color: var(--primary-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: 58px;
  line-height: 1.08;
  margin-bottom: 20px;
  font-weight: 800;
}

.hero h1 span {
  color: var(--primary-dark);
}

.hero-text {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  transition: var(--transition);
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(217, 165, 179, 0.28);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--primary);
  background: transparent;
  color: var(--primary-dark);
}

.btn-outline:hover {
  background: var(--primary-soft);
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  min-height: 560px;
  padding: 18px 0 26px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-card-main {
  min-height: 470px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.55), rgba(255,255,255,0.96)),
    radial-gradient(circle at top right, rgba(217, 165, 179, 0.30), transparent 30%),
    radial-gradient(circle at bottom left, rgba(197, 141, 157, 0.18), transparent 35%),
    #fff;
}

.mini-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 600;
}

.hero-main-text {
  max-width: 310px;
  margin-top: auto;
  padding-top: 70px;
  padding-bottom: 50px;
}

.hero-card-main h3 {
  font-size: 34px;
  line-height: 1.15;
  margin-bottom: 10px;
}

.hero-card-main p {
  color: var(--muted);
}

.hero-card-small {
  position: absolute;
  width: 255px;
  padding: 20px 18px;
  z-index: 2;

  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 22px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.hero-card-small strong {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
}

.hero-card-small span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.top-card {
  top: 0;
  right: -8px;
}

.bottom-card {
  right: -17px;
  bottom: -29px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.service-card h3 {
  font-size: 23px;
  margin-bottom: 12px;
  color: var(--text);
}

.service-card p {
  color: var(--muted);
  margin-bottom: 18px;
}

.service-link {
  display: inline-block;
  margin-top: 6px;
  color: var(--primary-dark);
  font-weight: 600;
  transition: var(--transition);
}

.service-link:hover {
  opacity: 0.8;
}

.cta-box {
  background: linear-gradient(180deg, #fffefe 0%, #fff7f9 100%);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 52px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  max-width: 900px;
  margin: 0 auto;
}

.cta-box h2 {
  font-size: 40px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.cta-box p {
  color: var(--muted);
  margin-bottom: 24px;
}

.footer {
  padding: 30px 0;
  text-align: center;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.7);
  border-top: 1px solid var(--border);
  margin-top: 20px;
}

.about-premium-box {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: stretch;
}

.about-text-block {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 34px 30px;
}

.about-text-block h3 {
  font-size: 30px;
  margin-bottom: 18px;
}

.about-side-cards {
  display: grid;
  gap: 18px;
}

.about-mini-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 24px 22px;
}

.about-mini-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary-dark);
}

.about-mini-card strong {
  display: block;
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--text);
}

.about-mini-card p {
  color: var(--muted);
  line-height: 1.7;
}

.about-cta-box {
  max-width: 920px;
  margin: 30px auto 0;
  background: linear-gradient(180deg, #fffefe 0%, #fff7f9 100%);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 42px 28px;
  text-align: center;
}

.about-cta-box h3 {
  font-size: 32px;
  margin-bottom: 12px;
}

.about-cta-box p {
  color: var(--muted);
  margin-bottom: 22px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: stretch;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 34px 28px;
}

.contact-info-card h3 {
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.contact-intro {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 26px;
}

.contact-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.contact-item:last-of-type {
  border-bottom: none;
}

.contact-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.contact-value {
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}

.contact-item a.contact-value:hover {
  color: var(--primary-dark);
}

.contact-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.map-card {
  min-height: 520px;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, #fffefe 0%, #fff7f9 100%);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.28);
  transition: 0.3s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  opacity: 0.95;
}

.detail-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.service-detail-box {
  margin-top: 30px;
  text-align: left;
}

.service-detail-box h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--text);
}

.service-detail-list {
  margin-bottom: 20px;
  padding-left: 18px;
}

.service-detail-list li {
  margin-bottom: 8px;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero h1 {
    font-size: 50px;
  }

  .hero-visual {
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .about-premium-box,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .map-card {
    min-height: 360px;
  }
}

@media (max-width: 768px) {
  .header-inner {
    min-height: 76px;
  }

  .logo {
    font-size: 22px;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav.show {
    display: flex;
  }

  .hero {
    padding: 90px 0 70px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-text {
    font-size: 16px;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading h2,
  .cta-box h2 {
    font-size: 30px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 24px 22px;
  }

  .cta-box {
    padding: 40px 22px;
  }

  .hero-visual {
    min-height: auto;
    padding: 0;
  }

  .hero-card-main {
    min-height: 300px;
    padding: 28px 22px;
  }

  .hero-main-text {
    max-width: 100%;
    padding-top: 40px;
    padding-bottom: 0;
  }

  .hero-card-main h3 {
    font-size: 28px;
  }

  .hero-card-small {
    position: static;
    width: 100%;
    margin-top: 16px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(92%, 100%);
  }

  .hero h1 {
    font-size: 30px;
  }

  .section-heading h2,
  .cta-box h2,
  .about-cta-box h3 {
    font-size: 26px;
  }

  .btn {
    width: 100%;
  }

  .hero-buttons,
  .contact-buttons {
    flex-direction: column;
  }

  .nav a {
    font-size: 14px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    padding: 12px 16px;
    font-size: 14px;
  }
}/* SON DOKUNUŞ ANİMASYONLARI */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.hero-content,
.hero-visual,
.section-heading,
.service-card,
.cta-box,
.about-text-block,
.about-mini-card,
.about-cta-box,
.contact-info-card,
.map-card,
.about-content {
  animation: fadeUp 0.9s ease both;
}

.service-card:nth-child(2),
.about-mini-card:nth-child(2) {
  animation-delay: 0.08s;
}

.service-card:nth-child(3),
.about-mini-card:nth-child(3) {
  animation-delay: 0.16s;
}

.service-card:nth-child(4) {
  animation-delay: 0.24s;
}

.service-card:nth-child(5) {
  animation-delay: 0.32s;
}

.service-card:nth-child(6) {
  animation-delay: 0.4s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header.scrolled {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.96);
}

.service-card:hover .service-link {
  transform: translateX(4px);
}

.service-link {
  transition: 0.3s ease;
}

.btn,
.service-card,
.about-mini-card,
.contact-info-card,
.map-card,
.about-text-block,
.about-content,
.cta-box,
.about-cta-box,
.hero-card {
  will-change: transform;
}

.footer p {
  letter-spacing: 0.2px;
}/* GALERİ */

.gallery-intro-box {
  max-width: 860px;
  margin: 0 auto 34px;
  padding: 24px 22px;
  text-align: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.gallery-intro-box p {
  color: var(--muted);
  line-height: 1.8;
}

.gallery-grid-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  cursor: pointer;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-item::after {
  content: "Büyüt";
  position: absolute;
  inset: auto 16px 16px auto;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

/* LIGHTBOX */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 12, 12, 0.86);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  padding: 30px;
}

.lightbox.show {
  display: flex;
}

.lightbox img {
  max-width: min(920px, 90vw);
  max-height: 82vh;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.12);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  transition: 0.3s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.24);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 34px;
  cursor: pointer;
  transition: 0.3s ease;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.24);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

@media (max-width: 992px) {
  .gallery-grid-premium {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .gallery-grid-premium {
    grid-template-columns: 1fr;
  }

  .lightbox {
    padding: 18px;
  }

  .lightbox-close {
    top: 14px;
    right: 14px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }
}/* ANA SAYFA MİNİ GALERİ */

.home-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.home-gallery-item {
  display: block;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  background: #fff;
}

.home-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.home-gallery-item:hover img {
  transform: scale(1.06);
}

.section-button-wrap {
  margin-top: 28px;
  text-align: center;
}

/* INSTAGRAM BÖLÜMÜ */

.instagram-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.instagram-content {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 34px 30px;
}

.instagram-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 600;
}

.instagram-content h3 {
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.instagram-content p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.instagram-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.instagram-preview-card {
  display: block;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  aspect-ratio: 1 / 1;
  background: #fff;
}

.instagram-preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.instagram-preview-card:hover img {
  transform: scale(1.06);
}

/* YORUMLAR */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 28px 24px;
  transition: 0.3s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.review-stars {
  font-size: 22px;
  color: #f4b400;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-card p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 18px;
}

.review-card strong {
  color: var(--text);
  font-size: 15px;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .home-gallery-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .instagram-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .home-gallery-grid,
  .reviews-grid,
  .instagram-preview-grid {
    grid-template-columns: 1fr;
  }

  .instagram-content h3 {
    font-size: 26px;
  }
}/* FOOTER GELİŞMİŞ */

.footer {
  margin-top: 30px;
  padding: 0;
  background: rgba(255, 255, 255, 0.88);
  border-top: 1px solid var(--border);
}

.footer-top {
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 28px;
}

.footer-brand h3 {
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--text);
}

.footer-brand p,
.footer-links a,
.footer-contact a,
.footer-contact p {
  color: var(--muted);
  line-height: 1.8;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 18px;
  margin-bottom: 14px;
  color: var(--text);
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--primary-dark);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 0;
  text-align: center;
}

.footer-bottom p {
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.2px;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}/* LOGO */

.logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--primary-soft);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

@media (max-width: 768px) {
  .logo-img {
    width: 38px;
    height: 38px;
  }

  .logo-text {
    font-size: 20px;
  }
}.hero-img{
width:100%;
border-radius:20px;
margin-top:20px;
}.service-photo-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.service-page-img {
  width: 100%;
  display: block;
  border-radius: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #fff;
}/* İSTATİSTİKLER */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.stat-card {
  background: #f5f0e2;
  border-radius: 24px;
  padding: 34px 20px;
  text-align: center;
  border: 1px solid #ede3c8;
  box-shadow: var(--shadow);
}

.stat-card h3 {
  font-size: 62px;
  line-height: 1;
  margin-bottom: 12px;
  color: #c99000;
  font-weight: 800;
}

.stat-card p {
  color: #5e5b51;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 14px;
  margin: 0;
}

/* YORUMLAR */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.review-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 28px 24px;
  transition: 0.3s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.review-stars {
  font-size: 22px;
  color: #f4b400;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.review-card p {
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 18px;
}

.review-card strong {
  color: var(--text);
  font-size: 15px;
}

@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card h3 {
    font-size: 48px;
  }

  .stat-card p {
    letter-spacing: 2px;
    font-size: 13px;
  }
}/* GOOGLE TARZI YORUMLAR */

.google-style-reviews {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.google-review-card {
  background: #ffffff;
  border: 1px solid #ece7e7;
  border-radius: 24px;
  padding: 26px 24px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.google-review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e6eefc;
  color: #3559a8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.review-user-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-user-info strong {
  color: var(--text);
  font-size: 16px;
  line-height: 1.2;
}

.review-user-info span {
  color: #8c8484;
  font-size: 13px;
}

.google-review-card .review-stars {
  font-size: 20px;
  color: #f4b400;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.google-review-card p {
  color: #5f5656;
  line-height: 1.85;
  margin: 0;
}

@media (max-width: 992px) {
  .google-style-reviews {
    grid-template-columns: 1fr;
  }
}/* GOOGLE RATING BOX */

.google-rating-box{
display:flex;
align-items:center;
justify-content:space-between;
gap:24px;
background:#ffffff;
border:1px solid #ece7e7;
border-radius:24px;
padding:26px 30px;
margin:30px 0 40px;
box-shadow:0 12px 32px rgba(0,0,0,0.06);
}

.google-logo{
width:52px;
height:52px;
border-radius:50%;
background:#4285F4;
color:white;
display:flex;
align-items:center;
justify-content:center;
font-weight:700;
font-size:24px;
}

.google-rating-center h3{
font-size:32px;
margin:0;
color:#2b2323;
}

.google-stars{
font-size:20px;
color:#f4b400;
letter-spacing:2px;
margin:4px 0;
}

.google-rating-center p{
color:#7b7373;
font-size:14px;
margin:0;
}

@media (max-width:768px){

.google-rating-box{
flex-direction:column;
text-align:center;
}

}/* FOTOĞRAFLI HİZMET KARTLARI */

.service-card-img{
position:relative;
display:block;
overflow:hidden;
border-radius:24px;
aspect-ratio:4/5;
box-shadow:var(--shadow);
border:1px solid var(--border);
}

.service-card-img img{
width:100%;
height:100%;
object-fit:cover;
transition:transform 0.4s ease;
}

.service-overlay{
position:absolute;
bottom:0;
left:0;
right:0;
padding:22px;
background:linear-gradient(to top, rgba(0,0,0,0.65), transparent);
color:white;
}

.service-overlay h3{
margin:0;
font-size:22px;
}

.service-card-img:hover img{
transform:scale(1.08);
}/* FOTOĞRAFLI HİZMET KARTLARI */

.services-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:24px;
}

.service-card-img{
position:relative;
display:block;
overflow:hidden;
border-radius:24px;
aspect-ratio:4/5;
box-shadow:var(--shadow);
border:1px solid var(--border);
transition:0.35s ease;
}

.service-card-img img{
width:100%;
height:100%;
object-fit:cover;
transition:transform 0.5s ease;
}

.service-overlay{
position:absolute;
bottom:0;
left:0;
right:0;
padding:22px;
background:linear-gradient(to top, rgba(0,0,0,0.75), transparent);
color:white;
display:flex;
flex-direction:column;
gap:6px;
}

.service-overlay h3{
margin:0;
font-size:22px;
}

.service-overlay span{
font-size:14px;
opacity:0;
transform:translateY(8px);
transition:0.3s ease;
}

.service-card-img:hover{
transform:translateY(-6px);
box-shadow:var(--shadow-hover);
}

.service-card-img:hover img{
transform:scale(1.08);
}

.service-card-img:hover .service-overlay span{
opacity:1;
transform:translateY(0);
}

/* RESPONSIVE */

@media(max-width:992px){

.services-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:640px){

.services-grid{
grid-template-columns:1fr;
}

}.hero {
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(217, 165, 179, 0.18), transparent 32%),
    radial-gradient(circle at bottom right, rgba(197, 141, 157, 0.14), transparent 28%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 680px;
  color: var(--text);
}

.hero-subtitle {
  color: var(--primary-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: 58px;
  line-height: 1.08;
  margin-bottom: 20px;
  font-weight: 800;
}

.hero h1 span {
  color: var(--primary-dark);
  display: block;
}

.hero-text {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  padding: 18px 0 26px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-card-main {
  min-height: 470px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
}

.hero-main-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 22px;
  margin: 18px 0 22px;
}

.mini-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 600;
}

.hero-main-text {
  max-width: 310px;
}

.hero-card-main h3 {
  font-size: 34px;
  line-height: 1.15;
  margin-bottom: 10px;
}

.hero-card-main p {
  color: var(--muted);
}

.hero-card-small {
  position: absolute;
  width: 255px;
  padding: 20px 18px;
  z-index: 2;

  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 22px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.hero-card-small strong {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
}

.hero-card-small span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.top-card {
  top: 0;
  right: -8px;
}

.bottom-card {
  right: -17px;
  bottom: -29px;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero h1 {
    font-size: 50px;
  }

  .hero-visual {
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 90px 0 70px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-visual {
    min-height: auto;
    padding: 0;
  }

  .hero-card-main {
    min-height: 300px;
    padding: 22px;
  }

  .hero-main-image {
    height: 220px;
    margin: 16px 0 18px;
  }

  .hero-main-text {
    max-width: 100%;
  }

  .hero-card-main h3 {
    font-size: 28px;
  }

  .hero-card-small {
    position: static;
    width: 100%;
    margin-top: 16px;
  }
}