* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #111;
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1400px, calc(100% - 90px));
  margin: 0 auto;
}

/* HEADER */
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 1px 8px rgba(0,0,0,.08);
}

.site-header{
    padding: 0;
}

.header-inner {
  min-height: 85px;
  display: grid;
  grid-template-columns: 240px 1fr 110px;
  align-items: center;
  gap: 30px;
  width: min(1400px, calc(100% - 90px));
  margin: 0 auto;
}

.logo img {
  width: 180px;
}

.desktop-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.desktop-nav > ul > li {
  position: relative;
}

.desktop-nav > ul > li > a {
  padding: 0 18px;
  height: 85px;
  display: flex;
  align-items: center;
}

.desktop-nav a:hover {
  color: #e95b13;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 330px;
  background: #fff;
  border: 1px solid #e5e5e5;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: .25s ease;
  z-index: 20;
}

.dropdown li a {
  display: block;
  padding: 13px 16px;
  border-bottom: 1px solid #eee;
  font-weight: 600;
}

.dropdown li a:hover {
  background: #f8f8f8;
}

.header-social {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.header-social a {
  font-size: 34px;
  color: #555;
}

.mobile-menu-btn {
  display: none;
}

/* HERO */
.hero-slider {
  position: relative;
  height: 570px;
  overflow: hidden;
  background: #222;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .8s ease, visibility .8s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
}

.hero-slide.active img {
  animation: heroZoom 6s ease forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.18); }
  to { transform: scale(1); }
}

.hero-content {
  position: absolute;
  left: 13%;
  top: 48%;
  transform: translateY(-50%);
  max-width: 520px;
  background: rgba(231, 83, 13, .86);
  color: #fff;
  padding: 35px 55px;
  border-radius: 18px;
  opacity: 0;
}

.hero-slide.active .hero-content {
  animation: textIn .9s ease .35s forwards;
}

@keyframes textIn {
  from {
    opacity: 0;
    transform: translateY(-35%);
  }
  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}

.hero-content h1,
.hero-content h2 {
  font-size: 46px;
  line-height: 1.18;
  margin-bottom: 22px;
}

.hero-content p {
  font-size: 21px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 34px;
  cursor: pointer;
  padding: 20px;
}

.slider-arrow.prev {
  left: 15px;
}

.slider-arrow.next {
  right: 15px;
}

.slider-dots {
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 6;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.55);
  cursor: pointer;
}

.slider-dots button.active {
  background: #fff;
}

/* SERVICES */
.services-section {
  padding: 42px 0 55px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.service-card {
  text-align: center;
}

.service-card img {
  width: 100%;
  height: 255px;
  object-fit: cover;
  border-radius: 8px;
}

.service-card h3 {
  font-size: 19px;
  margin-top: 13px;
  font-weight: 700;
}

.service-card:hover h3 {
  color: #e95b13;
}

/* ABOUT */
.about-dark {
  background: #202020;
  color: #fff;
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  align-items: center;
  gap: 80px;
}

.about-logo img {
  width: 480px;
  margin: 0 auto;
}

.about-text h2 {
  font-size: 34px;
  line-height: 1.25;
  margin-bottom: 25px;
}

.about-text p {
  font-size: 20px;
  line-height: 1.55;
  color: #e8e8e8;
  margin-bottom: 25px;
}

.about-text h3 {
  color: #f04a25;
  font-size: 25px;
  margin-bottom: 12px;
}

.about-text li {
  font-size: 19px;
  margin: 9px 0;
}

/* CONTENT */
.content-section {
  background: #fff0cc;
  padding: 70px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.content-text h2 {
  font-size: 28px;
  color: #d71912;
  margin-bottom: 15px;
}

.content-text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 22px;
}

.menu-list {
  display: grid;
  max-width: 430px;
  gap: 8px;
  margin-top: 20px;
}

.menu-list span {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 13px 18px;
  font-weight: 700;
}

.content-image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

/* FOOTER */
.footer-top {
  background: #ffc98f;
  padding: 60px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 45px;
}

.footer-col h4 {
  font-size: 17px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,.35);
}

.footer-col a {
  display: block;
  font-size: 16px;
  margin: 12px 0;
}

.footer-col a:hover {
  color: #d71912;
}

.footer-contact {
  background: #fff;
  padding: 55px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 240px 1fr 160px;
  align-items: center;
  gap: 35px;
}

.footer-logo img {
  width: 180px;
}

.contact-info {
  border-left: 1px solid #ddd;
  padding-left: 35px;
}

.contact-info p {
  font-size: 18px;
  margin: 12px 0;
}

.contact-info i {
  color: #e95b13;
  width: 25px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  font-size: 42px;
}

.footer-social .fa-instagram {
  color: #e95b13;
}

.footer-social .fa-facebook {
  color: #31599b;
}

.footer-bottom {
  background: #ddd;
  color: #888;
  padding: 11px 35px;
  font-size: 14px;
}

/* FIXED BUTTONS */
.fixed-buttons {
  position: fixed;
  right: 24px;
  bottom: 28px;
  display: grid;
  gap: 12px;
  z-index: 9999;
}

.fixed-buttons a {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
}

.call-btn {
  background: #d82317;
}

.whatsapp-btn {
  background: #04b72f;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0 auto 0 0;
  width: 82%;
  max-width: 360px;
  background: #2b2b2b;
  z-index: 10000;
  transform: translateX(-105%);
  transition: .3s ease;
  padding-top: 50px;
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-close {
  position: absolute;
  left: 18px;
  top: 13px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 28px;
}

.mobile-menu > a,
.mobile-sub-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  background: transparent;
  color: #fff;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 15px 35px;
  font-size: 19px;
  font-weight: 700;
  text-align: left;
}

.mobile-sub {
  display: none;
  background: #fff;
}

.mobile-sub.active {
  display: block;
}

.mobile-sub a {
  display: block;
  color: #111;
  padding: 13px 25px;
  border-bottom: 1px solid #eee;
  font-size: 17px;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .container {
    width: min(100%, 360px);
  }

  .site-header {
    position: sticky;
  }

  .header-inner {
    width: min(100%, 360px);
    min-height: 46px;
    grid-template-columns: 50px 1fr 70px;
    gap: 0;
    padding: 0 10px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
    background: transparent;
    border: 0;
    font-size: 30px;
    color: #333;
  }

  .logo {
    display: flex;
    justify-content: center;
  }

  .logo img {
    width: 125px;
  }

  .header-social a {
    font-size: 30px;
  }

  .hero-slider {
    width: min(100%, 360px);
    margin: 0 auto;
    height: auto;
    min-height: 400px;
  }

  .hero-slide {
    display: none;
    position: relative;
    opacity: 1;
    visibility: visible;
  }

  .hero-slide.active {
    display: block;
  }

  .hero-slide img {
    height: 150px;
  }

  .hero-content {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    max-width: 100%;
    border-radius: 0;
    padding: 28px 22px;
    background: #202020;
    text-align: center;
    opacity: 1;
  }

  .hero-slide.active .hero-content {
    animation: mobileTextIn .6s ease forwards;
  }

  @keyframes mobileTextIn {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: 27px;
    margin-bottom: 20px;
  }

  .hero-content p {
    font-size: 17px;
  }

  .slider-arrow {
    display: none;
  }

  .slider-dots {
    bottom: 13px;
  }

  .services-section {
    padding: 25px 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 20px;
  }

  .service-card img {
    height: 95px;
    border-radius: 6px;
  }

  .service-card h3 {
    font-size: 18px;
    line-height: 1.2;
  }

  .about-dark {
    width: min(100%, 360px);
    margin: 0 auto;
    padding: 35px 48px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .about-logo img {
    width: 230px;
  }

  .about-text h2 {
    font-size: 28px;
  }

  .about-text p,
  .about-text li {
    font-size: 18px;
  }

  .content-section {
    width: min(100%, 360px);
    margin: 0 auto;
    padding: 42px 58px;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .content-text h2 {
    font-size: 25px;
  }

  .content-text p {
    font-size: 18px;
  }

  .menu-list span {
    font-size: 17px;
  }

  .content-image img {
    height: 155px;
  }

  .footer-top {
    width: min(100%, 360px);
    margin: 0 auto;
    padding: 28px 20px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 30px;
  }

  .footer-col a {
    font-size: 16px;
  }

  .footer-contact {
    width: min(100%, 360px);
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-logo img {
    margin: 0 auto;
  }

  .contact-info {
    border-left: 0;
    border-top: 1px solid #ddd;
    padding-left: 30px;
    padding-top: 18px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    width: min(100%, 360px);
    margin: 0 auto;
    font-size: 13px;
  }

  .fixed-buttons {
    right: calc((100vw - min(100%, 360px)) / 2 + 8px);
    bottom: 25px;
  }

  .fixed-buttons a {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 1024px) {
  .header-inner {
    height: 70px !important;
    min-height: 70px !important;
    max-height: 70px !important;
    align-items: center !important;
    overflow: hidden;
  }

  .logo img {
    width: 165px !important;
    max-height: 130px !important;
    object-fit: contain !important;
  }

  .mobile-menu-btn {
    font-size: 26px !important;
  }

  .header-social a {
    font-size: 26px !important;
  }
}

@media (min-width: 1025px) {
  .header-inner {
    height: 90px !important;
    min-height: 90px !important;
  }

  .desktop-nav > ul > li > a {
    height: 90px !important;
    padding: 0 18px !important;
    display: flex !important;
    align-items: center !important;
  }

  .logo img {
    width: 150px !important;
    max-height: 75px !important;
    object-fit: contain !important;
  }
}

/* HİZMET KARTLARI */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 40px 0;
}

.service-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.35s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.16);
}

.service-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.4s ease;
}

.service-card:hover img {
  transform: scale(1.06);
}

.service-content {
  padding: 22px;
  text-align: center;
}

.service-content h3 {
  font-size: 28px;
  color: #111;
  margin-bottom: 12px;
  font-weight: 700;
}

.service-content p {
  color: #666;
  line-height: 1.7;
  font-size: 16px;
}

/* MOBİL */

@media (max-width: 768px) {

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 25px 14px;
  }

  .service-card img {
    height: 220px;
  }

  .service-content h3 {
    font-size: 22px;
  }

}

/* SLIDER PREMIUM YAZI KUTUSU */
.hero-content {
  background: rgba(231, 83, 13, 0.82) !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.25);
}

.hero-content h1,
.hero-content h2 {
  text-shadow: 0 3px 12px rgba(0,0,0,0.25);
}

/* SABİT BUTON ANİMASYONU */
.fixed-buttons a {
  animation: softPulse 2.2s infinite;
}

@keyframes softPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* DESKTOP DROPDOWN DÜZELTME */
@media (min-width: 1025px) {
  .desktop-nav .dropdown {
    width: 330px !important;
    display: block !important;
    background: #fff !important;
    border: 1px solid #ddd !important;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    padding: 0 !important;
  }

  .desktop-nav .dropdown li {
    display: block !important;
    width: 100% !important;
  }

  .desktop-nav .dropdown li a {
    display: block !important;
    width: 100% !important;
    padding: 13px 16px !important;
    font-size: 15px !important;
    line-height: 1.35 !important;
    text-align: left !important;
    white-space: normal !important;
    border-bottom: 1px solid #eee !important;
    background: #fff !important;
    color: #111 !important;
  }

  .desktop-nav .dropdown li a:hover {
    background: #f7f7f7 !important;
    color: #e95b13 !important;
  }
}

/* MOBİL HİZMET KARTLARI 2 KOLON */
@media (max-width: 768px) {

  .services-section {
    padding: 22px 0 !important;
  }

  .services-section .container.services-grid {
    width: min(100%, 360px) !important;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 22px 18px !important;
    padding: 18px 10px !important;
  }

  .service-card {
    box-shadow: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    overflow: visible !important;
  }

  .service-card img {
    width: 100% !important;
    height: 96px !important;
    object-fit: cover !important;
    border-radius: 7px !important;
  }

  .service-card h3 {
    font-size: 18px !important;
    line-height: 1.18 !important;
    padding: 9px 2px 0 !important;
    margin: 0 !important;
    color: #111 !important;
    text-align: center !important;
  }

  .service-card:hover {
    transform: none !important;
    box-shadow: none !important;
  }

  .service-card:hover img {
    transform: none !important;
  }
}

/* MOBİL SLIDER 1. GÖRSELDEKİ GİBİ */
@media (max-width: 768px) {

  .hero-slider {
    width: min(100%, 360px) !important;
    height: auto !important;
    min-height: 0 !important;
    background: #202020 !important;
  }

  .hero-slide {
    position: relative !important;
    display: none !important;
  }

  .hero-slide.active {
    display: block !important;
  }

  .hero-slide img {
    width: 100% !important;
    height: 135px !important;
    object-fit: cover !important;
    transform: none !important;
    animation: none !important;
  }

  .hero-content {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    max-width: 100% !important;
    width: 100% !important;
    border-radius: 0 !important;
    background: #202020 !important;
    box-shadow: none !important;
    padding: 28px 28px 42px !important;
    text-align: center !important;
    opacity: 1 !important;
    animation: none !important;
  }

  .hero-slide.active .hero-content {
    animation: mobileTextIn .6s ease forwards !important;
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: 27px !important;
    line-height: 1.25 !important;
    margin: 0 0 18px !important;
    color: #fff !important;
  }

  .hero-content p {
    font-size: 16px !important;
    color: #fff !important;
    margin: 0 !important;
  }

  .slider-dots {
    bottom: 14px !important;
  }

  .slider-dots button {
    width: 8px !important;
    height: 8px !important;
  }
}

/* HİZMET DETAY SAYFASI */
.page-hero img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.service-detail {
  padding: 35px 0 55px;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 300px 1fr 250px;
  gap: 30px;
  align-items: start;
}

.service-sidebar {
  border-right: 1px solid #ddd;
  padding-right: 15px;
}

.sidebar-title {
  font-weight: 700;
  margin-bottom: 10px;
}

.service-sidebar a {
  display: block;
  padding: 11px 15px;
  font-size: 16px;
}

.service-sidebar a.active,
.service-sidebar a:hover {
  background: #fff0cc;
}

.service-content-detail h1 {
  font-size: 32px;
  margin-bottom: 18px;
}

.service-content-detail h2 {
  font-size: 27px;
  color: #d71912;
  margin: 25px 0 12px;
}

.service-content-detail p {
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 18px;
}

.detail-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  margin-bottom: 22px;
}

.service-contact-box {
  background: #f7f7f7;
  border-radius: 10px;
  padding: 25px 20px;
  display: grid;
  gap: 25px;
}

.service-contact-box a {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
}

.service-contact-box i {
  font-size: 34px;
}

/* MOBİL HİZMET DETAY */
@media (max-width: 768px) {
  .page-hero img {
    height: 78px !important;
  }

  .service-detail {
    width: min(100%, 360px);
    margin: 0 auto;
    padding: 20px 18px 35px;
  }

  .service-detail-grid {
    display: block !important;
  }

  .service-sidebar {
    border-right: 0;
    padding-right: 0;
    margin-bottom: 28px;
  }

  .sidebar-title {
    background: #eee;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 20px;
  }

  .service-sidebar a {
    display: none;
  }

  .service-content-detail h1 {
    font-size: 25px;
    line-height: 1.25;
  }

  .service-content-detail h2 {
    font-size: 25px;
  }

  .service-content-detail p {
    font-size: 19px;
    line-height: 1.35;
  }

  .detail-image {
    height: 205px;
  }

  .service-contact-box {
    margin-top: 30px;
  }
}

.service-list {
  margin: 25px 0;
  padding-left: 22px;
}

.service-list li {
  margin-bottom: 14px;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 600;
}

@media (max-width: 768px) {

  .service-list li {
    font-size: 17px;
    margin-bottom: 10px;
  }

}

