:root {
  --primary: #0d1b2a;
  --dark: #000;
  --light: #fff;
  --gray: #f5f5f5;
  --navy: #1d3557;
  --radius: 6px;
  --transition: 0.3s ease;
}

/* GLOBAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.6;
}

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

/* HEADER */
.site-header {
  background: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 1rem 2rem 1rem 0.1rem;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  gap: 2rem;
}

.logo {
  position: relative;
  height: 70px;
  display: flex;
  align-items: center;
}

.logo a {
  text-decoration: none;
  display: inline-block;
}

.logo::before {
  content: "";
  display: block;
}

.site-logo {
  position: absolute;
  left: -15px;
  top: -10px;
  height: 90px;
  width: auto;
}

.menu-toggle {
  display: none;
}

.nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  font-size: 1.05rem;
  transition: var(--transition);
}

.nav a:hover {
  color: var(--primary);
}

.nav a.active {
  color: var(--navy);
}

/* HERO */
.hero {
  position: relative;
  padding: 3.5rem 2rem calc((5rem + 100px) * 1.2);
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.08)),
              url("asset/anasayfabanner/unnamed (4) (1) (1).jpg");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: visible;
  filter: brightness(0.98);
  z-index: 1;
}
.hero::before,
.hero::after {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  max-width: 760px;
  margin: auto;
}

/* Hero Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero h2 {
  font-size: 2.4rem;
  color: #fff;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease-out;
}

.hero p {
  max-width: 520px;
  margin: 0 auto 2rem auto;
  font-size: 1.1rem;
  color: #fff;
  font-weight: 500;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-actions .btn-primary {
  animation: slideInLeft 0.8s ease-out 0.4s both;
}

.hero-actions .btn-outline {
  animation: slideInRight 0.8s ease-out 0.4s both;
}

/* HERO ABOUT */
.about-hero {
  padding: 4rem 2rem;
  background: white;
}

.about-hero-grid {
  display: flex;
  align-items: stretch;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-hero-text {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.about-hero-text h2 {
  align-self: flex-start;
  font-size: 2.4rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.about-hero-media {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 1.0rem;
}

.about-hero-media img {
  width: 100%;
  max-width: 520px;
  max-height: 395px;
  border-radius: var(--radius);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  object-fit: cover;
}

.about-hero-text p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.about-hero-cards {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
  width: 100%;
}

.about-pill {
  background: white;
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  padding: 0.65rem 0.9rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.about-pill.animate {
  opacity: 1;
  transform: translateY(0);
}

.about-pill:nth-child(1).animate {
  transition-delay: 0.2s;
}

.about-pill:nth-child(2).animate {
  transition-delay: 0.4s;
}

.about-pill:nth-child(3).animate {
  transition-delay: 0.6s;
}

.about-pill-title {
  display: block;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.about-pill-desc {
  display: block;
  font-size: 0.8rem;
  line-height: 1.4;
}

.about-hero-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
}

.about-hero-list li {
  padding-left: 1.5rem;
  position: relative;
  font-weight: 600;
}

.about-hero-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--navy);
}

.btn-primary {
  background: rgba(255, 255, 255, 0.3);
  color: #000;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius);
  border: 2px solid #000;
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.btn-primary:hover {
  background: #000;
  color: white;
}

.btn-outline {
  background: #000;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius);
  border: 2px solid #000;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.btn-outline:hover {
  background: #333;
  color: white;
}

.btn-secondary {
  background: white;
  color: var(--navy);
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid var(--navy);
}

.btn-secondary:hover {
  background: var(--navy);
  color: white;
}

.btn-secondary .phone-icon {
  font-size: 1.1em;
  color: var(--navy);
}

.about-hero-actions {
  margin-top: 1.5rem;
}

.btn-outline-dark {
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline-dark:hover {
  background: var(--navy);
  color: white;
}

/* CTA */
.cta {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 3rem 2rem;
}

.cta-inner {
  max-width: 1200px;
  margin: auto;
}

.cta-inner h2 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.cta-inner p {
  margin-bottom: 1.5rem;
}

/* FOOTER */
.site-footer {
  background: #111;
  color: #ddd;
  padding-top: 2rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
  padding: 0 2rem 2rem;
  gap: 2rem;
  text-align: center;
}

.footer-inner > div {
  flex: 1 1 220px;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a {
  display: block;
  color: #ddd;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-social-icons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1rem;
  align-items: center;
}

.footer-social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social-icons a:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.footer-social-icons svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  text-align: center;
  background: #000;
  padding: 1rem;
  font-size: 0.9rem;
}

/* FEATURES */
.features {
  padding: 2rem 2rem 4rem 2rem;
  margin-top: -4rem;
  position: relative;
  z-index: 2;
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.feature-card {
  background: var(--gray);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  border: 2px solid var(--primary);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out, box-shadow 0.1s ease-out, var(--transition);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
}

.feature-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:nth-child(1).animate {
  transition-delay: 0.1s;
}

.feature-card:nth-child(2).animate {
  transition-delay: 0.3s;
}

.feature-card:nth-child(3).animate {
  transition-delay: 0.5s;
}

.feature-card.animate:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.feature-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-content {
    max-width: 100%;
    padding: 0 1rem;
  }

  .about-hero-media {
    margin-top: 1.5rem;
  }
}

@media (max-width: 768px) {
  .site-header {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: sticky !important;
    z-index: 100 !important;
    background: white !important;
    padding: 1rem 0.5rem !important;
  }

  .site-header .container {
    display: block !important;
    visibility: visible !important;
  }

  .header-inner {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0.5rem !important;
    padding: 0.5rem 1rem !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
  }

  .logo {
    height: 60px !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 100 !important;
    width: auto !important;
    max-width: none !important;
    justify-content: flex-start !important;
    align-items: center !important;
    order: 1 !important;
    align-self: flex-start !important;
  }

  .logo a {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: auto !important;
    height: auto !important;
  }

  .site-logo {
    height: 70px !important;
    left: auto !important;
    right: auto !important;
    top: 0 !important;
    position: relative !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 100 !important;
    width: auto !important;
    max-width: 200px !important;
    margin: 0 !important;
  }

  .menu-toggle {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-around !important;
    width: 30px !important;
    height: 30px !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    padding: 0 !important;
    z-index: 1001 !important;
    position: relative !important;
    margin-left: auto !important;
    order: 2 !important;
    align-self: flex-start !important;
    margin-top: -2rem !important;
  }

  .menu-toggle span {
    width: 100% !important;
    height: 3px !important;
    background: var(--navy) !important;
    border-radius: 3px !important;
    transition: all 0.3s ease !important;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px) !important;
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0 !important;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px) !important;
  }

  .nav {
    display: none !important;
    position: fixed !important;
    top: 70px !important;
    right: -100% !important;
    width: 60% !important;
    max-width: 200px !important;
    height: calc(100vh - 70px) !important;
    background: white !important;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1) !important;
    transition: right 0.3s ease !important;
    z-index: 999 !important;
    padding: 1rem !important;
    overflow-y: auto !important;
  }

  .nav.active {
    display: block !important;
    right: 0 !important;
  }

  .nav ul {
    flex-direction: column !important;
    gap: 1.5rem !important;
    justify-content: flex-start !important;
    font-size: 1rem !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
  }

  .nav ul li {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .nav ul li a {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: inherit !important;
    text-decoration: none !important;
    padding: 0.25rem 0.5rem !important;
  }

  .hero {
    padding: 2rem 1rem;
    min-height: 470px;
    background-position: 30% 50%;
  }

  .hero-content {
    padding-top: 2rem;
    margin-top: 0;
  }

  .hero-text {
    margin-top: 0rem;
  }

  .hero h2 {
    font-size: 1.5rem;
    color: #000;
    position: relative;
    top: 0;
    margin-top: 0;
    margin-bottom: 1.5rem;
  }

  .hero p {
    font-size: 0.7rem;
    position: relative;
    top: 0;
    margin-bottom: 3rem;
    margin-top: -1rem;
    text-transform: uppercase;
  }

  .hero-actions {
    flex-direction: row;
    gap: 0.2rem;
    width: 100%;
    justify-content: center;
    flex-wrap: nowrap;
    position: relative;
    top: -2rem;
    margin-top: 4rem;
    margin-bottom: 1rem;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    flex: 1 1 auto;
    min-width: 0;
    padding: 0.5rem 0.3rem !important;
    font-size: 0.75rem !important;
    min-height: auto !important;
    margin-bottom: 1rem;
  }

  .features {
    padding: 2rem 1rem;
    margin-top: -4rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .feature-card {
    padding: 1rem !important;
  }
  
  .feature-card h3 {
    font-size: 0.9rem !important;
    margin-bottom: 0.4rem !important;
  }
  
  .feature-card p {
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
  }

  .about-hero {
    padding: 2rem 1rem;
  }

  .about-hero-grid {
    flex-direction: column !important;
    gap: 1.5rem;
  }

  .about-hero-text {
    order: 2;
    display: flex;
    flex-direction: column;
  }

  .about-hero-media {
    order: 1;
    margin-top: 0;
  }

  .about-hero-media img {
    max-width: 100%;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .about-hero-text h2 {
    font-size: 1.5rem !important;
    order: 0;
  }

  .about-hero-text p {
    font-size: 0.9rem;
    line-height: 1.6;
    order: 3;
    margin-top: 1rem;
  }

  .about-hero-cards {
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0;
    margin-bottom: 0;
    order: 2;
  }

  .about-pill {
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
  }

  .about-pill-title {
    font-size: 1rem;
  }

  .about-pill-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
  }

  .section-heading {
    padding: 1.5rem 1rem 0;
  }

  .section-heading .section-title {
    font-size: 1.5rem;
  }

  .about-hero .section-title {
    font-size: 1.8rem !important;
  }

  .about-content {
    padding: 2rem 1rem;
  }

  .about-grid {
    flex-direction: column !important;
    gap: 1.5rem;
  }

  .about-text,
  .about-image {
    flex: 1 1 100%;
  }

  .about-image {
    justify-content: center;
  }

  .about-image img {
    max-width: 100%;
    width: 100%;
    aspect-ratio: 4 / 3;
    max-height: none;
    object-fit: cover;
  }

  .about-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
  }

  .about-text p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
  }

  .about-values li {
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
    font-weight: 400;
  }

  .about-grid#hizmet-anlayisi {
    flex-direction: column !important;
  }

  .about-grid#degerlerimiz .about-image {
    justify-content: center;
  }

  .about-grid#vizyon-misyon .about-image {
    justify-content: center;
  }

  .contact-section {
    grid-template-columns: 1fr;
    padding: 0 1rem;
    margin: 3rem auto;
    gap: 2.5rem !important;
    min-height: auto !important;
    overflow: visible !important;
  }
  
  .contact-info {
    padding: 2rem 1.5rem !important;
    margin-bottom: 1rem !important;
    min-height: auto !important;
    overflow: visible !important;
  }

  .whatsapp-widget {
    right: 1rem;
    bottom: 1rem;
  }

  .whatsapp-float img {
    width: 36px;
    height: 36px;
  }

  .whatsapp-caption {
    font-size: 0.75rem;
  }

  .cta {
    padding: 2rem 1rem;
  }

  .cta-inner {
    padding: 1.5rem 1rem;
  }

  .cta-inner h2 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
  }

  .cta-inner p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  .btn-secondary {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
}

/* ABOUT CONTENT */
.about-content {
  padding: 4rem 2rem;
}

.about-content .container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.about-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.about-text {
  flex: 1 1 45%;
}

.about-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 520px;
  max-height: 340px;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  object-fit: cover;
}

.about-grid#hizmet-anlayisi {
  flex-direction: row-reverse;
}

#hakkimizda .about-hero-grid {
  flex-direction: row;
}

.section-heading {
  text-align: center;
  padding: 2rem 1rem 0;
}

.section-heading .section-title {
  font-size: 2rem;
  color: var(--navy);
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.whatsapp-float {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.whatsapp-float img,
.whatsapp-float svg {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover img,
.whatsapp-float:hover svg {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-widget {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 20;
  text-align: center;
  background: transparent;
}

.about-text h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.about-values li {
  margin-bottom: 0.8rem;
  font-size: 1rem;
  font-weight: 600;
  opacity: 0;
  transform: translateX(-50px) scale(0.9);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.about-values li.animate {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.about-values li:nth-child(1).animate {
  transition-delay: 0.1s;
}

.about-values li:nth-child(2).animate {
  transition-delay: 0.2s;
}

.about-values li:nth-child(3).animate {
  transition-delay: 0.3s;
}

.about-values li:nth-child(4).animate {
  transition-delay: 0.4s;
}

.about-values li:nth-child(5).animate {
  transition-delay: 0.5s;
}

.about-values li:nth-child(6).animate {
  transition-delay: 0.6s;
}

.about-hero .section-title {
  text-align: center;
  font-size: 2.4rem;
  color: var(--navy);
  margin-bottom: 2rem;
  display: block;
}

.whatsapp-caption {
  background: white;
  color: var(--navy);
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.about-grid#degerlerimiz .about-image {
  justify-content: flex-start;
}

.about-grid#vizyon-misyon .about-image {
  justify-content: flex-start;
}

@media (max-width: 768px) {
  /* Body ve HTML overflow kontrolü */
  body, html {
    overflow-x: hidden !important;
  }
  
  /* Hizmetler sayfası banner'ı mobilde gizle */
  .services-hero {
    background-image: none !important;
    background: #e8e8e8 !important;
    padding: 2rem 1rem !important;
  }

  .site-footer {
    padding: 1.5rem 0 0 0 !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: visible !important;
    min-height: auto !important;
    height: auto !important;
    max-height: none !important;
    position: relative !important;
  }

  /* Footer'dan sonraki gizli içerikleri gizle */
  .site-footer::after,
  .site-footer::before {
    display: none !important;
    content: none !important;
  }

  /* Footer dışındaki tekrar eden içerikleri gizle */
  body > footer:not(.site-footer),
  body > .footer-inner:not(.site-footer .footer-inner),
  body > .footer-links:not(.site-footer .footer-links),
  body > .footer-bottom:not(.site-footer .footer-bottom) {
    display: none !important;
  }

  .footer-inner {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 1.5rem !important;
    padding: 0 1rem 0 1rem !important;
    max-width: 100% !important;
    margin: 0 !important;
    display: flex !important;
    overflow: visible !important;
    min-height: auto !important;
    height: auto !important;
    max-height: none !important;
  }
  
  .footer-inner > div.footer-links {
    order: 2 !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  
  .footer-inner > div:last-child {
    order: 3 !important;
  }
  
  .footer-inner > div:first-child {
    padding-top: 0 !important;
    padding-bottom: 2.5rem !important;
  }

  .footer-inner > div {
    width: 100% !important;
    padding: 4.5rem 0 !important;
    flex: 0 0 auto !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible !important;
    min-height: auto !important;
    height: auto !important;
    max-height: none !important;
    clip: auto !important;
  }
  
  .footer-inner > div:last-child {
    padding: 0.5rem 0 0 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  /* Footer links için özel kurallar */
  .footer-inner > div.footer-links,
  div.footer-links,
  .footer-links {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    width: 100% !important;
    margin: -0.5rem 0 0 0 !important;
    padding: 0.3rem 0 0.5rem 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 1 !important;
    overflow: visible !important;
    min-height: auto !important;
    height: auto !important;
  }

  .footer-inner > div.footer-links a,
  div.footer-links a,
  .footer-links a {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
    text-align: center !important;
    color: #ddd !important;
    text-decoration: none !important;
    padding: 0.3rem 0.6rem !important;
    display: inline-block !important;
    width: auto !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 1 !important;
    overflow: visible !important;
  }

  /* Footer içindeki tüm div'lerin görünür olduğundan emin ol */
  .footer-inner > div:last-child {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible !important;
    padding: 0.5rem 0 0 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .footer-inner h3 {
    margin: 0.2rem 0 !important;
    font-size: 0.9rem !important;
    line-height: 1.3 !important;
  }

  .footer-inner p {
    margin: 0.1rem 0 !important;
    font-size: 0.75rem !important;
    line-height: 1.4 !important;
  }

  .footer-social-icons {
    gap: 0.4rem !important;
    justify-content: center !important;
    margin: 0.5rem 0 !important;
    display: flex !important;
  }

  .footer-social-icons a {
    width: 36px !important;
    height: 36px !important;
  }

  .footer-social-icons svg {
    width: 18px !important;
    height: 18px !important;
  }

  .footer-bottom {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 0.5rem 1rem 0.5rem 1rem !important;
    font-size: 0.8rem !important;
    visibility: visible !important;
    opacity: 1 !important;
    box-sizing: border-box !important;
    background: #000 !important;
    color: #ddd !important;
    order: 999 !important;
    flex-shrink: 0 !important;
    min-height: auto !important;
    height: auto !important;
  }

  /* Hero section mobil düzeltmeleri */
  .hero h2 {
    font-size: 1.5rem !important;
    color: #000 !important;
    position: relative !important;
    top: -3rem !important;
    margin-top: 0 !important;
    margin-bottom: 1rem !important;
  }

  .hero p {
    font-size: 0.8rem !important;
    position: relative !important;
    top: 0 !important;
    margin-bottom: 4rem !important;
    margin-top: -1rem !important;
    text-transform: uppercase !important;
  }
}
