/* ============================================
   DR. DT. MEHMET RIDVAN DEMİR - STYLE.CSS
   Renk Paleti:
   --navy:      #0F2854
   --blue:      #1C4D8D
   --mid:       #4988C4
   --light:     #BDE8F5
   ============================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #0F2854;
  --blue:   #1C4D8D;
  --mid:    #4988C4;
  --light:  #BDE8F5;
  --white:  #FFFFFF;
  --gray:   #6B7280;
  --gray-light: #F4F7FB;
  --text:   #1E293B;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(15,40,84,0.10);
  --shadow-lg: 0 8px 40px rgba(15,40,84,0.16);
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--mid);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(73,136,196,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}

/* ---- Section Titles ---- */
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: 48px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--mid), var(--light));
  border-radius: 2px;
  margin: 16px auto 20px;
}

/* ---- NAVBAR ---- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: all var(--transition);
}

#navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(15,40,84,0.12);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  transition: color var(--transition);
}

.nav-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter var(--transition);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo span {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0.85;
  letter-spacing: 0.05em;
}

#navbar.scrolled .nav-logo { color: var(--navy); }
#navbar.scrolled .nav-logo-img { filter: brightness(0) saturate(100%) invert(14%) sepia(60%) saturate(800%) hue-rotate(195deg) brightness(85%); }

.nav-links {
  display: flex;
  gap: 8px;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: all var(--transition);
}

.nav-links a:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

#navbar.scrolled .nav-links a { color: var(--navy); }
#navbar.scrolled .nav-links a:hover { background: var(--gray-light); }

.nav-cta {
  background: var(--mid) !important;
  color: var(--white) !important;
  font-weight: 600;
}

.nav-cta:hover {
  background: var(--blue) !important;
  box-shadow: 0 4px 16px rgba(73,136,196,0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

#navbar.scrolled .hamburger span { background: var(--navy); }

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- HERO ---- */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 60%, var(--mid) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  position: relative;
  z-index: 1;
}

.hero-content { color: var(--white); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(189,232,245,0.15);
  border: 1px solid rgba(189,232,245,0.3);
  color: var(--light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-name {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 8px;
  color: var(--white);
}

.hero-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--light);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-tagline {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-photo-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-photo-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.hero-photo-frame::before {
  content: '';
  position: absolute;
  bottom: -20px;
  left: -20px;
  right: 20px;
  top: 20px;
  border: 2px solid rgba(189,232,245,0.3);
  border-radius: 24px;
  z-index: 0;
}

.hero-photo-frame img {
  width: 100%;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  object-fit: cover;
  aspect-ratio: 3/4;
  background: rgba(255,255,255,0.1);
}

.hero-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  border: 2px dashed rgba(189,232,245,0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.hero-photo-placeholder svg {
  width: 64px;
  height: 64px;
  opacity: 0.4;
}

/* ---- ABOUT ---- */
#about {
  padding: 100px 0;
  background: var(--gray-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-photo-wrap { position: relative; }

.about-photo-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: var(--light);
}

.about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--mid);
  gap: 12px;
  font-size: 0.9rem;
}

.about-photo-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--mid), var(--light));
  border-radius: 20px;
  z-index: -1;
}

.about-content .section-title { text-align: left; }

.about-content .line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--mid), var(--light));
  border-radius: 2px;
  margin: 16px 0 24px;
}

.about-bio {
  color: var(--gray);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.8;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.highlight-card {
  background: var(--white);
  border: 1px solid rgba(73,136,196,0.15);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.highlight-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--mid);
}

.highlight-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.highlight-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}

/* ---- SERVICES ---- */
#services {
  padding: 100px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(73,136,196,0.15);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--mid);
}

.service-photo {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--light), var(--mid));
  overflow: hidden;
  position: relative;
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
}

.service-body {
  padding: 28px;
  flex: 1;
}

.service-number {
  display: inline-block;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: none;
}

.service-desc.expanded {
  display: block;
  overflow: visible;
}

.service-read-more {
  background: none;
  border: none;
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  padding: 6px 0 0;
  display: block;
}
.service-read-more:hover { color: var(--navy); }

/* ---- GALLERY ---- */
#gallery {
  padding: 100px 0;
  background: var(--navy);
}

#gallery .section-title { color: var(--white); }
#gallery .section-subtitle { color: rgba(255,255,255,0.65); }
#gallery .line { background: linear-gradient(90deg, var(--mid), var(--light)); }

.gallery-slider {
  position: relative;
}

.gallery-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 8px;
}

.gallery-track::-webkit-scrollbar { display: none; }

.gallery-item {
  flex: 0 0 calc(33.333% - 19px);
  min-width: 300px;
  scroll-snap-align: start;
}

.gallery-compare {
  border-radius: 16px;
  overflow: hidden;
  background: var(--blue);
  box-shadow: var(--shadow-lg);
}

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

.gallery-photo {
  position: relative;
}

.gallery-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.gallery-photo-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
}

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

.gallery-label {
  padding: 10px;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-label.before {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
}

.gallery-label.after {
  background: var(--mid);
  color: var(--white);
}

.gallery-case {
  padding: 12px 16px;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.gallery-dot.active {
  background: var(--light);
  width: 24px;
  border-radius: 4px;
}

/* ---- TESTIMONIALS ---- */
#testimonials {
  padding: 100px 0;
  background: var(--gray-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(73,136,196,0.1);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-stars {
  color: #F59E0B;
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}

.testimonial-text::before { content: '"'; }
.testimonial-text::after { content: '"'; }

.testimonial-author {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mid), var(--light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}

/* ---- FAQ ---- */
#faq {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 60%, var(--mid) 100%);
  position: relative;
}

#faq::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

#faq .container { position: relative; z-index: 1; }

.faq-badge {
  background: rgba(255,255,255,0.15) !important;
  color: var(--light) !important;
}

.faq-title { color: var(--white) !important; }

.faq-item { border-bottom-color: rgba(255,255,255,0.15) !important; }
.faq-item:first-child { border-top-color: rgba(255,255,255,0.15) !important; }

.faq-question { color: rgba(255,255,255,0.9) !important; }
.faq-question:hover, .faq-question.open { color: var(--light) !important; }

.faq-answer p { color: rgba(255,255,255,0.75) !important; }

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}

.faq-badge {
  display: inline-block;
  background: var(--light);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.faq-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  position: sticky;
  top: 100px;
}

.faq-list {
  list-style: none;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.faq-item:first-child {
  border-top: 1px solid #e5e7eb;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--blue); }

.faq-question.open { color: var(--blue); }

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  font-size: 1.1rem;
  line-height: 1;
}

.faq-question.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer.open {
  max-height: 400px;
  padding-bottom: 20px;
}

.faq-answer p {
  color: var(--gray);
  font-size: 0.97rem;
  line-height: 1.75;
}

@media (max-width: 768px) {
  .faq-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .faq-title { position: static; }
}

/* ---- CONTACT ---- */
#contact {
  padding: 100px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  color: var(--white);
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-item-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mid);
  margin-bottom: 4px;
}

.contact-item-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}

.contact-item-value a:hover { color: var(--mid); }

.contact-hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 4px;
}

.contact-hours-table tr { border-bottom: 1px solid rgba(73,136,196,0.1); }
.contact-hours-table tr:last-child { border-bottom: none; }

.contact-hours-table td {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--gray);
}

.contact-hours-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--navy);
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition);
  text-decoration: none;
}

.contact-btn-phone {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
}

.contact-btn-phone:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(15,40,84,0.3);
}

.contact-btn-whatsapp {
  background: #25D366;
  color: var(--white);
}

.contact-btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}

.contact-btn-instagram {
  background: linear-gradient(135deg, #833AB4, #FD1D1D, #FCAF45);
  color: var(--white);
}

.contact-btn-instagram:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(131,58,180,0.4);
}

.contact-btn-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-btn-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.map-placeholder {
  height: 360px;
  background: linear-gradient(135deg, var(--light), rgba(189,232,245,0.4));
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--mid);
  gap: 12px;
  font-size: 0.9rem;
  border: 2px dashed rgba(73,136,196,0.3);
}

.map-placeholder svg {
  width: 48px;
  height: 48px;
  stroke: var(--mid);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.6;
}

.map-embed {
  width: 100%;
  height: 360px;
  border-radius: 20px;
  border: none;
  overflow: hidden;
}

/* ---- FOOTER ---- */
#footer {
  background: #12213a;
  padding: 64px 0 24px;
  color: rgba(255,255,255,0.65);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-logo-img {
  width: 48px;
  height: auto;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.footer-logo-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.footer-logo-sub {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--light);
  margin-top: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--mid);
  border-color: var(--mid);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 19px;
  height: 19px;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}

.footer-social a:hover svg { color: white; }

.footer-col-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-links li::before {
  content: '›';
  color: var(--mid);
  margin-right: 8px;
  font-size: 1rem;
}

.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  padding: 5px 0;
  transition: all var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

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

.footer-contact-item svg {
  stroke: var(--mid);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item p, .footer-contact-item a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.footer-contact-item a:hover { color: var(--light); }

.footer-contact-label {
  font-weight: 600;
  color: rgba(255,255,255,0.85) !important;
  margin-bottom: 4px;
  font-size: 0.85rem !important;
}

.footer-hours-table {
  border-collapse: collapse;
  width: 100%;
}

.footer-hours-table td {
  padding: 3px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  vertical-align: top;
}

.footer-hours-table td:first-child {
  padding-right: 16px;
  white-space: nowrap;
}

.footer-hours-table td:last-child {
  white-space: nowrap;
}

.footer-bottom {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

/* ---- LİGHTBOX ---- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }

/* Galeri fotoğrafları tıklanabilir */
#gallery-track img {
  cursor: zoom-in;
  transition: transform 0.2s;
}
#gallery-track img:hover { transform: scale(1.03); }

/* ---- YÜZEN İKONLAR ---- */
.float-icons {
  position: fixed;
  right: 20px;
  bottom: 40px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.22);
  transition: all var(--transition);
  position: relative;
  overflow: visible;
}

.float-icon svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.float-icon:hover {
  transform: translateX(-4px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}

.float-label {
  position: absolute;
  right: 58px;
  background: var(--navy);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.float-label::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--navy);
  border-right: 0;
}

.float-icon:hover .float-label { opacity: 1; }

.float-icon-phone {
  background: var(--blue);
}

.float-icon-whatsapp {
  background: #1C8C3C;
}

.float-icon-instagram {
  background: var(--mid);
}

@media (max-width: 768px) {
  .float-icons { right: 14px; bottom: 24px; }
  .float-icon { width: 44px; height: 44px; border-radius: 12px; }
  .float-label { display: none; }
}

/* ---- MOBILE MENU ---- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 16px 24px 24px;
  box-shadow: 0 8px 24px rgba(15,40,84,0.15);
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-10px);
  opacity: 0;
  transition: all var(--transition);
}

.mobile-menu.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu a {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-weight: 500;
  color: var(--navy);
  font-size: 1rem;
  transition: all var(--transition);
}

.mobile-menu a:hover { background: var(--gray-light); }

.mobile-menu .nav-cta {
  background: var(--mid) !important;
  color: var(--white) !important;
  text-align: center;
  margin-top: 8px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 48px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 24px 80px;
    gap: 40px;
  }

  .hero-photo-wrap { order: -1; }
  .hero-photo-frame { max-width: 280px; margin: 0 auto; }
  .hero-buttons { justify-content: center; }
  .hero-subtitle { margin: 0 auto 40px; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo-accent { display: none; }
  .about-content .section-title { text-align: center; }
  .about-content .line { margin: 16px auto 24px; }

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

  .gallery-item { flex: 0 0 85%; }

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

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

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-col-brand { text-align: center; }
  .footer-social { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .about-highlights { grid-template-columns: 1fr; }
  .contact-buttons .contact-btn { font-size: 0.9rem; }
}
