:root {
  --primary: #2d2a32;
  --accent: #eab308;
  --bg: #f9fafb;
  --text: #22223b;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Segoe UI', 'Arial', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

header {
  background: var(--primary);
  color: #fff;
  padding: 0.5rem 0;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

.logo {
  font-size: 1.7rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: var(--accent);
  text-shadow: 1px 1px 8px #0002;
  text-decoration: none;
  border-bottom: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s;
  position: absolute;
  left: 0; bottom: -4px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

@media (max-width: 900px) {
  .hero-flex { flex-direction: column; gap: 2rem; }
  .gallery-original { gap: 1rem; }
  .section {
    margin: 1rem 0.5rem;
    padding: 1.2rem 0.5rem;
  }
  .cards {
    gap: 1rem;
  }
  .card {
    padding: 1.2rem 0.7rem;
    min-width: 180px;
    max-width: 100%;
  }
}

@media (max-width: 700px) {
  .navbar { flex-direction: column; align-items: flex-start; }
  .nav-links {
    flex-direction: column;
    width: 100%;
    display: none;
    gap: 1rem;
    margin-top: 1rem;
  }
  .nav-links.open { display: flex; }
  .menu-toggle { display: flex; margin-left: auto; }
  .navbar {
    padding: 0 1rem;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 15px;
  }
  .section {
    margin: 0.5rem 0.2rem;
    padding: 0.7rem 0.2rem;
  }
  .hero, .hero-flex {
    padding: 1.2rem 0.2rem 1rem 0.2rem;
    min-height: unset;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
  .hero p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
  }
  .cards {
    flex-direction: column;
    gap: 0.7rem;
  }
  .card {
    min-width: 120px;
    max-width: 100%;
    padding: 0.7rem 0.3rem;
  }
  .gallery,
  .gallery-original {
    flex-direction: column;
    gap: 0.7rem;
    align-items: stretch;
  }
  .gallery-img,
  .gallery-original-img {
    width: 100% !important;
    height: auto !important;
    min-width: 0;
    max-width: 100%;
  }
  .hero-main-img {
    width: 100%;
    height: auto;
    min-width: 0;
    max-width: 100%;
  }
  footer {
    font-size: 0.95rem;
    padding: 0.7rem 0 0.5rem 0;
    margin-top: 1.2rem;
  }
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  background: linear-gradient(120deg, #eab30822 0%, #fff 100%);
  text-align: center;
  padding: 3rem 1rem 2rem 1rem;
}

.hero-flex {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 3rem;
  min-height: 60vh;
  background: linear-gradient(120deg, #eab30822 0%, #fff 100%);
  padding: 3rem 1rem 2rem 1rem;
  flex-wrap: wrap;
}

.hero-slider-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-slider {
  width: 100%;
  position: relative;
}

.hero-slide {
  display: none;
  width: 100%;
  min-height: 350px;
  align-items: center;
  justify-content: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
  background: transparent;
}

.hero-slide.active {
  display: flex;
  animation: fadeIn 0.7s;
  background: transparent;
}

.hero-slide-content {
  flex: 1 1 320px;
  min-width: 280px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}

.hero-slide-content h1 {
  font-size: 2.7rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: left;
}

.hero-slide-content p {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 2rem;
  max-width: 600px;
  text-align: left;
}

.hero-slide-content .btn {
  align-self: flex-start;
}

.hero-slide-image {
  flex: 1 1 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide-image img.hero-main-img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #eee;
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(40px);}
  to { opacity: 1; transform: none;}
}

.cards {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
  flex: 1 1 250px;
  min-width: 250px;
  max-width: 340px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(234,179,8,0.15);
}

.card-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

footer {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 1.2rem 0 0.7rem 0;
  margin-top: 3rem;
  border-radius: var(--radius) var(--radius) 0 0;
  font-size: 1rem;
  letter-spacing: 1px;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border-radius: var(--radius);
  border: 1px solid #ddd;
  font-size: 1rem;
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--accent);
  border-color: var(--accent);
}

/* Form mesaj stilleri */
.form-message {
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: var(--radius);
  font-weight: 500;
  text-align: center;
}

.form-message.success {
  background-color: #d1fae5;
  color: #065f46;
  border: 1px solid #10b981;
}

.form-message.error {
  background-color: #fee2e2;
  color: #991b1b;
  border: 1px solid #ef4444;
}

/* JavaScript form hatası ve başarı mesajları için de aynı stiller */
.form-error {
  padding: 1rem;
  margin-top: 1rem;
  border-radius: var(--radius);
  background-color: #fee2e2;
  color: #991b1b;
  border: 1px solid #ef4444;
  font-weight: 500;
  text-align: center;
}

.form-success {
  padding: 1rem;
  margin-top: 1rem;
  border-radius: var(--radius);
  background-color: #d1fae5;
  color: #065f46;
  border: 1px solid #10b981;
  font-weight: 500;
  text-align: center;
}

.gallery {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  margin-top: 1rem;
}

.gallery-img {
  width: 420px;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  background: #eee;
}

.gallery-img:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: 0 8px 32px rgba(234,179,8,0.15);
}

/* Galeri orijinal boyutlu */
.gallery-original {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
  margin-top: 1rem;
}
.gallery-original-img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #eee;
  margin-bottom: 1rem;
  /* Orijinal boyut için width/height verilmez */
  transition: transform 0.2s, box-shadow 0.2s;
}
.gallery-original-img:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: 0 8px 32px rgba(234,179,8,0.15);
}

.gallery-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  justify-items: center;
  align-items: stretch;
  margin-top: 1rem;
  padding: 0 10px;
}

.gallery-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(34,34,59,0.09), 0 1.5px 8px rgba(234,179,8,0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transition: transform 0.18s, box-shadow 0.18s;
  border: none;
  max-width: 370px;
  width: 100%;
  margin-bottom: 0.5rem;
  position: relative;
}

.gallery-card-img-zoom {
  overflow: hidden;
  border-radius: 22px 22px 0 0;
  background: #eee;
}

.gallery-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  border-radius: 22px 22px 0 0;
  transition: transform 0.25s cubic-bezier(.4,2,.6,1);
  box-shadow: 0 2px 12px #0001;
}

.gallery-card:hover .gallery-card-img {
  transform: scale(1.06);
  box-shadow: 0 8px 32px rgba(234,179,8,0.13);
}

.gallery-card-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.1rem 1.2rem 1.2rem 1.2rem;
  background: #f9fafb;
  border-radius: 0 0 22px 22px;
  min-height: 90px;
  justify-content: center;
  box-shadow: 0 2px 8px #0001;
}

.gallery-card-caption {
  font-size: 1.22rem;
  color: #22223b;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.5px;
  margin-bottom: 0.4rem;
  line-height: 1.2;
  text-shadow: 0 1px 4px #fff8;
}

.gallery-card-desc {
  font-size: 1.07rem;
  color: #555;
  text-align: center;
  font-weight: 400;
  line-height: 1.5;
  opacity: 0.92;
}

/* Responsive */
@media (max-width: 1100px) {
  .gallery-cards {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
  }
  .gallery-card-img {
    height: 180px;
  }
}
@media (max-width: 700px) {
  .gallery-cards {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0;
  }
  .gallery-card-img {
    height: 120px;
  }
  .gallery-card-info {
    padding: 0.8rem 0.7rem 0.9rem 0.7rem;
  }
}

@media (max-width: 900px) {
  .hero-flex { flex-direction: column; gap: 2rem; }
  .gallery-original { gap: 1rem; }
  .section {
    margin: 1rem 0.5rem;
    padding: 1.2rem 0.5rem;
  }
  .cards {
    gap: 1rem;
  }
  .card {
    padding: 1.2rem 0.7rem;
    min-width: 180px;
    max-width: 100%;
  }
  .hero-slider-container {
    max-width: 100%;
  }
  .hero-slide {
    flex-direction: column;
    gap: 2rem;
    min-height: unset;
  }
  .hero-slide-content, .hero-slide-image {
    max-width: 100%;
    min-width: 0;
  }
  .hero-slide-content h1, .hero-slide-content p {
    text-align: center;
  }
  .hero-slide-content .btn {
    align-self: center;
  }
}

@media (max-width: 700px) {
  .navbar { flex-direction: column; align-items: flex-start; }
  .nav-links {
    flex-direction: column;
    width: 100%;
    display: none;
    gap: 1rem;
    margin-top: 1rem;
  }
  .nav-links.open { display: flex; }
  .menu-toggle { display: flex; margin-left: auto; }
  .navbar {
    padding: 0 1rem;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 15px;
  }
  .section {
    margin: 0.5rem 0.2rem;
    padding: 0.7rem 0.2rem;
  }
  .hero, .hero-flex {
    padding: 1.2rem 0.2rem 1rem 0.2rem;
    min-height: unset;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
  .hero p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
  }
  .cards {
    flex-direction: column;
    gap: 0.7rem;
  }
  .card {
    min-width: 120px;
    max-width: 100%;
    padding: 0.7rem 0.3rem;
  }
  .gallery,
  .gallery-original {
    flex-direction: column;
    gap: 0.7rem;
    align-items: stretch;
  }
  .gallery-img,
  .gallery-original-img {
    width: 100% !important;
    height: auto !important;
    min-width: 0;
    max-width: 100%;
  }
  .hero-main-img {
    width: 100%;
    height: auto;
    min-width: 0;
    max-width: 100%;
  }
  footer {
    font-size: 0.95rem;
    padding: 0.7rem 0 0.5rem 0;
    margin-top: 1.2rem;
  }
  .hero-slide-content h1 {
    font-size: 1.5rem;
  }
  .hero-slide-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .hero-slide {
    gap: 1rem;
  }
}

/* Modern Footer Stilleri */
.modern-footer {
  background: linear-gradient(135deg, var(--primary) 0%, #1f1d24 100%);
  color: white;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.footer-section {
  padding: 0.5rem 0;
}

.footer-title {
  color: var(--accent);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.footer-desc {
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.contact-item:hover {
  opacity: 1;
}

.contact-icon {
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
}

.contact-item a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--accent);
}

.footer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-menu li a {
  color: white;
  text-decoration: none;
  opacity: 0.9;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 0.3rem 0;
  position: relative;
}

.footer-menu li a:hover {
  opacity: 1;
  color: var(--accent);
  transform: translateX(8px);
}

.footer-menu li a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-menu li a:hover::before {
  opacity: 1;
}

.working-hours {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hour-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  opacity: 0.9;
}

.hour-item:last-child {
  border-bottom: none;
}

.footer-bottom {
  background: rgba(0,0,0,0.2);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
}

.footer-bottom-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-credits {
  opacity: 0.8;
  font-size: 0.9rem;
}

.footer-credits a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-credits a:hover {
  color: #fbbf24;
  text-decoration: underline;
}

/* Hizmetlerimiz Bölümü - Modern Kartlar */
.modern-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.modern-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid #f3f4f6;
}

.modern-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.modern-card-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modern-card-icon svg {
  transition: transform 0.3s ease;
}

.modern-card:hover .modern-card-icon svg {
  transform: scale(1.1);
}

.modern-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.modern-card-desc {
  color: #6b7280;
  line-height: 1.6;
  font-size: 1rem;
}

/* Responsive Hizmetler */
@media (max-width: 768px) {
  .modern-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 0.5rem;
  }
  
  .modern-card {
    padding: 1.5rem 1rem;
  }
  
  .modern-card-title {
    font-size: 1.2rem;
  }
}

/* İletişim Sayfası - Modern Kartlar */
.contact-modern-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.contact-modern-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-modern-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.contact-modern-desc {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-modern-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-modern-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid #f3f4f6;
}

.contact-modern-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.contact-modern-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-modern-icon svg {
  transition: transform 0.3s ease;
}

.contact-modern-card:hover .contact-modern-icon svg {
  transform: scale(1.1);
}

.contact-modern-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.contact-modern-card-desc {
  color: #6b7280;
  line-height: 1.6;
  font-size: 1rem;
}

.contact-modern-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-modern-link:hover {
  color: var(--primary);
  text-decoration: underline;
}

.contact-modern-form-area {
  background: #f8fafc;
  border-radius: var(--radius);
  padding: 2rem;
  margin-top: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: white;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn {
  background: linear-gradient(135deg, var(--accent) 0%, #d97706 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(234, 179, 8, 0.3);
}

.contact-form .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234, 179, 8, 0.4);
}

/* Responsive İletişim */
@media (max-width: 768px) {
  .contact-modern-section {
    padding: 2rem 0.5rem;
  }
  
  .contact-modern-title {
    font-size: 2rem;
  }
  
  .contact-modern-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-modern-card {
    padding: 1.5rem 1rem;
  }
  
  .contact-modern-form-area {
    padding: 1.5rem;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  z-index: 1000;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
  width: 35px;
  height: 35px;
  filter: brightness(0) invert(1);
}

/* WhatsApp animasyonu */
@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.whatsapp-float {
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
  animation: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
    width: 55px;
    height: 55px;
  }
  
  .whatsapp-icon {
    width: 30px;
    height: 30px;
  }
}

/* Hakkımızda Sayfası - Modern Tasarım */
.about-section-modern {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.about-header-modern {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about-title-modern {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.about-desc-modern {
  font-size: 1.1rem;
  color: #4b5563;
  line-height: 1.8;
  text-align: justify;
}

.about-desc-modern span {
  color: var(--accent);
  font-weight: 700;
}

.about-cards-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.about-card-modern {
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid #f3f4f6;
}

.about-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.about-card-modern-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-card-modern-icon svg {
  transition: transform 0.3s ease;
}

.about-card-modern:hover .about-card-modern-icon svg {
  transform: scale(1.1);
}

.about-card-modern-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.about-card-modern-desc {
  color: #6b7280;
  line-height: 1.6;
  font-size: 1rem;
}

/* Harita Bölümü */
.about-map-area {
  background: #f8fafc;
  padding: 3rem 1rem;
  margin-top: 2rem;
}

.about-map-area-horizontal {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.about-map-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2rem;
}

.about-map-frame {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-map-frame-horizontal iframe {
  border-radius: var(--radius);
}

/* Responsive Hakkımızda */
@media (max-width: 768px) {
  .about-section-modern {
    padding: 2rem 0.5rem;
  }
  
  .about-title-modern {
    font-size: 2rem;
  }
  
  .about-desc-modern {
    font-size: 1rem;
    text-align: left;
  }
  
  .about-cards-modern {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .about-card-modern {
    padding: 2rem 1.5rem;
  }
  
  .about-map-area {
    padding: 2rem 0.5rem;
  }
  
  .about-map-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .about-section-modern {
    padding: 1.5rem 0.25rem;
  }
  
  .about-title-modern {
    font-size: 1.8rem;
  }
  
  .about-card-modern {
    padding: 1.5rem 1rem;
  }
  
  .about-card-modern-title {
    font-size: 1.3rem;
  }
}

/* Footer Kalp Linki */
.heart-link {
  display: inline-block;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
  margin: 0 0.25rem;
}

.heart-link:hover {
  transform: scale(1.2);
  color: #ef4444;
  text-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
  animation: heartbeat 0.6s ease-in-out;
}

@keyframes heartbeat {
  0% { transform: scale(1); }
  25% { transform: scale(1.1); }
  50% { transform: scale(1.2); }
  75% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* Galeri Kartları */
.modern-gallery-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 0 1rem;
}

.modern-gallery-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.modern-gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.gallery-card-img-zoom {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 200px;
}

.gallery-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-card-img-zoom:hover .gallery-card-img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-card-img-zoom:hover .gallery-overlay {
  opacity: 1;
}

.gallery-zoom-icon {
  font-size: 2rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.gallery-card-info {
  padding: 1.5rem;
}

.gallery-card-caption {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.gallery-card-desc {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Lightbox Stilleri */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.lightbox-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  z-index: 10001;
  background: rgba(0,0,0,0.5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  background: rgba(0,0,0,0.8);
  transform: scale(1.1);
}

.lightbox-image {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  display: block;
}

.lightbox-info {
  padding: 1.5rem;
  background: white;
}

.lightbox-info h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.lightbox-info p {
  color: #6b7280;
  line-height: 1.6;
}

/* Responsive Galeri */
@media (max-width: 768px) {
  .modern-gallery-cards {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    padding: 0 0.5rem;
  }
  
  .gallery-card-img-zoom {
    height: 180px;
  }
  
  .gallery-card-info {
    padding: 1rem;
  }
  
  .lightbox-content {
    max-width: 95vw;
    max-height: 95vh;
    margin: 1rem;
  }
  
  .lightbox-image {
    max-height: 60vh;
  }
}


