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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #0b0f0c;
  color: #22c55e;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
}

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

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section {
  padding: 90px 0;
}

.section-tag {
  display: inline-block;
  color: #22c55e;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.section-heading h2 {
  font-size: 40px;
  margin-bottom: 12px;
}

.section-heading p {
  max-width: 700px;
  margin: auto;
  color: #22c55e;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: 0.3s ease;
  background: rgba(10, 15, 12, 0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(57, 211, 83, 0.12);
}

.header.scrolled {
  background: rgba(7, 10, 8, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.nav-container {
  min-height: 85px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo {
  width: 60px;
  height: 90px;
  object-fit: contain;
  animation: floatLogo 3s ease-in-out infinite;
}

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

.logo-title {
  font-size: 23px;
  font-weight: 800;
  background: linear-gradient(90deg, #ffffff, #b7ffbf, #39d353);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-subtitle {
  font-size: 12px;
  color: #22c55e;
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  font-size: 18px;
  font-weight: 700;
  position: relative;
  transition: 0.3s;
}

.nav a:hover {
  color: #22c55e;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: #39d353;
  transition: 0.3s;
}

.nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: #ffffff;
  margin: 5px 0;
  border-radius: 3px;
  transition: 0.3s;
}

/* HERO */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(rgba(7, 12, 9, 0.7), rgba(7, 12, 9, 0.9)),
    url("images/sitelerde-ilaclama-1.jpeg") center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 120px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(57, 211, 83, 0.14), transparent 35%);
}

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

.hero h1 {
  font-size: 58px;
  line-height: 1.1;
  max-width: 750px;
  margin-bottom: 20px;
}

.hero h1 span {
  background: linear-gradient(90deg, #39d353, #b8ffb9, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  max-width: 650px;
  color: #22c55e;
  font-size: 18px;
  margin-bottom: 30px;
}

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

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #2fb548, #39d353);
  color: #22c55e;
  box-shadow: 0 12px 30px rgba(57, 211, 83, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #22c55e;
  background: rgba(255, 255, 255, 0.06);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.mini-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(57, 211, 83, 0.12);
  padding: 22px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: 0.35s ease;
}

.mini-card:hover {
  transform: translateY(-6px);
  border-color: rgba(57, 211, 83, 0.35);
}

.mini-card h3 {
  margin-bottom: 8px;
  color: #22c55e;
}

.mini-card p {
  font-size: 14px;
  margin: 0;
  color: #22c55e;
}

/* FLOATING */
.floating-shapes span {
  position: absolute;
  border-radius: 50%;
  background: rgba(57, 211, 83, 0.12);
  animation: moveUpDown 7s infinite ease-in-out;
}

.floating-shapes span:nth-child(1) {
  width: 120px;
  height: 120px;
  top: 18%;
  right: 10%;
}

.floating-shapes span:nth-child(2) {
  width: 80px;
  height: 80px;
  bottom: 18%;
  left: 8%;
  animation-delay: 1s;
}

.floating-shapes span:nth-child(3) {
  width: 50px;
  height: 50px;
  top: 30%;
  left: 15%;
  animation-delay: 2s;
}

.floating-shapes span:nth-child(4) {
  width: 100px;
  height: 100px;
  bottom: 24%;
  right: 24%;
  animation-delay: 3s;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: center;
}

.about-image img {
  border-radius: 25px;
  min-height: 450px;
  object-fit: cover;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

.about-text h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.about-text p {
  color: #22c55e;
  margin-bottom: 15px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 24px;
}

.feature-box {
  background: #111814;
  border: 1px solid rgba(57, 211, 83, 0.12);
  padding: 22px;
  border-radius: 18px;
}

.feature-box h3 {
  margin-bottom: 8px;
  color: #22c55e;
}

/* SERVICES */
.services {
  background: linear-gradient(to bottom, #0b0f0c, #0f1511);
}

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

.service-card {
  background: #111814;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(57, 211, 83, 0.1);
  transition: 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
}

.service-card img {
  height: 220px;
  object-fit: cover;
}

.service-content {
  padding: 24px;
}

.service-content h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.service-content p {
  color: #22c55e;
}

.no-image {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* STATS */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat-box {
  background: linear-gradient(135deg, #111814, #0d130f);
  border: 1px solid rgba(57, 211, 83, 0.12);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
}

.stat-box h3 {
  font-size: 28px;
  color: #22c55e;
  margin-bottom: 8px;
}

.stat-box p {
  color: #22c55e;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  height: 280px;
  object-fit: cover;
  transition: 0.45s ease;
}

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

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  align-items: start;
}

.contact-info h2 {
  font-size: 40px;
  margin-bottom: 12px;
}

.contact-info p {
  color: #22c55e;
}

.contact-box {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 18px;
  background: #111814;
  border: 1px solid rgba(57, 211, 83, 0.12);
}

.contact-box h3 {
  margin-bottom: 6px;
  color: #22c55e;
}

.contact-box a {
  color: #22c55e;
}

.contact-form form {
  background: #111814;
  padding: 30px;
  border-radius: 24px;
  border: 1px solid rgba(57, 211, 83, 0.12);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 18px;
  margin-bottom: 15px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0b0f0c;
  color: #22c55e;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #22c55e;
}

/* FOOTER */
.footer {
  background: #070a08;
  border-top: 1px solid rgba(57, 211, 83, 0.08);
  margin-top: 30px;
}

.footer-content {
  padding: 60px 0 30px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px;
}

.footer-content h3,
.footer-content h4 {
  margin-bottom: 15px;
}

.footer-content p,
.footer-content li {
  color: #22c55e;
  margin-bottom: 8px;
}

.footer-content a:hover {
  color: #22c55e;
}

.footer-bottom {
  text-align: center;
  padding: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #22c55e;
}

/* WHATSAPP */
.whatsapp-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #25d366;
  color: #22c55e;
  font-weight: 800;
  padding: 14px 20px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
  z-index: 999;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 18px;
}

.close-lightbox {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 42px;
  color: #22c55e;
  cursor: pointer;
}

/* ANIMATION CLASSES */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal-left {
  transform: translateX(-50px);
}

.reveal-right {
  transform: translateX(50px);
}

.reveal.active,
.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translate(0, 0);
}

/* KEYFRAMES */
@keyframes moveUpDown {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-18px);
  }
}

@keyframes floatLogo {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-5px) rotate(2deg);
  }
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hero h1 {
    font-size: 48px;
  }

  .hero-cards,
  .services-grid,
  .stats-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .contact-grid,
  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 85px;
    left: 0;
    width: 100%;
    background: #0b100d;
    flex-direction: column;
    gap: 18px;
    padding: 25px;
    display: none;
    border-top: 1px solid rgba(57, 211, 83, 0.1);
  }

  .nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    text-align: center;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-cards,
  .about-features,
  .services-grid,
  .stats-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .about-text h2,
  .contact-info h2 {
    font-size: 30px;
  }

  .logo-title {
    font-size: 19px;
  }
}
/* HAŞERE TÜRLERİ */

.hasereler {
    padding: 120px 10%;
    background: #0f0f0f;
    color: #fff;
    min-height: 100vh;
}

.hasereler h1 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
}

.hasere {
    background: #111;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    transition: 0.3s;
    border: 1px solid #1c1c1c;
}

.hasere:hover {
    transform: translateY(-5px);
    border-color: #00c853;
}

.hasere h3 {
    color: #00c853;
    margin-bottom: 10px;
    font-size: 22px;
}

.hasere p {
    color: #ccc;
    line-height: 1.6;
}

/* GRID YAPISI */

.hasereler {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    list-style: none;
    padding: 20px 0;
    margin: 0;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

nav ul li a:hover {
    color: #00c853;
}
/* senin mevcut kodların */
footer {
    background: #000;
}

/* BURADAN SONRA EKLE */
.map {
    background: #0f0f0f;
    padding: 40px 20px;
    text-align: center;
}

.map h2 {
    color: #00ff88;
    margin-bottom: 20px;
    font-size: 28px;
}

.map iframe {
    border-radius: 10px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #111;
    color: #fff;
}

header {
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: sticky;
    top: 0;
    z-index: 999;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #00ff88;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
    color: #00ff88;
}

.hero {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.65)),
    url('images/sitelerde-ilaclama-1.jpeg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 25px;
}

.btn {
    display: inline-block;
    background: #00ff88;
    color: #111;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background: #00cc6a;
}

.page-banner {
    padding: 80px 20px 40px;
    text-align: center;
    background: #151515;
}

.page-banner h1 {
    font-size: 40px;
    color: #00ff88;
}

.content {
    max-width: 1100px;
    margin: auto;
    padding: 50px 20px;
    font-size: 20px;
    line-height: 1.8;
}

.cards {
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.card {
    background: #1c1c1c;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    border: 1px solid #2b2b2b;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-6px);
    border-color: #00ff88;
}

.map {
    background: #0f0f0f;
    padding: 40px 20px;
    text-align: center;
}

.map h2 {
    color: #00ff88;
    margin-bottom: 20px;
    font-size: 28px;
}

.map iframe {
    border-radius: 12px;
    max-width: 1200px;
}

footer {
    background: #0b0b0b;
    text-align: center;
    padding: 20px;
    color: #aaa;
    margin-top: 30px;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 17px;
    }

    .page-banner h1 {
        font-size: 30px;
    }

    .content {
        font-size: 17px;
    }
}
.hasere img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
}
.page-hero {
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
              url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
  padding: 120px 20px 80px;
  text-align: center;
  color: #fff;
}

.page-hero h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.page-hero p {
  max-width: 750px;
  margin: 0 auto;
  font-size: 18px;
  color: #ddd;
  line-height: 1.7;
}

.why-us-section {
  padding: 70px 20px;
  background: #111;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.why-card {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 30px 25px;
  transition: 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: #2ecc71;
}

.why-card h3 {
  color: #2ecc71;
  margin-bottom: 15px;
  font-size: 22px;
}

.why-card p {
  color: #ccc;
  font-size: 16px;
  line-height: 1.7;
}

.why-bottom {
  padding: 70px 20px;
  background: #0d0d0d;
}

.why-bottom-box {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background: #161616;
  padding: 45px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.why-bottom-box h2 {
  color: #fff;
  font-size: 34px;
  margin-bottom: 20px;
}

.why-bottom-box p {
  color: #ccc;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  background: #2ecc71;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  transition: 0.3s ease;
}

.btn:hover {
  background: #27ae60;
}

nav ul li a.active {
  color: #2ecc71;
}

@media (max-width: 768px) {
  .page-hero h1 {
    font-size: 34px;
  }

  .page-hero p {
    font-size: 16px;
  }

  .why-bottom-box h2 {
    font-size: 26px;
  }
}
nav ul {
  display: flex;
  align-items: center;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  display: inline-block;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
nav {
  display: flex;
  align-items: center;
}
header .nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header nav ul {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}

header nav ul li {
  display: inline-block !important;
}

header nav ul li a {
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}
.service-card {
  background: #161616;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.35);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.service-card h3 {
  color: #fff;
  font-size: 22px;
  margin: 18px 18px 10px;
}

.service-card p {
  color: #ccc;
  font-size: 15px;
  line-height: 1.6;
  margin: 0 18px 18px;
}
.service-card {
  background: #161616;
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 15px;
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.service-card img:nth-child(2) {
  border-top: 2px solid #222;
}

.service-card h3 {
  color: #22c55e;
  margin-top: 15px;
  font-size: 20px;
}
.logo {
  height: 300px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 15px rgba(0,255,136,0.6));
}

/* Logo büyütme için küçük hizalama düzeltmesi */
.logo-area {
  min-height: 110px;
}

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

  .logo-area {
    min-height: auto;
  }
}


/* ===== SON KESIN LOGO AYARI ===== */
.header .container.nav-container,
.header .nav-container {
  min-height: 95px !important;
  height: 95px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  overflow: visible !important;
}

.header .logo-area {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  margin-left: -55px !important;
  min-height: 0 !important;
  height: auto !important;
  flex-shrink: 0 !important;
}

.header .logo-area img.logo,
.header img.logo,
img.logo {
  width: auto !important;
  max-width: none !important;
  height: 180px !important;
  max-height: none !important;
  display: block !important;
  object-fit: contain !important;
  flex-shrink: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  filter: drop-shadow(0 0 12px rgba(0,255,136,0.5)) !important;
}

.header .logo-text {
  transform: translateX(-6px) !important;
}

@media (max-width: 768px) {
  .header .container.nav-container,
  .header .nav-container {
    height: auto !important;
    min-height: 88px !important;
  }

  .header .logo-area {
    margin-left: 0 !important;
    gap: 10px !important;
  }

  .header .logo-area img.logo,
  .header img.logo,
  img.logo {
    height: 95px !important;
  }
}
/* LOGOYU ZORLA SOLA AL */
.header .container {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
}

.header .logo-area {
  margin-left: 20px !important;
}
.header .logo {
  transform: translateY(15px) !important;
}
.header .nav {
  margin-right: 60px !important;
}
.zoomable {
  cursor: pointer;
  transition: 0.3s;
}

.zoomable:hover {
  transform: scale(1.05);
}
.about-video {
  width: 60%;   /* genişliği küçültür */
  height: 300px;
  object-fit: cover;
  object-position: center;
  border-radius: 25px;
  display: block;
  margin: auto; /* ortalar */
}
.vizyon-misyon {
    padding: 60px 20px;
    background: #111;
}

.vizyon-misyon .container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.vm-box {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.35);
    transition: 0.3s ease;
}

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

.vm-box h2 {
    color: #16a34a;
    margin-bottom: 15px;
    font-size: 28px;
}

.vm-box p {
    color: #ddd;
    font-size: 17px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .vizyon-misyon .container {
        grid-template-columns: 1fr;
    }
}
.about-extra {
  padding: 80px 20px;
  background: #111;
  color: #fff;
}

.about-extra .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #38b000;
}

.section-title p {
  font-size: 17px;
  color: #ccc;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 60px;
}

.about-card {
  background: #1a1a1a;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  transition: 0.3s ease;
  border: 1px solid rgba(56, 176, 0, 0.15);
}

.about-card:hover {
  transform: translateY(-6px);
  border-color: #38b000;
}

.about-card h3 {
  color: #38b000;
  font-size: 22px;
  margin-bottom: 12px;
}

.about-card p {
  color: #ddd;
  line-height: 1.7;
  font-size: 15px;
}

.mission-vision {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}

.mission-box,
.vision-box {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 14px;
  border-left: 5px solid #38b000;
}

.mission-box h3,
.vision-box h3 {
  color: #38b000;
  margin-bottom: 12px;
  font-size: 24px;
}

.mission-box p,
.vision-box p {
  color: #ddd;
  line-height: 1.8;
}

.service-areas {
  text-align: center;
  background: #1a1a1a;
  padding: 30px;
  border-radius: 14px;
}

.service-areas h3 {
  color: #38b000;
  font-size: 28px;
  margin-bottom: 15px;
}

.service-areas p {
  color: #ddd;
  line-height: 1.8;
  font-size: 16px;
}

@media (max-width: 768px) {
  .about-cards,
  .mission-vision {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .about-card h3,
  .mission-box h3,
  .vision-box h3,
  .service-areas h3 {
    font-size: 22px;
  }
}
.social-btn {
    position: fixed;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* WhatsApp */
.whatsapp {
    bottom: 20px;
    background: #25D366;
}

/* Instagram (WhatsApp'ın üstünde) */
.instagram {
    bottom: 90px; /* yukarı alıyor */
    background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf, #4f5bd5);
}
.floating-btn {
    position: fixed;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

/* WhatsApp (en altta) */
.whatsapp {
    bottom: 20px;
    background: #25D366;
}

/* Instagram (üstünde) */
.instagram {
    bottom: 90px;
    background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf, #4f5bd5);
}
/* Hover efekti */
.floating-btn {
    transition: all 0.3s ease;
}

.floating-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 0 20px rgba(0,255,100,0.6);
}

/* Tıklayınca zıplama */
.floating-btn:active {
    transform: scale(0.9);
}

/* Instagram özel glow */
.instagram:hover {
    box-shadow: 0 0 25px rgba(255, 0, 150, 0.7);
}

/* WhatsApp özel glow */
.whatsapp:hover {
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.8);
}
.nav-links a {
    position: relative;
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #22c55e;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: #22c55e;
}

/* ===== MOBIL HAMBURGER MENU FIX ===== */
@media (max-width: 768px) {
  .header {
    overflow: visible !important;
  }

  .header .container.nav-container,
  .header .nav-container {
    min-height: 88px !important;
    height: auto !important;
    padding: 10px 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .header .logo-area {
    margin-left: 0 !important;
    gap: 8px !important;
    max-width: calc(100% - 70px) !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
  }

  .header .logo-area img.logo,
  .header img.logo,
  img.logo {
    height: 62px !important;
    width: auto !important;
    transform: none !important;
  }

  .header .logo-text {
    transform: none !important;
    min-width: 0 !important;
  }

  .header .logo-title {
    font-size: 12px !important;
    line-height: 1.2 !important;
    white-space: normal !important;
    word-break: break-word !important;
  }

  .header .logo-subtitle {
    font-size: 10px !important;
    line-height: 1.2 !important;
    white-space: normal !important;
  }

  .menu-toggle {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    margin-left: 10px !important;
    flex: 0 0 44px !important;
    z-index: 1002 !important;
  }

  .menu-toggle span {
    width: 24px !important;
    height: 3px !important;
    margin: 3px 0 !important;
  }

  .header .nav,
  .nav {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    width: 100% !important;
    background: #0b100d !important;
    padding: 14px 18px 18px !important;
    border-top: 1px solid rgba(57, 211, 83, 0.12) !important;
    box-shadow: 0 12px 24px rgba(0,0,0,0.25) !important;
    flex-direction: column !important;
    gap: 0 !important;
    z-index: 1001 !important;
  }

  .header .nav.active,
  .nav.active {
    display: flex !important;
  }

  .header .nav li,
  .nav li {
    list-style: none !important;
    width: 100% !important;
    display: block !important;
  }

  .header .nav a,
  .nav a {
    display: block !important;
    width: 100% !important;
    padding: 12px 0 !important;
    font-size: 16px !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  }

  .header .nav li:last-child a,
  .nav li:last-child a {
    border-bottom: none !important;
  }
}
/* ===== MOBİL HEADER DÜZELTME (EKLENDİ) ===== */
@media (max-width: 768px) {

  .header .container.nav-container,
  .header .nav-container {
    min-height: 120px !important;
    height: auto !important;
    align-items: center !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }

  .header .logo-area {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-left: 10px !important;
  }

  .header .logo-area img.logo,
  .header img.logo,
  img.logo {
    height: 70px !important;
    width: auto !important;
  }

  .logo-title {
    font-size: 13px !important;
    line-height: 1.2 !important;
  }

  .logo-subtitle {
    font-size: 10px !important;
    line-height: 1.2 !important;
  }

  .logo-text {
    max-width: calc(100% - 95px);
  }

  .header .nav {
    top: 120px !important;
  }
}
