@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #f4f7f6;
    color: #333;
}


/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('banner1.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.btn-primary {
    display: inline-block;
    padding: 15px 30px;
    background: #f39c12;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: transform 0.3s;
}

.btn-primary:hover {
    transform: scale(1.1);
}

/* Services */
.services {
    padding: 100px 20px;
    text-align: center;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card:hover i {
    color: #f39c12;
}


.service-card i {
    font-size: 50px;
    color: #0056b3;
    margin-bottom: 20px;
}

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2000;
}

.whatsapp-btn, .call-btn {
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.whatsapp-btn { background: #25d366; }
.call-btn { background: #0056b3; }

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-btn, .call-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
}

/* Layout Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hakkımızda Premium Stil */
.about-premium {
    padding: 100px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img-box {
    position: relative;
}

.main-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 0px #0056b3;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #f39c12;
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.experience-badge span { font-size: 2.5rem; font-weight: bold; display: block; }

.sub-title { color: #0056b3; font-weight: bold; text-transform: uppercase; letter-spacing: 2px; }

.about-content h2 { font-size: 2.5rem; margin: 15px 0; color: #2c3e50; }

.features-list { margin-top: 30px; }

.feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-item i {
    font-size: 24px;
    color: #f39c12;
    background: #fff8ee;
    padding: 15px;
    border-radius: 12px;
}

/* İletişim Premium Stil */
.contact-premium {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-header { text-align: center; margin-bottom: 50px; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.contact-form-card { padding: 30px; }

.input-group { margin-bottom: 20px; }

.input-group input, .input-group select, .input-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    outline: none;
    transition: 0.3s;
}

.input-group input:focus { border-color: #0056b3; }

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #0056b3;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.submit-btn:hover { background: #004494; }

.map-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    min-height: 400px;
}

.map-card iframe { width: 100%; height: 100%; }

.contact-details-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    gap: 15px;
}

.detail-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px;
    border-radius: 10px;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .about-img-box { margin-bottom: 40px; }
    .contact-details-overlay { flex-direction: column; }
}

/* Petek Temizliği Bilgi Alanı */
.petek-info {
    padding: 100px 0;
    background: #f4f7f6;
}

.petek-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.petek-text h3 {
    margin-top: 25px;
    color: #0056b3;
}

.petek-text ul {
    margin: 15px 0 20px 20px;
}

.petek-text ul li {
    margin-bottom: 10px;
    list-style: disc;
}

.petek-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 992px) {
    .petek-grid {
        grid-template-columns: 1fr;
    }
}

.kampanya-fiyat {
    color: #f39c12;
    font-weight: 700;
    background: rgba(243, 156, 18, 0.15);
    padding: 5px 15px;
    border-radius: 10px;
    display: inline-block;
}

.kampanya-fiyat {
    color: #f39c12;
    font-weight: 700;
    background-color: rgba(243, 156, 18, 0.18);
    padding: 6px 16px;
    border-radius: 12px;
    display: inline-block;
    margin-left: 6px;
    box-shadow: 0 4px 10px rgba(243, 156, 18, 0.35);
}

/* MOBİL MENÜ */
@media (max-width: 768px) {

    .burger {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: center;
        display: none;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .nav-links li {
        padding: 15px 0;
    }

    .nav-links.nav-active {
        display: flex;
    }
}

/* HERO BADGES */
.hero-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    font-size: 14px;
}

.hero-badges span {
    background: rgba(255,255,255,0.2);
    padding: 6px 14px;
    border-radius: 20px;
    color: #fff;
}

/* PETEK NOTE */
.petek-note {
    margin-top: 15px;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
}

/* MOBİL DÜZEN */
@media (max-width: 768px) {

    .hero {
        height: 85vh;
        padding: 40px 15px;
    }

    .nav-links {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        display: none;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .nav-links li {
        text-align: center;
        padding: 15px 0;
    }

    .whatsapp-btn,
    .call-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
}
.service-link {
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
    color: #f39c12;
    text-decoration: none;
}

.service-link:hover {
    text-decoration: underline;
}

/* BURGER (varsayılan gizli) */
.burger {
    display: none;
    cursor: pointer;
}

/* LOGO TASARIMI */
.logo {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #0056b3; /* Lacivert */
}

.logo span {
    color: #f39c12; /* Turuncu */
    margin-left: 4px;
}

/* Logo hover (isteğe bağlı) */
.logo:hover {
    opacity: 0.9;
}


/* MOBİLDE LOGO KÜÇÜLSÜN */
@media (max-width: 768px) {
    .logo img {
        height: 120px;   /* İstersen 80px-150px arası oynayabilirsin */
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 90px;
    }
}

/* 📱 MOBİL İÇİN LOGO BOYUTU */
@media (max-width: 768px) {
    .logo img {
        height: 120px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 100px; /* Küçük ekranlarda daha iyi durması için optimize edildi */
    }
}

/* === NAVBAR (FINAL) === */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
    transition: 0.3s;
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    height: 80px;
    padding: 0 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    margin-right: 60px;
}

.logo img {
    height: 70px;
    width: auto;
}

/* MENU */
.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-links a {
    text-decoration: none;
    font-weight: 600;
    color: #2c3e50;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #f39c12;
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* BURGER */
.burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.burger span {
    width: 24px;
    height: 3px;
    background: #333;
}

/* MOBILE */
@media (max-width: 768px) {

    .logo {
        margin-right: 0;
    }

    .burger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: center;
        display: none;
        padding: 20px 0;
        gap: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .logo img {
        height: 60px;
    }
}
/* HERO BANNER FULL WIDTH */
.hero {
    width: 100%;
    min-height: 100vh;
    background-image: url("banner1.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    position: relative;
}

/* Koyu overlay (yazılar net görünsün diye) */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* İçerik üste çıksın */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .hero {
        min-height: 85vh;
        background-position: center top;
    }

    .hero-content h1 {
        font-size: 28px;
    }
}

/* WhatsApp Buton Genel */
.whatsapp-btn {
    font-size: 18px;          /* Yazı büyür */
    padding: 14px 20px;       /* Buton büyür */
    border-radius: 50px;
}

/* WhatsApp İKONU */
.whatsapp-btn i {
    font-size: 26px;          /* WhatsApp logosu büyür */
    margin-right: 8px;
}
@media (max-width: 768px) {
    .whatsapp-btn {
        font-size: 15px;
        padding: 16px 22px;
    }

    .whatsapp-btn i {
        font-size: 20px; /* Mobilde WhatsApp logosu */
    }
}
/* LOGO BOYUTU */
.logo img {
    height: 230px;     /* BURAYI DEĞİŞTİREBİLİRSİN */
    width: auto;
}

/* LOGO HOVER EFEKTİ */
.logo img {
    transition: all 0.3s ease;
}

.logo img:hover {
    transform: scale(1.08);
}
.logo img {
    transition: all 0.3s ease;
}

.logo img:hover {
    transform: scale(1.08);
    filter: brightness(1.1);
}
.logo img {
    transition: all 0.3s ease;
}

.logo img:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 0 8px rgba(0, 120, 255, 0.6));
}
@media (max-width: 768px) {
    .logo img:hover {
        transform: none;
        filter: none;
    }
}
/* HEADER PREMIUM ANİMASYON */
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
    transition: all 0.4s ease;
    animation: headerFade 0.8s ease forwards;
}

/* Açılış animasyonu */
@keyframes headerFade {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.site-header.scrolled {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
.site-header .logo img {
    transition: all 0.4s ease;
}

.site-header.scrolled .logo img {
    transform: scale(0.9);
}
/* HEADER (NAVBAR) PREMIUM ANİMASYON */
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
    transition: all 0.4s ease;
    animation: headerFade 0.8s ease forwards;
}

/* Sayfa açılış animasyonu */
@keyframes headerFade {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.site-header.scrolled {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
.site-header .logo img {
    transition: all 0.4s ease;
}

.site-header.scrolled .logo img {
    transform: scale(0.9);
}
@media (max-width: 768px) {
    .site-header {
        animation: none;
    }
}
.whatsapp-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
/* === FOOTER PREMIUM === */
.footer-premium {
    background: #0f172a;
    color: #fff;
    padding: 70px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.footer-logo {
    width: 180px;
    margin-bottom: 15px;
}

.footer-col h4 {
    margin-bottom: 15px;
    color: #f39c12;
}

.footer-col p,
.footer-col a {
    color: #cbd5e1;
    font-size: 15px;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.footer-col a:hover {
    color: #fff;
}

.footer-whatsapp {
    background: #25d366;
    padding: 14px 20px;
    border-radius: 40px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.footer-whatsapp:hover {
    transform: scale(1.05);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: #94a3b8;
}
.mobile-contact-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #0f172a;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 12px 0;
  z-index: 9999;
}

/* === DESKTOP GÖRÜNÜM === */
@media (min-width: 769px) {
  .mobile-contact-bar {
    position: relative;   /* fixed değil */
    bottom: auto;
    margin-top: 60px;
    border-radius: 12px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
}@media (min-width: 769px) {
  .mobile-contact-bar a {
    font-size: 16px;
    padding: 14px 28px;
    border-radius: 30px;
    background: #25d366;
    color: #fff;
    font-weight: 700;
  }
}
.contact-info-card {
    background: linear-gradient(135deg, #ffffff, #f6f9ff);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: #1f3c88;
    margin-bottom: 10px;
}

.info-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.info-item i {
    font-size: 24px;
    color: #ff9800;
    margin-top: 4px;
}

.info-item strong {
    display: block;
    font-size: 15px;
    color: #555;
    margin-bottom: 4px;
}

.info-item p,
.info-item a {
    font-size: 17px;
    font-weight: 600;
    color: #111;
    text-decoration: none;
}

.info-item a:hover {
    color: #1f3c88;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: stretch;
}
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
.contact-info-card {
    background: linear-gradient(145deg, #ffffff, #f4f6fa);
    border-radius: 22px;
    padding: 40px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}
.contact-info-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("logo.png");
    background-repeat: no-repeat;
    background-position: right -40px bottom -40px;
    background-size: 300px;
    opacity: 0.04;
    filter: grayscale(100%);
    pointer-events: none;
}
.map-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    min-height: 420px;

    background: #0f2a44;
    border: 4px solid #0f2a44;

    box-shadow:
        0 25px 60px rgba(15, 42, 68, 0.45),
        inset 0 0 0 1px rgba(255,255,255,0.08);
}
.map-card iframe {
    width: 100%;
    height: 100%;
    border-radius: 16px;
}
.contact-info-card {
  position: relative;
  background: linear-gradient(135deg, #0b2d4f, #123e68);
  color: #ffffff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  overflow: hidden;
}

.contact-info-card h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #f39c12;
  letter-spacing: 0.5px;
}

.contact-info-card p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.contact-info-card strong {
  color: #f39c12;
}
.watermark-logo {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 160px;
  opacity: 0.07;
  pointer-events: none;
}
.contact-info-card:hover {
  transform: translateY(-6px);
  transition: 0.3s ease;
}
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f2a44, #163a5f);
  display: flex;
  align-items: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("banner1.png") center/cover no-repeat;
  opacity: 0.25;
}

.hero-content {
  position: relative;
  max-width: 700px;
  margin-left: 8%;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(14px);
  padding: 60px;
  border-radius: 28px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.45);
  color: #fff;
}
.petek-image {
  position: relative;
}

.petek-image img {
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

.petek-badges {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.petek-badges span {
  background: rgba(15,42,68,0.9);
  color: #fff;
  padding: 8px 16px;
  border-radius: 16px;
  font-size: 14px;
}
.petek-image {
  position: relative;
}

.petek-image img {
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

.petek-badges {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.petek-badges span {
  background: rgba(15,42,68,0.9);
  color: #fff;
  padding: 8px 16px;
  border-radius: 16px;
  font-size: 14px;
}
.mobile-cta {
  display: none;
}

@media (max-width: 768px) {
  .mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #0f2a44;
    display: flex;
    justify-content: space-around;
    padding: 14px;
    z-index: 9999;
  }

  .mobile-cta a {
    background: #25d366;
    color: #fff;
    padding: 14px 26px;
    border-radius: 30px;
    font-weight: 700;
  }
}
.mobile-menu-btn {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #061e41;
  padding: 80px 20px;
  z-index: 999;
}

.mobile-menu a {
  display: block;
  color: #fff;
  font-size: 20px;
  padding: 15px 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu.active {
  display: block;
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
}
.contact-info-card {
    position: relative;
    overflow: hidden;
}
/* Mobil Menü */
.nav-links {
    display: flex;
    gap: 30px;
}

/* Mobil */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 20px;

        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-links.active {
        max-height: 500px;
    }

    .burger {
        display: flex;
    }
}
.footer-premium {
  background: linear-gradient(180deg, #0f2a44, #081a2c);
  color: #e6eef6;
  padding-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.footer-logo {
  max-width: 160px;
  margin-bottom: 15px;
}

.footer-premium h4 {
  margin-bottom: 15px;
  color: #fff;
}

.footer-premium ul {
  list-style: none;
  padding: 0;
}

.footer-premium ul li {
  margin-bottom: 10px;
}

.footer-premium a {
  color: #cfd9e3;
  text-decoration: none;
}

.footer-premium a:hover {
  color: #25d366;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: #aab7c4;
}
.legal-page {
  max-width: 900px;
  margin: 120px auto 60px;
  padding: 0 20px;
  font-family: Arial, sans-serif;
  line-height: 1.7;
}

.legal-page h1 {
  margin-bottom: 20px;
}

.legal-page h2 {
  margin-top: 30px;
  font-size: 20px;
}
.kvkk-onay {
  margin: 15px 0;
  font-size: 14px;
}

.kvkk-onay a {
  color: #1a73e8;
  text-decoration: underline;
}
.footer-premium {
  background: #0b2a4a;
  color: #fff;
  padding: 50px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-col h4 {
  margin-bottom: 12px;
  font-size: 18px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col a {
  color: #fff;
  text-decoration: none;
}

.footer-legal {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
}

.footer-legal a {
  color: #ccc;
  text-decoration: none;
  margin: 0 5px;
}

.footer-bottom {
  text-align: center;
  margin-top: 10px;
  font-size: 13px;
  color: #aaa;
}

/* MOBİL */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
