@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #fff;
}
.logo-container {
    display: flex;
    align-items: center;
    flex: 1;
}

.logo-container a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
}

.logo-image {
    width: 50px;
    height: auto;
}

.logo-text {
    margin-left: 10px;
    font-size: 24px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    letter-spacing: 0.5px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 9999;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    
}

.whatsapp-icon {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.whatsapp-icon i {
    font-size: 24px;
    color: #25D366;
    margin-right: 8px;
}

.whatsapp-text {
    letter-spacing: 1px;
    color: #25D366;
    text-decoration: none; 
}

.whatsapp-icon a {
    text-decoration: none; 
}

/* Mobil için sabit WhatsApp butonu */
.mobile-whatsapp {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.mobile-whatsapp i {
    font-size: 30px;
    line-height: 60px;
}

.mobile-whatsapp:hover {
    transform: scale(1.1);
}

nav {
    flex: 2;
    display: flex;
    justify-content: center;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    justify-content: center;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #90ee90; 
}

nav ul li a.active {
    color: #25D366; 
    text-decoration: none; 
}

/* İletişim linkindeki after/before elementlerini kaldır */
nav ul li a[href="contact.html"]::after,
nav ul li a[href="contact.html"]::before {
    content: none !important;
    display: none !important;
}

.hamburger-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
}

.banner {
    background-image: url('banner.jpg');
    background-size: cover;
    background-position: center;
    height: 755px; 
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.banner-text {
    text-align: center;
    position: relative;
    width: 100%;
    padding: 40px;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

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

.banner-text h1 {
    color: #fff;
    font-size: 3.5em;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    margin: 0;
    line-height: 1.2;
    position: relative;
    padding-bottom: 20px;
}

.banner-text h1 .highlight {
    color: #25D366;
    position: relative;
    display: inline-block;
}

.banner-text h1::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #25D366;
    border-radius: 4px;
}

.banner-cta {
    margin-top: 30px;
    animation: fadeInUp 1s ease-out 0.5s;
    animation-fill-mode: both;
}

.banner-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #25D366;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    font-size: 1.1em;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
}

.banner-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
    transition: all 0.8s ease;
}

.banner-button:hover {
    background-color: #1da851;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.banner-button:hover::before {
    left: 100%;
}

.info {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    background-color: #f4f4f4;
    background-image: linear-gradient(to right, #f4f4f4, #fafafa, #f4f4f4);
    border-bottom: 1px solid #e0e0e0;
}

.info-item {
    text-align: center;
    position: relative;
    padding: 15px 25px;
    transition: transform 0.3s ease;
}

.info-item::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #25D366;
    transition: width 0.3s ease;
}

.info-item:hover::after {
    width: 50px;
}

.info-item:hover {
    transform: translateY(-5px);
}

.info-item i {
    font-size: 42px;
    color: #25D366;
    margin-bottom: 12px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.info-item:nth-child(2) i {
    color: #2196F3;
}

.info-item:nth-child(3) i {
    color: #FF9800;
}

.info-item:hover i {
    transform: scale(1.1);
}

.info-item h3 {
    margin: 10px 0 0;
    font-size: 20px;
    color: #333;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.info-item:nth-child(2)::after {
    background-color: #2196F3;
}

.info-item:nth-child(3)::after {
    background-color: #FF9800;
}

.products {
    position: relative;
    margin-top: 50px;
    margin-bottom: 50px;
    width: 100%;
    height: 370px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-card {
    position: absolute;
    width: 200px;
    height: 320px;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    transition: 0.5s;
    left: calc(50% - 110px);
    top: 0;
    text-align: center;
}

.product-card img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    object-fit: cover; 
}

.product-card h2 {
    font-size: 1.5em;
    margin: 15px 0 10px;
    color: #25D366;
    font-weight: 600;
}

.product-card p {
    font-size: 0.9em;
    color: #666;
    font-weight: 300;
    line-height: 1.4;
}

#next {
    position: absolute;
    right: 50px;
    top: 40%;
    z-index: 2;
}

#prev {
    position: absolute;
    left: 50px;
    top: 40%;
    z-index: 2;
}

#prev, #next {
    color: #000000;
    background: none;
    border: none;
    font-size: xxx-large;
    font-family: monospace;
    font-weight: bold;
    opacity: 0.5;
    transition: opacity 0.5s;
}

#prev:hover,
#next:hover {
    opacity: 1;
}

.sections {
    padding: 60px 0;
    background-color: #f0f0f0;
}

.container {
    width: 80%;
    margin: auto;
    text-align: center;
}

.sections h2, .contact h2 {
    font-size: 2.5em;
    margin-bottom: 25px;
    color: #444;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

/* .sections h2::after, .contact h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: #25D366;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
} 

/* Hakkımızda Bölümü Stilleri */
.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
    align-items: stretch;
}

.about-text {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-box {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.about-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(to bottom, #25D366, #1da851);
    transition: height 0.5s ease;
}

.about-box:hover::before {
    height: 100%;
}

.about-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-box i {
    font-size: 2.5rem;
    color: #25D366;
    margin-bottom: 20px;
}

.about-box h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
    position: relative;
}

.about-box p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
    flex-grow: 1;
}

.about-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: block;
}

.about-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.partners {
    padding: 80px 20px;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(135deg, #f9f9f9 0%, #f3f3f3 100%);
}

.partners::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #25D366, #90ee90);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: #333;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 600;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: #25D366;
    border-radius: 2px;
}

.partners-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.partner {
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    width: 180px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.partner::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, #25D366, #90ee90);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.partner:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.partner:hover::after {
    transform: scaleX(1);
}

.partner-logo {
    background-color: #f7f7f7;
    border-radius: 8px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    font-size: 22px;
    font-weight: 700;
    color: #555;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
    padding: 15px;
    text-align: center;
}

.partner-logo::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 40%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0.3) 60%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.partner:hover .partner-logo::before {
    animation: shine 1.5s;
}

@keyframes shine {
    0% {
        top: -50%;
        left: -50%;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    100% {
        top: 150%;
        left: 150%;
        opacity: 0;
    }
}

.partner:hover .partner-logo {
    color: #25D366;
    background-color: #f0f9f4;
    border-color: rgba(37, 211, 102, 0.3);
}

.partner h3 {
    font-size: 16px;
    margin: 0;
    color: #444;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.partner:hover h3 {
    color: #25D366;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .partners {
        padding: 60px 15px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .partners-container {
        gap: 20px;
    }
    
    .partner {
        width: calc(33.33% - 20px);
        min-width: 150px;
        padding: 12px;
    }
    
    .partner-logo {
        height: 100px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .partners {
        padding: 40px 10px;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .partners-container {
        gap: 15px;
    }
    
    .partner {
        width: calc(50% - 15px);
        min-width: 130px;
        padding: 10px;
    }
    
    .partner-logo {
        height: 80px;
        font-size: 16px;
        font-weight: 600;
    }
}

.sections p, .contact p {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #666; /* Daha açık metalik gri renk */
    font-weight: 300;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

.contact {
    padding: 60px 0;
    background-color: #ffffff;
}

.containers {
    width: 80%;
    margin: auto;
    text-align: center;
}

.contact h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #444;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.contact p {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #666; /* Daha açık metalik gri renk */
}

#about img {
    display: block;
    margin: 20px auto;
    width: 200px;
    border-radius: 50%;
    border: 2px solid #ddd;
}


footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-link {
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    gap: 8px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #25D366;
}

.footer-link i {
    font-size: 20px;
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    main {
        overflow-x: hidden;
        width: 100%;
    }
    
    .banner {
        height: 500px;
    }

    .banner-text h1 {
        font-size: 2.5em;
    }

    .info {
        flex-direction: column;
        margin-top: 0;
        padding: 20px;
    }
    
    .info-item {
        margin: 10px 0;
    }

    .product-card {
        width: calc(50% - 40px);
        height: auto; 
        text-align: center;
    }

    .product-card img {
        width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
        border-radius: 10px;
        object-fit: cover; 
    }
    
    footer {
        background-color: #333;
        color: #fff;
        text-align: center;
        padding: 10px 20px;
        margin-top: auto;
    }

    nav {
        order: 2;
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }

    header {
        flex-wrap: wrap;
    }

    .logo-container {
        order: 1;
        flex: 1;
    }

    .whatsapp-icon {
        order: 3;
        flex: 1;
        justify-content: flex-end;
    }
    
    /* Mobil WhatsApp butonu */
    .mobile-whatsapp {
        display: block;
    }

    .about-content {
        flex-direction: column;
    }
    
    .about-text, .about-image {
        width: 100%;
    }
    
    .about-box, .partners {
        padding: 20px;
    }
    
    .about-box h3, .partners h3 {
        font-size: 1.3rem;
    }
    
    .partner-logos {
        gap: 10px;
    }
    
    .partner-logos span {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    main, header, footer, .container, .containers {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    header {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        padding: 10px;
    }

    nav {
        order: 3;
        width: 100%;
        margin-top: 10px;
    }

    nav ul {
        display: none;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    nav ul.active {
        display: flex;
    }

    .hamburger-menu {
        display: block;
        position: absolute;
        right: 15px;
        top: 15px;
    }

    .logo-container {
        flex: 1;
        order: 1;
        text-align: left;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .logo-image {
        width: 40px;
    }

    /* Header'daki WhatsApp ikonunu mobilde gizle */
    .whatsapp-icon {
        display: none;
    }

    /* Mobil WhatsApp butonu */
    .mobile-whatsapp {
        display: block;
    }

    .banner {
        height: 70vh; 
        min-height: 350px;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        background-position: center;
    }
    
    .banner-text h1 {
        font-size: 1.8em;
        padding: 10px;
    }
    
    .info {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .product-card {
        position: absolute;
        width: 200px;
        height: 320px;
        text-align: justify;
        background-color: #fff;
        border-radius: 10px;
        padding: 10px;
        transition: 0.5s;
        left: calc(50% - 100px); 
        text-align: center;
    }
    
    .product-card img {
        width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
        border-radius: 10px;
        object-fit: cover; 
    }

    #next {
        right: calc(50% - 180px); 
    }

    #prev {
        left: calc(50% - 160px); 
    }
    
    #maps {
        width: 100% !important;
        height: auto !important;
        min-height: 300px;
        display: block;
        margin: 0 auto;
    }
    
    .sections, .contact {
        padding: 30px 0;
        width: 100%;
        overflow-x: hidden;
    }
    
    footer {
        background-color: #333;
        color: #fff;
        text-align: center;
        padding: 10px 20px;
        margin-top: auto;
        font-size: 0.9em;
        width: 100%;
    }
    
    .sections h2, .contact h2 {
        font-size: 2em;
    }
    
    .sections p, .contact p {
        font-size: 1.1em;
    }
    
    iframe {
        max-width: 100%;
    }
}

/* Web görünüm için düzenlemeler */
@media (min-width: 769px) {
    header {
        flex-direction: row;
        justify-content: space-between;
    }

    .logo {
        text-align: left;
        width: auto;
    }

    .whatsapp-icon {
        justify-content: center;
        width: auto;
        margin: 0;
    }

    nav ul {
        display: flex;
        flex-direction: row;
        gap: 15px;
    }

    .hamburger-menu {
        display: none;
    }

    #next {
        right: calc(50% - 160px); 
    }

    #prev {
        left: calc(50% - 160px); 
    }
    
    footer {
        background-color: #333;
        color: #fff;
        text-align: center;
        padding: 10px 20px;
        margin-top: auto;
    }
    
    /* Masaüstü görünümünde mobil WhatsApp butonunu gizle */
    .mobile-whatsapp {
        display: none;
    }
}

/* Ürün Kategorileri Kutuları */
.product-categories {
    padding: 60px 20px;
    background-color: #f9f9f9;
    background-image: linear-gradient(135deg, #f9f9f9 0%, #f1f1f1 100%);
}

.category-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.category-box {
    flex: 1;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border-top: 4px solid #25D366;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.category-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.category-box:nth-child(1) {
    border-top-color: #25D366;
}

.category-box:nth-child(2) {
    border-top-color: #2196F3;
}

.category-box:nth-child(3) {
    border-top-color: #FF9800;
}

.category-content {
    padding: 35px 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.category-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: -1;
}

.category-box:nth-child(1) .category-content::before {
    background: radial-gradient(circle at top right, rgba(37, 211, 102, 0.08), transparent 70%);
}

.category-box:nth-child(2) .category-content::before {
    background: radial-gradient(circle at top right, rgba(33, 150, 243, 0.08), transparent 70%);
}

.category-box:nth-child(3) .category-content::before {
    background: radial-gradient(circle at top right, rgba(255, 152, 0, 0.08), transparent 70%);
}

.category-content h3 {
    margin: 0 0 20px;
    font-size: 1.6rem;
    font-weight: 600;
    position: relative;
}

.category-box:nth-child(1) h3 {
    color: #25D366;
}

.category-box:nth-child(2) h3 {
    color: #2196F3;
}

.category-box:nth-child(3) h3 {
    color: #FF9800;
}

.category-content i {
    font-size: 3rem;
    margin-bottom: 20px;
}

.category-box:nth-child(1) i {
    color: #25D366;
}

.category-box:nth-child(2) i {
    color: #2196F3;
}

.category-box:nth-child(3) i {
    color: #FF9800;
}

.category-content p {
    margin: 0 0 25px;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

.category-button {
    display: inline-block;
    padding: 12px 30px;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    margin-top: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.category-box:nth-child(1) .category-button {
    background-color: #25D366;
}

.category-box:nth-child(2) .category-button {
    background-color: #2196F3;
}

.category-box:nth-child(3) .category-button {
    background-color: #FF9800;
}

.category-button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.category-box:nth-child(1) .category-button:hover {
    background-color: #20c45e;
}

.category-box:nth-child(2) .category-button:hover {
    background-color: #0d8aee;
}

.category-box:nth-child(3) .category-button:hover {
    background-color: #f08c00;
}

/* Responsive tasarım için medya sorguları */
@media (max-width: 768px) {
    .category-container {
        flex-direction: column;
    }
    
    .category-box {
        margin-bottom: 30px;
    }
}

/* Hakkımızda Sayfası Stilleri */
.about-hero {
    position: relative;
    height: 300px;
    background-color: white;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 50px;
    overflow: hidden;
    border-bottom: 1px solid #eaeaea;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f0f0f0' fill-opacity='0.6'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title-box {
    display: inline-block;
    position: relative;
    margin-bottom: 20px;
    padding: 10px 0;
}

.about-hero-content h1 {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 6px;
    color: #333;
    margin: 0;
    position: relative;
    text-transform: uppercase;
}

.hero-line {
    display: block;
    width: 40px;
    height: 2px;
    background-color: #333;
    margin: 15px auto 0;
}

.about-hero-content p {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 300;
    color: #666;
    font-style: italic;
    max-width: 500px;
    margin: 0 auto;
}

.about-section {
    padding: 50px 0;
}

.about-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 5px;
}

/* .about-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 60px;
    background-color: #25D366;
} */

/* Giriş bölümü */
.about-intro {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.about-intro-text {
    flex: 1;
}

.about-intro-icon,
.why-us-icon {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-icon-wrapper {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.green-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.blue-icon {
    background: linear-gradient(135deg, #2196F3, #0D47A1);
}

.about-icon-wrapper:hover {
    transform: scale(1.05);
}

.about-icon-wrapper i {
    font-size: 80px;
    color: white;
}

/* Değerlerimiz bölümü */
.about-values {
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: #25D366;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 30px;
    color: white;
}

.value-card h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
    font-size: 1.3rem;
}

.value-card p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Neden Biz bölümü */
.about-why-us {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.why-us-text {
    flex: 1;
}

.why-us-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.why-us-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.why-us-list li i {
    color: #25D366;
    margin-right: 10px;
    font-size: 18px;
}

/* İş ortakları bölümü */
.about-partners {
    margin-bottom: 60px;
    text-align: center;
}

.about-partners p {
    max-width: 700px;
    margin: 0 auto 30px;
    color: #666;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.partner-logo {
    width: auto;
    height: 80px;
    background-color: #f0f0f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.partner-logo span {
    font-weight: 600;
    color: #666;
    font-size: 1rem;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    background-color: #e6e6e6;
}

/* CTA bölümü */
.about-cta {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 50px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.2);
    box-sizing: border-box;
    margin: 0 auto;
    position: relative;
}

.about-cta h2 {
    color: white;
    margin-bottom: 15px;
}

.about-cta p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
}

.cta-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
}

.cta-button.primary {
    background-color: white;
    color: #25D366;
}

.cta-button.secondary {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(5px);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.2rem;
        letter-spacing: 4px;
    }
    
    .about-intro, 
    .about-why-us {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-intro-icon,
    .why-us-icon {
        margin: 20px 0;
    }
    
    .about-why-us {
        flex-direction: column-reverse;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin: 0 auto;
        width: auto;
    }
    
    .about-cta {
        padding: 30px 20px;
        margin: 0 auto;
        box-sizing: border-box;
        max-width: 100%;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 15px;
    }
    
    .partner-logo {
        height: 70px;
    }

    .about-section .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 1.8rem;
        letter-spacing: 3px;
    }

    .about-hero-content p {
        font-size: 0.9rem;
    }

    .about-icon-wrapper {
        width: 150px;
        height: 150px;
    }

    .about-icon-wrapper i {
        font-size: 60px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .partner-logo {
        height: 60px;
    }

    .partner-logo span {
        font-size: 0.9rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .cta-button {
        display: inline-block;
        width: auto;
        min-width: 150px;
        max-width: none;
        padding: 12px 20px;
        font-size: 0.9rem;
        margin: 0 auto;
    }
    
    .about-cta {
        padding: 25px 15px;
        border-radius: 8px;
        box-sizing: border-box;
        width: calc(100% - 30px);
        margin: 0 auto;
    }
    
    .about-hero {
        height: 230px;
    }
    
    .hero-line {
        width: 30px;
        margin: 10px auto 0;
    }
}