/* dropdown.html dosyasındaki tüm CSS kodları buraya taşındı */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f8f9fa;
}

.navbar {
    background-color: #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    height: 200px;
}

.navbar .logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar .logo img {
    height: 100px;
    width: auto;
}

.navbar .logo-text {
    font-size: 24px;
    color: rgba(68, 68, 68, 0.7);
    font-weight: 500;
    display: flex;
    flex-direction: column;
}

.navbar .logo-text-small {
    font-size: 24px;
    color: rgba(68, 68, 68, 0.6);
    font-weight: 500;
    margin-top: 5px;
    text-decoration: none;
}

.navbar .nav-items {
    display: flex;
    gap: 40px;
    align-items: center;
}

.navbar .nav-items a {
    text-decoration: none;
    color: #444;
    font-size: 24px;
    font-weight: bold;
    padding: 15px 25px;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 8px;
}

.navbar .nav-items a:hover {
    background-color: #444;
    color: #e5e5e5;
    border-radius: 8px;
}

@media (max-width: 700px) {
    .navbar {
        flex-direction: column;
        align-items: center;
    }

    .navbar .nav-items {
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
        width: 100%;
        text-align: center;
    }

    .navbar .nav-items a {
        display: block;
        padding: 10px;
    }
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown > a {
    text-decoration: none;
    color: #444;
    font-size: 24px;
    font-weight: bold;
    padding: 15px 25px;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 8px;
    display: inline-block;
    line-height: normal;
}

.dropdown > a:hover {
    background-color: #444;
    color: #e5e5e5;
    border-radius: 8px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #444;
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 8px;
    overflow: hidden;
    top: 100%;
    left: 0;
}

.dropdown-content a {
    color: white !important;
    padding: 15px 25px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    font-size: 20px;
}

.dropdown-content a:hover {
    background-color: white !important;
    color: #444 !important;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* About Section Styles */
.about-section {
    width: 100%;
    background-color: #f8f9fa;
    padding: 40px 0;
    text-align: center;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    min-height: 400px;
}

.about-text {
    text-align: left;
    padding: 20px;
    background-color: #f8f9fa;
}

.about-text h2 {
    color: #333;
    font-size: 28px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e5e5;
    text-align: center;
}

.about-text p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 15px;
}

.read-more {
    color: #007bff;
    cursor: pointer;
    font-weight: bold;
    text-decoration: underline;
}

.about-text.full-text {
    display: none;
}

.about-text.full-text.show {
    display: block;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.feature-list li {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list li::before {
    content: "✔";
    color: #4CAF50;
    font-weight: bold;
}

.about-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.about-section:first-of-type .about-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    max-height: 500px;
    object-fit: cover;
}

.about-section:first-of-type .about-image img {
    max-height: 600px !important;
    transform: scale(0.8) !important;
    margin-left: 50px !important;
}

.about-section:nth-child(3) .about-image img {
    max-height: 800px !important;
    transform: scale(1.2) !important;
}

.about-section:nth-child(3) {
    margin-bottom: 200px !important;
    margin-top: 60px !important;
}

img[src*="Baca3.jpg"] {
    max-height: 800px !important;
    transform: scale(1.3) !important;
    margin-left: 250px !important;
}

.about-section:nth-child(3) .about-image img {
    max-height: 600px !important;
    transform: scale(0.9) !important;
    margin-left: 50px !important;
}

.about-section-duplicate {
    width: 100%;
    background-color: #f8f9fa;
    padding: 60px 0;
    text-align: center;
    margin-top: 40px;
}

.about-section-duplicate .about-image img {
    max-height: 600px;
}

/* Footer Styles */
.footer {
    background-color: #000000c0;
    color: #fff;
    padding: 40px 0 20px;
    margin-top: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    margin-right: 250px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 20px;
    gap: 40px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    height: 120px;
    width: auto;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #444;
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 20px 20px 0;
}

.footer-bottom p {
    color: #ccc;
    margin: 5px 0;
    flex: 1;
    text-align: center;
}

.footer-bottom p.altay {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer-bottom img {
    height: 20px;
    width: auto;
}

.footer-bottom p.altay img {
    height: 20px;
    width: auto;
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 30px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        position: static;
    }
}

/* Flanşlı Baca Sayfası Stilleri */
.flansli-baca-main {
    background-color: #f8f9fa;
    min-height: 100vh;
}

.hero-banner {
    background: #dee2e6;
    color: #333;
    padding: 40px 0;
    text-align: center;
    display: flex;
    align-items: center;
    min-height: 35vh;
}

.hero-text {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    font-weight: 700;
    color: #333;
    text-align: center;
}

.hero-image {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.badge {
    background-color: #ffd700;
    color: #333;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #555;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
    color: #666;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
}

.hero-visual {
    max-width: 500px;
    margin: 0 auto;
}

.image-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 75%;
    border-radius: 15px;
    overflow: hidden;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    z-index: 1;
}

.image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.main-content {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-section {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.benefits-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    border: 1px solid #e0e0e0;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Yeni float layout için stiller */


.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.details-section {
    text-align: center;
}

.detail-content {
    max-width: 900px;
    margin: 0 auto;
}

detail-content h3 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.spec-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #666;
    text-align: left;
}

.spec-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.spec-item strong {
    color: #666;
    font-weight: 600;
}

@media (max-width: 900px) {
    .content-section {
        flex-direction: column;
        gap: 20px;
        padding: 20px 0;
    }
    .content-text, .content-image {
        width: 100%;
        height: auto;
        margin: 0;
    }
    .content-image {
        height: 220px;
    }
}

.info-section {
    background: white;
    padding: 60px 20px;
    text-align: center;
}

.info-content {
    max-width: 1000px;
    margin: 0 auto;
}

.info-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.info-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.read-more-btn {
    background: none;
    color: #007bff;
    border: none;
    padding: 0;
    cursor: pointer;
    margin-left: 5px;
    font-size: 14px;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.read-more-btn:hover {
    color: #0056b3;
}

.more-content {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.full-info {
    display: none;
    margin-top: 20px;
}

.full-info.show {
    display: block;
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .hero-text,
    .hero-image,
    .main-content {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .benefits-section {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .benefit-icon {
        font-size: 2.5rem;
    }
    
    .benefit-card h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        height: auto;
        padding: 20px;
    }
    
    .navbar .logo {
        margin-bottom: 20px;
    }
    
    .navbar .logo img {
        height: 80px;
    }
    
    .navbar .logo-text {
        font-size: 20px;
    }
    
    .navbar .logo-text-small {
        font-size: 18px;
    }
    
    .navbar .nav-items {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .navbar .nav-items a {
        font-size: 18px;
        padding: 12px 20px;
        width: 100%;
        text-align: center;
    }
    
    .dropdown-content {
        position: static;
        background-color: #444;
        box-shadow: none;
        display: none;
        width: 100%;
        margin-top: 10px;
    }
    
    .dropdown:hover .dropdown-content {
        display: block;
    }
    
    .hero-banner {
        min-height: 25vh;
        padding: 30px 0;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .hero-image img {
        height: 250px;
    }
    
    .main-content {
        padding: 40px 20px;
    }
    
    .intro-section {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .benefits-section {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .benefit-card {
        padding: 25px 20px;
    }
    
    .benefit-icon {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .benefit-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .benefit-card p {
        font-size: 0.9rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        margin-right: 0;
        padding: 0 20px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .navbar .logo-text {
        font-size: 18px;
    }
    
    .navbar .logo-text-small {
        font-size: 16px;
    }
    
    .navbar .nav-items a {
        font-size: 16px;
        padding: 10px 15px;
    }
    
    .hero-banner {
        min-height: 20vh;
        padding: 20px 0;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .hero-text p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .hero-stats {
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .hero-image img {
        height: 200px;
    }
    .content-section{
        align-items: center;
        position: relative;
        margin-left: 100px;
    }
    .main-content {
        padding: 30px 15px;
    }
    
    .intro-section {
        margin-bottom: 30px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    .benefit-card {
        padding: 20px 15px;
    }
    
    .benefit-icon {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .benefit-card h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .benefit-card p {
        font-size: 0.8rem;
    }
}

.slide {
  padding: 60px 0;
  overflow: hidden;
  position: relative;
  max-width: 1200px;
  margin: 0 auto; /* Ortalamak için */
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: auto;
}


.slide-header{
    text-align: center;
    position: relative;
    margin-bottom: 50px;
    font-size: 30pt;
}

.slide-container {
    display: flex;
    width: max-content;
}

.slide-item {
    background: white;
    border-radius: 15px;
    padding: 16px;
    margin: 0 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-width: 180px;
    min-height: 110px;
    max-width: 180px;
    max-height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px solid #e5e5e5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slide-item h3 {
    
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.slide-item p {
    
    font-size: 0.9rem;
    margin: 0;
}

.slide-item img {
    max-width: 90%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    padding: 4px;
}
/* Responsive Slide CSS */

@media (max-width: 1200px) {
  .slide {
    margin: 0 100px;
    padding: 40px 0;
  }
}

@media (max-width: 992px) {
  .slide {
    margin: 0 50px;
  }

  .slide-item {
    min-width: 160px;
    max-width: 160px;
  }
}

@media (max-width: 768px) {
  .slide {
    margin: 0 20px;
    padding: 30px 0;
  }

  .slide-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .slide-item {
    margin: 10px;
    min-width: 140px;
    max-width: 140px;
    max-height: none;
    min-height: auto;
    flex: 0 0 calc(50% - 20px); /* 2 item per row */
  }
}

@media (max-width: 480px) {
  .slide-item {
    flex: 0 0 100%; /* full width item on small phones */
    max-width: 100%;
    margin: 10px 0;
  }

  .slide-header {
    font-size: 22pt;
  }
}
.slide-container {
    display: flex;
    flex-wrap: nowrap; /* ALT ALTA GEÇMESİN */
    overflow-x: auto;  /* YANA KAYDIR */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin; /* Firefox için ince scrollbar */
    gap: 16px;
}

.slide-container::-webkit-scrollbar {
    height: 6px;
}

.slide-container::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

/* Mobilde slide'ı kenardan kırpma */
@media (max-width: 768px) {
  .slide {
    margin: 0 10px;
    padding: 20px 0;
  }

  .slide-item {
    min-width: 120px;
    max-width: 120px;
    flex: 0 0 auto;
  }
}

.gallery-container h1 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.gallery-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.gallery-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    font-size: 2.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Masaüstü: 4 sütun */
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-item {
    border-radius: 10px;
    overflow: visible;
    /* taşmaya izin ver */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 1s ease;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.gallery-item img:hover {
    transform: scale(1.5);
    z-index: 999;
    /* en üste al */
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: visible;
    /* Taşmaya izin ver */
    position: relative;
    z-index: 1;
}

.gallery-item {
    border-radius: 10px;
    overflow: visible;
    /* Taşmaya izin ver */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, z-index 0s ease 0.3s;
    /* z-index transition gecikmeli */
}

.gallery-item:hover {
    z-index: 1000;
    /* Üstte tut */
    transition-delay: 0s;
    /* anında z-index değiş */
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    cursor: pointer;
    position: relative;
    z-index: 1;
    border-radius: 10px;
}

.gallery-item img:hover {
    transform: scale(2);
    z-index: 9999;
    /* En üstte */
    position: relative;
}

/* ✅ Responsive ayarlar */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Tablet: 2 sütun */
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        /* Mobil: 1 sütun */
    }

    .gallery-item img:hover {
        transform: scale(1);
    }

    .gallery-item img {
        transition: none;
    }

    .gallery-section h2 {
        font-size: 2rem;
    }

    .gallery-item img {
        height: 180px;
    }
}

/* Sadece başlık ve metinleri ortalamak için güncel stiller */
.content-section {
    text-align: center;
}
.content-text {
    text-align: center;
    margin: 0 auto;
}
.slide-header {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}
.gallery-section > h2 {
    text-align: center;
}

.footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-color: #222;
  color: white;
  padding: 20px 0;
  min-height: 300px;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background-color: #222;
  color: white;
  padding: 20px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  gap: 40px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.footer-logo {
  height: 120px;
  width: auto;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}

.footer-section h3 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 18px;
  text-align: center;
}

.footer-section p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 10px;
  text-align: center;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  border-top: 1px solid #444;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: auto;
}

.footer-bottom p {
  color: #ccc;
  margin: 5px 0;
  text-align: center;
  flex: 1;
}

.footer-bottom p.altay {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-bottom img {
  height: 20px;
  width: auto;
}

.footer-bottom p.altay img {
  height: 20px;
  width: auto;
  filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 20px 10px;
  }

  .footer-section {
    margin-bottom: 20px;
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    padding: 20px 10px;
    justify-content: center;
    margin-top: auto;
  }

  .footer-bottom p {
    margin: 0;
    flex: none;
  }
}

@media (max-width: 480px) {
  .footer-content {
    padding: 15px 5px;
    gap: 15px;
  }

  .footer-section {
    margin-bottom: 15px;
  }

  .footer-logo {
    height: 80px;
  }

  .footer-section h3 {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .footer-section p {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .footer-bottom {
    padding: 15px 5px;
    gap: 10px;
    justify-content: center;
    margin-top: auto;
  }

  .footer-bottom p {
    font-size: 12px;
    flex: none;
  }
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  z-index: 1002;
}

.menu-toggle span {
  width: 24px;
  height: 3px;
  background: #444;
  margin: 3px 0;
  border-radius: 2px;
  display: block;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex !important;
    width: 36px;
    height: 36px;
    position: fixed;
    top: 18px;
    right: 18px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    z-index: 2000;
    margin: 0;
    padding: 0;
    border: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  
  .menu-toggle span {
    width: 22px;
    height: 3px;
    margin: 3px 0;
    background: #444;
    border-radius: 2px;
    display: block;
    transition: 0.3s;
  }
  
  .nav-items {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 320px;
    max-width: 90vw;
    background: #f8f9fa;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    z-index: 1001;
    overflow-y: auto;
    padding: 100px 0 0 0;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4,0,0.2,1), visibility 0.4s cubic-bezier(0.4,0,0.2,1);
  }
  
  .nav-items.open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }
  
  .nav-items a,
  .nav-items > a {
    width: 100%;
    text-align: left;
    padding: 18px 32px;
    font-size: 20px;
    font-weight: 500;
    color: #222;
    background: none;
    border: none;
    border-radius: 0;
    margin: 0;
    transition: color 0.2s, background 0.2s;
    font-family: 'Segoe UI', sans-serif;
    box-sizing: border-box;
    display: block;
  }
  
  .nav-items a:hover {
    color: #fff;
    background: #444;
  }
} 