/* Genel Ayarlar */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'SamsungsharpsansBold';
    src: url('./fonts/SAMSUNGSHARPSANS-BOLD.TTF') format('opentype');
    font-style: normal;
}

@font-face {
    font-family: 'SamsungSansLight';
    src: url('./fonts/SamsungSans-Light.ttf') format('opentype');
    font-style: normal;
}

@font-face {
    font-family: 'MagicalNordicPERSONAL';
    src: url('./fonts/MagicalNordic_PERSONAL_USE_ONLY.otf') format('opentype');
    font-style: normal;
}


@font-face {
    font-family: 'MagicalNordicSwashPERSONAL';
    src: url('./fonts/MagicalNordicSwash_PERSONAL_USE_ONLY.otf') format('opentype');
    font-style: normal;
}

@font-face {
    font-family: 'MillionDesign';
    src: url('./fonts/MillionDesign.ttf') format('opentype');
    font-style: normal;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    width: min(96%, 1200px);
    margin: 0 auto;
    padding: 2rem 1rem;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(1.8rem, 4.5vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 4vw, 3rem);
}

p, a, li {
    font-size: clamp(1rem, 2.4vw, 1.2rem);
}

#hizmetler, #iletisim {
    scroll-margin-top: 130px;
}

/* Header & Navigation */
.header {
    background-color: #1D1D1C;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease;
    padding-top: 20px;
    padding-bottom: 20px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    position: relative;
}

.logo {
    width: auto;
    height: 80px;
}

.logo-link {
    margin-top: -10px;
    margin-bottom: -10px;
    text-decoration: none;
    color: inherit;
    font-weight: 700;
    padding-left: 50px;
}

.nav-menu {
    transition: right 0.3s ease;
    z-index: 999;
}

.nav-list {
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: lightgrey;
    text-decoration: none;
    font-size: 15px;
    padding: 1px 20px;
    border-bottom: 4px solid;
    transition: color 0.3s;
}

.nav-link:hover {
    color: white;
}

/* Hamburger Menü (Mobil görünüm için) */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 40px;
    height: 35px;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid grey;
    border-radius: 4px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.hamburger:hover {
    background-color: rgba(0, 0, 0, 1);
    transform: scale(1.05);
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: whitesmoke;
    border-radius: 2px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger[aria-expanded="true"] .hamburger-line:first-child {
    transform: translateY(8px) rotate(45deg);
}

.hamburger[aria-expanded="true"] .hamburger-line:last-child {
    transform: translateY(-8px) rotate(-45deg);
}

/* Alt Menü (Sub-Menu) */
.alt-menu-container {
    position: relative;
}

.alt-menu-container .alt-menu {
    display: block;
    flex-direction: column;
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
    width: 13rem;
    max-height: 600px;
    overflow-y: auto;
    background-color: whitesmoke;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-radius: 0.5rem;
    border: 2px solid lightgrey;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, border-color 0.3s ease;
    z-index: 50;
}

.alt-menu-container:hover .alt-menu,
.alt-menu-container.acik .alt-menu {
    opacity: 1;
    visibility: visible;
    border-color: black;
}

.alt-menu li {
    display: block;
    width: 100%;
}

.alt-menu li a {
    font-family: SamsungSansLight, sans-serif;
    font-weight: 600;
    display: block;
    padding: 0.75rem 1rem;
    color: #1D1D1C;
    transition: background-color 0.3s, color 0.3s;
    border-bottom: 1px solid #f3f4f6;
    white-space: nowrap;
}

.alt-menu li:last-child a {
    border-bottom: none;
}

.alt-menu li a:hover {
    background-color: #f3f4f6;
    color: black;
}

/* Hero Sections */
.hero-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
    background-image: url('https://res.cloudinary.com/f4ksoy/image/upload/v1758273294/bg1_yvsfop.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    color: #fff;
}

.hero-section-1 {
    background-color: #f0f0f0;
    color: #000;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tüm hero içeriklerini konumlandırma için temel stil */
.hero-content {
    position: absolute;
    z-index: 2;
    padding: 0rem;
    max-width: 1000px;
    width: 90%;
}

/* 1. Hero Bölümü İçeriği */
.hero-content-1 {
    background-color: transparent;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Mobilde ortalanmış pozisyon */
}

/* Genel Başlık Stilleri */
.hero-title {
    text-wrap: nowrap;
    font-family: samsungsharpSansBold, sans-serif;
    font-weight: 750;
    font-size: 50px;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-family: SamsungSansLight, sans-serif;
    font-weight: 400;
    font-size: 25px;
}

/* İletişim Kutuları ve Logolar */
.hero-cta-box-1 {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 2;
    padding: 1rem;
}

.cta-text {
    font-family: SamsungSansLight, sans-serif;
    font-weight: 400;
    font-size: 25px;
}

/* --- */

/* Masaüstü Düzenlemeleri (1025px ve üzeri) */
@media (min-width: 1025px) {
    .hero-content-1 {
        top: 20%;
        left: 10%;
        transform: none; /* Masaüstünde ortalama kaldırıldı */
    }
}

.hero {
    position: relative;
    text-align: center;
    width: 100%;
}

.arkaplan {
    width: 100%;
    height: auto;
}

.arkaplan img {
    width: 100%;
    display: block;
}

.sagalt {
    position: absolute;
    top: 120px;
    right: 50px;
    text-align: right;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sagalt h1 {
    font-size: 65px;
    margin-bottom: 10px;
    font-family: 'MillionDesign', sans-serif;
    font-weight: 200;
    color: white;
}

.ikinci {
    position: relative;
    margin-bottom: 10px;
}

/* Çizgiyi ortalıyoruz */
.ikinci::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 63%;
    height: 5px;
    background-color: white;
}

.sagalt p {
    font-size: 27px;
    margin-top: 30px;
    margin-bottom: 0;
    font-family: 'SamsungsharpsansBold', sans-serif;
    color: white;
}

.solalt {
    position: absolute;
    bottom: 20px;
    left: 70px;
    text-align: right;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.solalt h1 {
    font-size: 45px;
    margin-bottom: 10px;
    font-family: 'MillionDesign', sans-serif;
    font-weight: 200;
    color: white;
}

/* Main Content Section */
.content-section {
    margin-top: -100px;
    height: 140vh;
    background-color: #1D1D1C;
    padding: 8rem 0;
}

.content-section .container {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    text-align: center;
}

.content-card {
    padding: 2rem;
    background-color: #1D1D1C;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.card-title {
    font-family: samsungsharpSansBold, sans-serif;
    font-weight: 500;
    font-size: 35px;
    margin-bottom: 1rem;
    width: 120vh;
    color: white;
}

.card-text {
    font-family: SamsungSansLight, sans-serif;
    font-weight: 50;
    font-size: 25px;
    width: 120vh;
    color: white;
}

/* Hizmetler Bölümü Resim Galerisi */
.hizmetler-gorselleri {
    margin-left: -330px;
    width: 1830px;
    display: flex;
    flex-direction: column;
    gap: 10rem;
    grid-column: 1;
}

.hizmet-gorseli {
    width: 100%;
    height: 70%;
    object-fit: cover;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Tablet ve Masaüstü Düzenlemesi */
@media (min-width: 481px) and (max-width: 1024px) {
    .content-section .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
    .hizmetler-gorselleri {
        flex-direction: row;
        justify-content: space-between;
        grid-column: 1 / -1;
    }
    .hizmet-gorseli {
        width: 30%;
    }
}

@media (min-width: 1025px) {
    .content-section .container {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 4rem;
    }
    .hizmetler-gorselleri {
        flex-direction: row;
        justify-content: space-between;
        grid-column: 1 / -1;
    }
    .hizmet-gorseli {
        width: 30%;
    }
}

/* Call to Action Section */
.cta-section {
    background-color: #333;
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.cta-button {
    background-color: #ffc107;
    color: #000;
    text-decoration: none;
    padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    min-width: 44px;
    min-height: 44px;
}

.cta-button:hover {
    background-color: #e0b000;
    transform: translateY(-2px);
}

.seoalani {
    background-image: url('https://res.cloudinary.com/f4ksoy/image/upload/v1758273298/seoalaniii_lcyhgx.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
}
.ilkbaslik {
    margin-top: -100px;
}

.ilk {
    width: 1800px;
    padding-bottom: 40px;
}

.son {
    width: 900px;
}

.bos {
    padding-left: 40px;
}

/* Contact Section */
/* GENEL */
#iletisim {
    padding: 50px 20px;
    font-family: 'Poppins', sans-serif;
}

.bilgi-kismi {
    padding: 1rem 0;
    background-image: url('https://res.cloudinary.com/f4ksoy/image/upload/v1758273290/bgbg_iicrlf.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bilgi-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 1830px;
    margin: 0 auto;
}

.contact-title {
    font-size: 22px;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.contact-text {
    font-size: 16px;
    font-weight: 500;
    color: white;
}

/* SOL KISIM */
.solbilgi {
    text-wrap: nowrap;
    flex: 1;
}

.solbilgi .icerik-karti {
    text-align: center;
    margin-top: 50px;
}

.sollogo {
    text-align: center;
}

.sollogo img {
    padding-top: 250px;
    margin-right: 210px;
    width: 220px;
    height: auto;
}

.altinabosluk {
    margin-top: 100px;
    padding-bottom: 50px;
}

.solbilgi h3 {
    font-family: samsungsharpSansBold, sans-serif;
    font-weight: 500;
    font-size: 35px;
}

.solbilgi p {
    font-family: samsungsharpSansBold, sans-serif;
    font-weight: 500;
    font-size: 27px;
}

/* SAĞ KISIM */
.sagbilgi {
    flex: 1;
    padding-top: 100px;
    padding-left: 90px;
    padding-right: 150px;
    position: relative;
    padding-bottom: 50px;
}

.icerik-baslik {
    text-align: center;
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.icerik-bilgi {
    font-size: 25px;
    margin: 5px 0;
    color: white;
    padding-bottom: 20px;
}

.icerik-veri img {
    padding-bottom: 10px;
    padding-right: 40px;
}

.icerik-adres img {
    padding-right: 50px;
}

.icerik-tel a {
    font-size: 25px;
    color: black;
}

.icerik-adres {
    font-size: 25px;
}

.icerikveri {
    font-size: 32px;
    padding-bottom: 50px;
}

.icerik-bilgi a {
    color: black;
    text-decoration: none;
}

.icerik-bilgi a:hover {
    text-decoration: underline;
}

.topluicerik {
    background: rgba(255, 255, 255, 0.7);
    -webkit-mask-image:
        linear-gradient(to right,
            rgba(0,0,0,0) 0%,
            rgba(0,0,0,0.7) 0%,
            rgba(0,0,0,1) 50%,
            rgba(0,0,0,0.7) 90%,
            rgba(0,0,0,0) 100%
        ),
        linear-gradient(to bottom,
            rgba(0,0,0,0) 0%,
            rgba(0,0,0,0.7) 0%,
            rgba(0,0,0,1) 50%,
            rgba(0,0,0,0.7) 90%,
            rgba(0,0,0,0) 100%
        );
    -webkit-mask-composite: destination-in;
    mask-image:
        linear-gradient(to right,
            rgba(0,0,0,0) 0%,
            rgba(0,0,0,0.7) 10%,
            rgba(0,0,0,1) 50%,
            rgba(0,0,0,0.7) 90%,
            rgba(0,0,0,0) 100%
        ),
        linear-gradient(to bottom,
            rgba(0,0,0,0) 0%,
            rgba(0,0,0,0.7) 10%,
            rgba(0,0,0,1) 50%,
            rgba(0,0,0,0.7) 90%,
            rgba(0,0,0,0) 100%
        );
    mask-composite: intersect;
    background-size: cover;
    padding: 85px;
}

.ikilibilgi {
    padding-top: 50px;
    display: relative;
    justify-content: space-between;
    gap: 40px;
    color: white;
    text-align: center;
}

.icerik-whatsapp a {
    font-size: 28px;
}

.icerik-whatsapp a::before {
    content: url('https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg');
    display: block;
    width: 120px;
    height: auto;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    position: relative;
    padding-bottom: 70px;
    background-color: #444444;
    color: white;
    padding: 40px 20px;
    font-family: 'Arial', sans-serif;
    padding-left: 450px;
    padding-right: 450px;
}

footer a {
    font-size: 14px;
    text-decoration: none;
    color: white;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    margin-bottom: 20px;
}

.footer-column h4 {
    font-size: 14px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    font-size: 13px;
    margin-bottom: 8px;
}

.footer-column.newsletter p {
    font-size: 13px;
    margin-bottom: 10px;
}

.footer-column.newsletter {
    position: relative;
    padding-bottom: 80px;
}

.footer-column.newsletter .newsletter-input-wrapper {
    position: relative;
    width: 100%;
}

.footer-column.newsletter input {
    width: 100%;
    padding: 10px 40px 10px 10px;
    background-color: dimgray;
    color: white;
    border: none;
}

.footer-column.newsletter button {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.03);
    color: orange;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0 10px;
}

.footer-column.newsletter button:hover {
    color: darkorange;
}

.footer-column.newsletter .copyright {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 13px;
}

.en-alt-kisim {
    position: absolute;
    bottom: 0;
    left: 250px;
    right: 250px;
    width: auto;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.en-alt-kisim .sol-kisim img,
.en-alt-kisim .sag-kisim img {
    height: 20px;
    width: auto;
    display: block;
}

.sabit-buton {
    position: fixed;
    bottom: 1rem;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: transform 0.3s;
    z-index: 100;
}

.sabit-buton img {
    width: 2rem;
    height: auto;
}

.sabit-buton:hover {
    transform: scale(1.1);
}

.sabit-buton.telefon {
    background-color: #8ac149;
    left: 1rem;
}

.sabit-buton.whatsapp {
    background-color: #25d366;
    right: 1rem;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
        animation: none !important;
    }
}

/* Tablet Layout (481px to 1024px) */
@media (min-width: 481px) and (max-width: 1024px) {
    .header-container {
        padding: 1rem 2rem;
    }
    
    .nav-menu {
        position: static;
        background-color: transparent;
        width: auto;
        height: auto;
        padding-top: 0;
        transition: none;
    }

    .nav-list {
        flex-direction: row;
        gap: 2rem;
    }

    .hamburger {
        display: none;
    }

    .hero-content-1 {
        left: 4rem;
        top: 4rem;
    }

    .content-section .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }

    .contact-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 4rem;
    }

    .footer-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 2rem;
    }

    .footer-nav {
        flex-direction: row;
    }
}

/* Desktop Layout (1025px and up) */
@media (min-width: 1025px) {
    .header-container {
        padding: 1rem 2rem;
    }
    
    .nav-menu {
        position: static;
        background-color: transparent;
        width: auto;
        height: auto;
        padding-top: 0;
        transition: none;
    }

    .nav-list {
        flex-direction: row;
        gap: 2rem;
    }

    .hamburger {
        display: none;
    }

    .hero-content-1 {
        left: 10%;
        top: 20%;
        max-width: 500px;
    }

    .hero-content-2 {
        bottom: 10%;
        right: 10%;
        max-width: 500px;
    }

    .logo-on-image {
        left: 10%;
        bottom: 10%;
    }

    .content-section .container {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 4rem;
    }

    .contact-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 4rem;
    }

    .footer-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 2rem;
    }

    .footer-nav {
        flex-direction: row;
    }
}

/* Large Desktop Optimization (1440px and up) */
@media (min-width: 1440px) {
    .container {
        max-width: 1440px;
    }
}

@media (max-width: 991px) {
    /* Genel Düzeltmeler */
    body {
        font-size: 16px;
    }

    #hakkimizda, #hizmetler, #iletisim {
        scroll-margin-top: 85px;
    }

    /* Header ve Navigasyon Düzeltmeleri */
    .header-container {
        padding: 0 10px;
    }

    .nav-link {
        font-size: 12px;
    }

    .logo {
        height: 60px;
    }

    .logo-link {
        padding-left: 20px;
    }

    /* Hamburger Menü */
    .hamburger {
        display: flex;
    }

    /* Navigasyon menüsü */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -250px;
        width: 250px;
        height: 100%;
        background-color: #1D1D1C;
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }

    /* Navigasyon listesi */
    .nav-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 2rem 0;
        height: 100%;
        justify-content: center;
    }

    /* Navigasyon linkleri */
    .nav-link {
        font-size: 16px;
        color: lightgrey;
        text-decoration: none;
        padding: 10px 20px;
        border-bottom: none;
    }
    
    /* Alt menü */
    .alt-menu-container .alt-menu {
        position: static;
        width: 100%;
        border: none;
        box-shadow: none;
        background-color: transparent;
        margin-top: 1rem;
        padding-left: 20px;
        opacity: 0;
        visibility: hidden;
        height: 0;
        overflow: hidden;
        transition: opacity 0.3s ease, height 0.3s ease;
    }

    .alt-menu-container.acik .alt-menu {
        opacity: 1;
        visibility: visible;
        height: auto;
        overflow: auto;
    }
    
    .alt-menu li a {
        color: lightgrey;
        border-bottom: none;
        font-size: 14px;
        padding: 8px 15px;
    }
    
    .alt-menu li {
        margin-bottom: 5px;
    }
    
    .alt-menu li:last-child {
        margin-bottom: 90px;
    }

    /* Hero Bölümleri Düzeltmeleri */
    .hero-section {
        min-height: auto;
        padding-top: 400px;
        padding-bottom: 100px;
        background-image: url('https://res.cloudinary.com/f4ksoy/image/upload/v1758273290/bg1kk_izuspx.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        width: 100%;
    }

    .hero-content-1 {
        position: static;
        transform: none;
        text-align: center;
        padding: 0 10px;
        margin-left: 45px;
    }

    .hero-title {
        color: white;
        font-size: 25px;
        text-wrap: wrap;
    }

    .hero-subtitle {
        color: white;
        font-size: 18px;
    }

    .hero-cta-box-1 {
        position: static;
        text-align: center;
        margin-bottom: -290px;
    }

    .hero-cta-box-1 p {
        text-wrap: nowrap;
        font-size: 9px;
    }

    .cta-text {
        color: white;
        font-size: 20px;
    }
    
    .hero {
        padding-top: 0;
    }

    .arkaplan img {
        height: auto;
    }
    
    /* Hero bölümü metinleri için düzeltmeler */
    .sagalt {
        position: absolute;
        top: 10%;
        right: 5%;
        text-align: right;
        width: 45%;
        padding: 0;
    }

    .sagalt h1, .solalt h1 {
        font-size: 14px;
    }

    .sagalt p {
        font-size: 12px;
        text-align: center;
    }

    .ikinci::after {
        width: 65%;
        left: auto;
        right: 35px;
        transform: none;
    }

    .solalt {
        position: absolute;
        bottom: 1%;
        left: 5%;
        text-align: left;
        width: 50%;
        padding: 0;
    }

    /* Ana içerik bölümü için genel düzeltmeler */
    .content-section {
        margin-top: 0;
        height: auto;
        padding: 4rem 0;
    }

    .content-section .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .content-card {
        width: 100%;
        padding: 1rem;
    }

    .card-title, .card-text {
        width: auto;
        text-align: center;
        font-size: 18px;
    }

    /* Yan Yana Resimler için bu kod blokunu kullanın */
    .seoalani {
        background: black;
        width: 100%;
    }

    .hizmetler-gorselleri {
        margin-left: 0;
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 1rem;
    }

    .hizmet-gorseli {
        width: 30%;
        height: auto;
        object-fit: cover;
        border-radius: 25px;

    }

    .sayfabosluk {
        height: 40px;
        background: rgba(0, 0, 0, 0.7);
    }

    .bos {
        padding-left: 20px;
        padding-right: 20px;
        font-size: 18px;
    }

    /* İletişim Bölümü Düzeltmeleri */
    .bilgi-kismi {
        background-image: url('https://res.cloudinary.com/f4ksoy/image/upload/v1758273292/mobilbgbgg_usa1jz.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .bilgi-kismi {
        padding: 2rem 0;
    }
    
    .bilgi-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .altinabosluk {
        margin-top: -80px;
    }

    .ilkbaslik {
        margin-top: 0px;
    }

    .solbilgi, .sagbilgi {
        flex: 1;
        padding: 20px;
        width: 100%;
        text-align: center;
    }

    .solbilgi h3 {
        font-size: 28px;
        text-wrap: wrap;
    }

    .solbilgi p {
        font-size: 25px;
        text-wrap: wrap;
    }
    
    .sollogo img {
        padding-top: 60px;
        width: 150px;
    }

    .sagbilgi {
        padding-top: 100px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .icerik-baslik {
        font-size: 28px;
    }

    .icerik-bilgi {
        font-size: 18px;
    }
    
    .topluicerik img {
        position: relative;
        width: 40px;
        height: auto;
        padding-right: 15px;
    }

    .icerik-tel {
        margin-top: 20px;
    }
    
    .icerik-tel a {
        font-size: 18px;
    }
    
    .icerik-adres {
        font-size: 18px;
    }

    .icerikveri {
        font-size: 20px;
        padding-bottom: 20px;
    }
    
    .icerik-whatsapp a {
        font-size: 16px;
    }

    .icerik-whatsapp a::before {
        width: 80px;
        margin-bottom: 5px;
    }
    
    .ikilibilgi {
        flex-direction: column;
        gap: 20px;
        padding-top: 20px;
    }
    
    .topluicerik {
        padding: 25px;
    }

    /* Footer */
    footer {
        padding: 12px 35px;
        padding-bottom: 30px;
        margin: 0 auto;
        max-width: 100%;
    }

    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2px;
        margin-bottom: 12px;
    }

    .footer-column h4 {
        font-size: 11px;
    }

    .footer-column ul {
        padding: 0;
        padding-bottom: 20px;
    }

    .footer-column li {
        font-size: 10px;
    }

    .footer-column.newsletter {
        grid-column: span 2;
        padding-bottom: 30px;
        position: relative;
    }

    .footer-column.newsletter p {
        font-size: 10px;
    }

    .footer-column.newsletter input {
        width: 100%;
        padding: 6px 120px 6px 6px;
        box-sizing: border-box;
        margin-bottom: 20px;
    }

    .footer-column.newsletter button {
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        padding: 0 8px;
        background-color: rgba(0, 0, 0, 0.03);
        color: orange;
        border: none;
        cursor: pointer;
        max-height: 35px;
    }

    .footer-column .copyright {
        position: static;
        font-size: 8px;
        text-align: center;
        margin-top: 20px;
    }

    .en-alt-kisim {
        position: static;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px 12px 15px;
        box-sizing: border-box;
        width: 100%;
        gap: 10px;
        margin-top: 20px;
    }

    .en-alt-kisim .sol-kisim,
    .en-alt-kisim .sag-kisim {
        position: static;
        right: auto;
        bottom: auto;
    }

    .en-alt-kisim .sol-kisim img,
    .en-alt-kisim .sag-kisim img {
        height: 10px;
    }
}