:root {
    --primary-color: #000;
    --secondary-color: #5ac916;
    --accent-color: #5ac916;
    --text-color: #000;
    --light-text: #ffffff;
    --background-color: #f5f5f5;
    --footer-color: #000;
    --card-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Quicksand", sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Particles container stili */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    pointer-events: none;
}

/* Diğer içeriklerin particles'ların üzerinde görünmesi için */
.navbar,
#hero,
#hizmetler,
#hakkimizda,
#yorumlar,
#makaleler,
footer,
.whatsapp-btn {
    position: relative;
    z-index: 2;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    max-width: 1560px;
    background: rgba(255, 255, 255, 0.95);
    padding: 13.5px 30px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.logo {
    flex: 0 0 auto;
    margin-left: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.2;
    letter-spacing: 1px;
}

.logo-text p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--accent-color);
    margin: 0;
    line-height: 1.2;
}

.logo img {
    height: 108px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar.scrolled .logo img {
    height: 90px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-right: 2rem;
}

.nav-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
#hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(44, 51, 51, 0.7), 
        rgba(26, 32, 32, 0.7)
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    font-weight: 600;
}

.cta-button:hover {
    background-color: #d4ae54;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        width: 98%;
        max-width: 100vw;
        top: 8px;
        padding: 7px 8px;
        border-radius: 30px;
    }
    .logo img {
        height: 54px;
    }
    .logo-text h1 {
        font-size: 1rem;
    }
    .logo-text p {
        font-size: 0.7rem;
    }
    .logo {
        gap: 0.5rem;
        margin-left: 0.5rem;
    }
    .hamburger {
        margin-right: 0.5rem;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        width: 100%;
        background-color: white;
        padding: 1rem 0;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        border-radius: 20px;
        margin-right: 0;
    }
    .nav-links.active {
        display: flex;
    }
    .navbar.scrolled {
        height: 100px;
        padding: 0.5rem 2rem;
    }
    .navbar.scrolled .logo img {
        height: 80px;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1.4rem;
    }
    .logo-text h1 {
        font-size: 1.4rem;
    }
    .logo-text p {
        font-size: 0.9rem;
    }
    .logo {
        margin-left: 1rem;
    }
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, 
        var(--primary-color), 
        var(--footer-color)
    );
    padding: 4rem 2rem 1rem;
    color: white;
    margin-top: 2rem;
    position: relative;
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--secondary-color);
    opacity: 0.7;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 3rem;
}

.iletisim-bilgileri {
    flex: 1;
    padding: 2rem;
}

.iletisim-bilgileri h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.iletisim-bilgileri p {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.iletisim-bilgileri i {
    color: var(--secondary-color);
    margin-right: 15px;
    font-size: 1.3rem;
    width: 24px;
}

.footer-hizmetler {
    flex: 1;
    padding: 2rem;
}

.harita {
    flex: 1;
    padding: 2rem;
}

.harita iframe {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive düzenleme */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .iletisim-bilgileri, 
    .footer-hizmetler,
    .harita {
        padding: 1rem;
    }

    .harita iframe {
        height: 300px;
        aspect-ratio: auto;
    }
}

/* Başlıklar için özel font ağırlıkları ekleyelim */
h1, h2, h3 {
    font-weight: 700;
}

.hero-content h1 {
    font-weight: 800;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-weight: 300;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.makale-card h3 {
    font-weight: 500;
    margin: 1rem 0;
    color: var(--primary-color);
}

.makale-card p {
    font-weight: 300;
}

.footer-content h3 {
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Makale container ve grid yapısı */
.makale-container {
    padding: 3rem;
    background-color: var(--background-color);
    max-width: 1400px;
    margin: 0 auto;
}

.makale-page {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.makale-page.active {
    display: grid;
}

/* Makale kartları */
.makale-card {
    flex: 0 0 calc(33.333% - 1rem);
    margin-bottom: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.makale-card-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-align: center;
}

.makale-card-content p {
    color: #666;
    line-height: 1.6;
    text-align: justify;
}

/* Responsive düzenlemeler */
@media (max-width: 1200px) {
    .makale-page {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .makale-page {
        grid-template-columns: 1fr;
    }
    
    .makale-container {
        padding: 1rem;
    }
    
    .makale-card img {
        height: 200px;
    }
}

/* Slider kontrol butonları */
.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-color: var(--light-text);
    color: var(--primary-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0.9;
}

.slider-control:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

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

.makale-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.makale-card:hover img {
    transform: scale(1.05);
}

.makale-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.makale-card p {
    color: #666;
    margin-bottom: auto;
    line-height: 1.5;
}

.devami-btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background-color: var(--primary-color);
    color: var(--light-text);
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
    margin-top: 1rem;
    align-self: flex-start;
}

.devami-btn:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Başlık stil güncellemesi */
#makaleler h2,
#hizmetler h2,
#hakkimizda h2,
#ozellikler h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    text-align: left;
    margin-left: 0;
    position: relative;
    padding-bottom: 1rem;
}

#makaleler h2:after,
#hizmetler h2:after,
#hakkimizda h2:after,
#ozellikler h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    transform: none;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Animasyonlar */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.makale-card {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Responsive düzenlemeler */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .makale-page {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .makale-container {
        padding: 1rem;
    }
    
    .slider-control {
        width: 45px;
        height: 45px;
    }
}

/* Makaleler section stil güncellemesi */
#makaleler {
    padding: 4rem 2rem;
    background: transparent;
    position: relative;
    z-index: 2;
}

.makaleler-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

#makaleler h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    text-align: left;
    margin-left: 0;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

#makaleler h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    transform: none;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.makaleler-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.makale-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.makale-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(90, 201, 22, 0.15);
}

.makale-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.makale-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.makale-card:hover .makale-image img {
    transform: scale(1.1);
}

.makale-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.makale-tag {
    display: inline-block;
    padding: 8px 15px;
    background: linear-gradient(135deg, #5ac916 0%, #4a9e12 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.makale-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 700;
}

.makale-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.makale-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    color: #888;
    font-size: 0.9rem;
}

.makale-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.makale-meta i {
    color: #5ac916;
}

.makale-btn {
    display: inline-block;
    padding: 12px 25px;
    background: transparent;
    color: #5ac916;
    text-decoration: none;
    border: 2px solid #5ac916;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.makale-btn:hover {
    background: #5ac916;
    color: white;
    transform: translateY(-2px);
}

.makaleler-more {
    text-align: center;
    margin-top: 50px;
}

.makaleler-btn {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, #5ac916 0%, #4a9e12 100%);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.makaleler-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(90, 201, 22, 0.3);
}

@media (max-width: 768px) {
    #makaleler {
        padding: 3rem 1rem;
        overflow: hidden;
    }

    #makaleler h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .makaleler-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding: 10px 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .makaleler-grid::-webkit-scrollbar {
        display: none;
    }

    .makale-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        min-height: 350px;
        transform: none !important;
        transition: border-color 0.3s ease !important;
    }

    .makale-card:hover {
        transform: none !important;
        border: 2px solid var(--secondary-color) !important;
        box-shadow: 0 5px 15px rgba(90, 201, 22, 0.1) !important;
    }

    .makale-card:first-child {
        margin-left: 10px;
    }

    .makale-card:last-child {
        margin-right: 10px;
    }

    .slider-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
    }

    .slider-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--secondary-color);
        opacity: 0.3;
        transition: opacity 0.3s ease;
    }

    .slider-dot.active {
        opacity: 1;
    }

    .makale-image {
        height: 180px;
    }

    .makale-content {
        padding: 15px;
    }

    .makale-content h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .makale-content p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .makale-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

/* Hizmetler Section Styles */
#hizmetler {
    padding: 2rem 2rem 4rem;
    background-color: transparent;
    margin-top: 0;
    position: relative;
    z-index: 2;
}

.hizmetler-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

#hizmetler h2 {
    font-size: 2.4rem;
    color: var(--primary-color);
    text-align: left;
    margin-left: 0;
    position: relative;
    padding-bottom: 1rem;
}

#hizmetler h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    transform: none;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.hizmetler-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    padding: 2rem 0;
}

.hizmet-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: box-shadow 0.3s ease;
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 400px;
    transform: none;
    z-index: 2;
}

.hizmet-card:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    transform: none;
}

.hizmet-card.active {
    border: 2px solid #25D366;
    transform: none;
    height: 400px;
}

.hizmet-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    transition: all 0.3s ease;
}

.hizmet-card:hover .hizmet-icon {
    transform: rotate(360deg);
    background: var(--primary-color);
}

.hizmet-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.hizmet-card:hover .hizmet-icon i {
    color: var(--secondary-color);
}

.hizmet-card h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    min-height: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hizmet-card p {
    color: #666;
    margin-bottom: auto;
    line-height: 1.5;
    flex-grow: 1;
}

/* Hizmet buton stilleri güncelleme */
.hizmet-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
    margin-top: 1rem;
    align-self: center;
    border: none;
    cursor: pointer;
}

.hizmet-btn .whatsapp-text {
    display: none;
}

.hizmet-btn .normal-text {
    display: inline-block;
}

.hizmet-btn.whatsapp-active {
    background-color: #25D366;
    padding: 0.8rem 1.8rem;
}

.hizmet-btn.whatsapp-active .normal-text {
    display: none;
}

.hizmet-btn.whatsapp-active .whatsapp-text {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
}

.hizmet-btn.whatsapp-active .whatsapp-text i {
    margin-right: 8px;
    font-size: 1.3rem;
}

.hizmet-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hizmet-btn.whatsapp-active:hover {
    background-color: #1da856;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    #hizmetler {
        padding: 1.5rem 1rem 2rem;
        margin-top: 2rem;
    }

    .hizmet-card {
        height: 350px;
    }

    .hizmet-card.active {
        height: 350px;
    }

    .hizmet-icon {
        width: 60px;
        height: 60px;
    }

    .hizmet-icon i {
        font-size: 1.5rem;
    }
}

/* Footer hizmetler listesi için stil */
.footer-hizmetler {
    flex: 1;
    padding: 2rem;
}

.footer-hizmetler h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.footer-hizmetler ul {
    list-style: none;
    padding: 0;
}

.footer-hizmetler ul li {
    margin-bottom: 1rem;
}

.footer-hizmetler ul li a {
    color: var(--light-text);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-hizmetler ul li a i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.footer-hizmetler ul li a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.footer-hizmetler ul li a:hover i {
    transform: translateX(3px);
}

/* Responsive düzenleme güncelleme */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .iletisim-bilgileri, 
    .footer-hizmetler,
    .harita {
        padding: 1rem;
    }
}

/* Mobil görünüm için güncelleme */
@media (max-width: 768px) {
    .nav-links li a::after {
        height: 2px;
    }
    
    .nav-links li a:hover::after {
        width: 60%;
    }
}

/* WhatsApp Butonu Stili */
.whatsapp-btn {
    position: static;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    color: white;
    text-decoration: none;
}

/* WhatsApp butonu için pulse animasyonu */
@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobil için düzenleme */
@media (max-width: 768px) {
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 2rem;
        bottom: 20px;
        right: 20px;
    }
}

/* Hamburger menü stili */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

/* Mobil menü için düzenleme */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        width: 100%;
        background-color: white;
        padding: 1rem 0;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        border-radius: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    /* Hamburger menü animasyonu */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
} 

/* Responsive düzenlemeler için başlık boyutları */
@media (max-width: 768px) {
    #makaleler h2,
    #hizmetler h2,
    #hakkimizda h2,
    #ozellikler h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    #makaleler {
        padding: 3rem 1rem;
    }

    #hizmetler {
        padding: 1.5rem 1rem 2rem;
    }

    .hizmet-card h3 {
        font-size: 1.1rem;
        min-height: 2.4rem;
    }

    .makale-card h3 {
        font-size: 1.1rem;
    }
} 

/* Smooth scroll için */
html {
    scroll-behavior: smooth;
} 

/* Hakkımızda Section Styles */
#hakkimizda {
    padding: 4rem 2rem;
    margin-top: -2rem;
    background: transparent;
    position: relative;
    z-index: 2;
}

.hakkimizda-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

#hakkimizda h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    text-align: left;
    margin-left: 0;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

#hakkimizda h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    transform: none;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.hakkimizda-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hakkimizda-yazi {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.hakkimizda-card {
    background: transparent;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.hakkimizda-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.hakkimizda-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
    background: white;
}

.hakkimizda-card:hover::before {
    opacity: 0.05;
}

.hakkimizda-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.hakkimizda-card:hover h3 {
    color: var(--secondary-color);
    transform: scale(1.05);
}

.hakkimizda-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.hakkimizda-card:hover p {
    color: #333;
    transform: scale(1.02);
}

.hakkimizda-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.logo-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.logo-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.logo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.logo-wrapper:hover img {
    transform: scale(1.1);
}

.logo-wrapper:hover .logo-overlay {
    transform: translateY(0);
}

.logo-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.logo-overlay p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Responsive düzenlemeler */
@media (max-width: 1200px) {
    .hakkimizda-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hakkimizda-logo {
        order: -1;
    }

    .logo-wrapper {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    #hakkimizda {
        padding: 3rem 1rem;
        margin-top: -1rem;
    }

    #hakkimizda h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .hakkimizda-yazi {
        gap: 1.5rem;
    }

    .hakkimizda-card {
        padding: 1.5rem;
    }

    .logo-wrapper {
        max-width: 250px;
    }

    .logo-overlay h3 {
        font-size: 1.5rem;
    }

    .logo-overlay p {
        font-size: 1rem;
    }
}

/* Yorumlar Section Styles */
#yorumlar {
    padding: 4rem 2rem;
    background-color: transparent;
    position: relative;
    z-index: 2;
}

.yorumlar-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

#yorumlar h2 {
    font-size: 2.4rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

#yorumlar h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.yorumlar-slider {
    display: flex;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    height: 300px;
}

.yorum-card {
    flex: 0 0 100%;
    padding: 2rem;
    background: transparent;
    border-radius: 15px;
    transition: transform 0.5s ease;
    transform: translateX(0);
    display: none;
    height: 100%;
    overflow-y: auto;
    position: relative;
    padding-bottom: 4rem;
}

.yorum-card.active {
    display: block;
}

.yorum-card.prev {
    transform: translateX(-100%);
}

.yorum-card.next {
    transform: translateX(100%);
}

.yorum-metin {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
    font-style: italic;
    max-height: calc(100% - 6rem);
    overflow-y: auto;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--secondary-color);
    opacity: 0.3;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.slider-dot.active {
    opacity: 1;
}

/* Yıldız rengi ve profil düzenlemeleri */
.yildizlar {
    color: #FFD700; /* Altın sarısı renk */
    margin-bottom: 1rem;
}

.yildizlar i {
    margin: 0 2px;
    font-size: 1.2rem;
}

.yorum-alt {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: white;
    padding: 0.5rem;
    border-radius: 25px;
}

.yorum-profil-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.yorum-profil-img i {
    color: white;
    font-size: 1.5rem;
}

.yorum-isim {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
}

/* Kaydırma çubuğu stili */
.yorum-metin::-webkit-scrollbar {
    width: 6px;
}

.yorum-metin::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.yorum-metin::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 10px;
}

/* Makale sayfaları için stil */
.makale-page {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.makale-page.active {
    display: grid;
}

/* Sayfa geçiş butonları için stil */
.makale-pagination {
    display: flex;
    justify-content: flex-end; /* Sağa hizalama */
    gap: 0.5rem;
    margin-top: 2rem;
    padding-right: 1rem; /* Sağdan boşluk */
}

.page-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.page-btn:hover {
    background: var(--primary-color);
    color: white;
}

.page-btn.active {
    background: var(--primary-color);
    color: white;
}

/* Mobil görünüm için düzenleme */
@media (max-width: 768px) {
    .makale-pagination {
        padding-right: 0.5rem;
    }
}

/* Responsive düzenleme */
@media (max-width: 1200px) {
    .makale-page {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .makale-page {
        grid-template-columns: 1fr;
    }
}

.whatsapp-cta {
    background-color: #25D366;
    color: white !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.whatsapp-cta i {
    font-size: 1.3rem;
}

.whatsapp-cta:hover {
    background-color: #1da856;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}

/* Etiketler Section Styles */
#etiketler {
    padding: 4rem 2rem;
    background-color: transparent;
    position: relative;
    z-index: 2;
}

.etiketler-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.etiketler-container h2 {
    font-size: 2.4rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.etiketler-container h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.etiketler-content {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: var(--card-shadow);
}

.etiket {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Mobil için düzenleme */
@media (max-width: 768px) {
    #etiketler {
        padding: 2rem 1rem;
    }

    .etiketler-container h2 {
        font-size: 2rem;
    }

    .etiket {
        font-size: 0.8rem;
    }
} 

/* Videolar Section Styles */
#videolar {
    padding: 4rem 2rem;
    background-color: transparent;
    position: relative;
    z-index: 2;
}

.videolar-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.videolar-container h2 {
    font-size: 2.4rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.videolar-container h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: var(--card-shadow);
}

.video-item {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
}

.video-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* Mobil için düzenleme */
@media (max-width: 768px) {
    #videolar {
        padding: 2rem 1rem;
    }

    .videolar-container h2 {
        font-size: 2rem;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }
} 

/* Fotoğraflar Section Styles */
#fotograflar {
    padding: 4rem 2rem;
    background-color: transparent;
    position: relative;
    z-index: 2;
}

.fotograflar-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.fotograflar-container h2 {
    font-size: 2.4rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.fotograflar-container h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.fotograf-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 15px;
    background-color: transparent;
}

.fotograf-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.fotograf-slide.active {
    opacity: 1;
}

.fotograf-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: transparent;
    padding: 1rem;
}

/* Slider ok butonları için stil */
.fotograf-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(44, 51, 51, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.fotograf-nav-button:hover {
    background: var(--primary-color);
}

.fotograf-prev {
    left: 20px;
}

.fotograf-next {
    right: 20px;
}

.fotograf-nav-button i {
    font-size: 1.5rem;
}

/* Mobil için düzenleme */
@media (max-width: 768px) {
    #fotograflar {
        padding: 2rem 1rem;
    }

    .fotograflar-container h2 {
        font-size: 2rem;
    }

    .fotograf-slider {
        height: 300px;
    }
    
    .fotograf-slide img {
        padding: 0.5rem;
    }

    .fotograf-nav-button {
        width: 40px;
        height: 40px;
    }

    .fotograf-nav-button i {
        font-size: 1.2rem;
    }
} 

/* Hidrolik Direksiyon Section */
#hidrolik-direksiyon {
    padding: 4rem 2rem;
    background-color: transparent;
    position: relative;
    z-index: 2;
}

.hidrolik-container {
    max-width: 1400px;
    margin: 0 auto;
}

.hidrolik-content {
    display: flex;
    gap: 4rem;
    align-items: center;
    background: transparent;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: none;
}

.hidrolik-resim {
    flex: 1;
}

.hidrolik-resim img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.hidrolik-yazi {
    flex: 1;
}

.hidrolik-yazi h2 {
    font-size: 2.4rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.hidrolik-yazi p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Elektronik Direksiyon Section */
#elektronik-direksiyon {
    padding: 4rem 2rem;
    background-color: transparent;
    position: relative;
    z-index: 2;
}

.elektronik-container {
    max-width: 1400px;
    margin: 0 auto;
}

.elektronik-content {
    display: flex;
    gap: 4rem;
    align-items: center;
    background: transparent;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: none;
}

.elektronik-resim {
    flex: 1;
}

.elektronik-resim img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.elektronik-yazi {
    flex: 1;
}

.elektronik-yazi h2 {
    font-size: 2.4rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.elektronik-yazi p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Yeni Hidrolik Section */
#yeni-hidrolik-direksiyon {
    padding: 4rem 2rem;
    background-color: transparent;
    position: relative;
    z-index: 2;
}

.yeni-hidrolik-container {
    max-width: 1400px;
    margin: 0 auto;
}

.yeni-hidrolik-content {
    display: flex;
    gap: 4rem;
    align-items: center;
    background: transparent;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: none;
}

.yeni-hidrolik-resim {
    flex: 1;
}

.yeni-hidrolik-resim img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.yeni-hidrolik-yazi {
    flex: 1;
}

.yeni-hidrolik-yazi h2 {
    font-size: 2.4rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.yeni-hidrolik-yazi p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Mobil için düzenleme */
@media (max-width: 768px) {
    .hidrolik-content,
    .elektronik-content,
    .yeni-hidrolik-content {
        flex-direction: column;
        gap: 2rem;
        padding: 1rem;
    }

    .hidrolik-yazi h2,
    .elektronik-yazi h2,
    .yeni-hidrolik-yazi h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .hidrolik-resim,
    .elektronik-resim,
    .yeni-hidrolik-resim {
        order: -1; /* Mobilde resmi üste al */
    }
} 

/* Galeri Grid Styles */
.galeri-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
}

.galeri-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.galeri-item:hover {
    transform: scale(1.05);
}

.galeri-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.close-modal {
    position: absolute;
    right: 25px;
    top: 10px;
    color: #f1f1f1;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

.adres-yazi {
    color: black;
  text-decoration: none;
}

/* Mobil için düzenleme */
@media (max-width: 768px) {
    .galeri-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
        padding: 1rem;
    }

    .galeri-item img {
        height: 150px;
    }
} 

/* Özellikler Section Styles */
#ozellikler {
    padding: 4rem 2rem;
    margin-top: -2rem;
    background: transparent;
    position: relative;
    z-index: 2;
}

.ozellikler-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

#ozellikler h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    text-align: left;
    margin-left: 0;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

#ozellikler h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    transform: none;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.ozellikler-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    padding: 1rem;
}

.ozellik-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.ozellik-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.ozellik-card:hover::before {
    transform: scaleX(1);
}

.ozellik-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.ozellik-card:hover .ozellik-icon {
    transform: rotateY(180deg);
    background: var(--primary-color);
}

.ozellik-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.ozellik-card:hover .ozellik-icon i {
    color: var(--secondary-color);
    transform: rotateY(-180deg);
}

.ozellik-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.ozellik-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    #ozellikler {
        padding: 3rem 1rem;
        margin-top: -1rem;
    }

    #ozellikler h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .ozellikler-grid {
        gap: 1.5rem;
    }

    .ozellik-card {
        padding: 2rem 1.5rem;
    }

    .ozellik-icon {
        width: 70px;
        height: 70px;
    }

    .ozellik-icon i {
        font-size: 2rem;
    }

    .ozellik-card h3 {
        font-size: 1.2rem;
    }

    .ozellik-card p {
        font-size: 1rem;
    }
} 

#cozumler {
    padding: 4rem 2rem;
    margin-top: -2rem;
    background: transparent;
    position: relative;
    z-index: 2;
}

.cozumler-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.cozumler-container h2 {
    text-align: left;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
    font-weight: 700;
}

.cozumler-container h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    transform: none;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.cozumler-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.cozum-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.cozum-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(90, 201, 22, 0.1), rgba(74, 158, 18, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cozum-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(90, 201, 22, 0.15);
    border-color: #5ac916;
}

.cozum-card:hover::before {
    opacity: 1;
}

.cozum-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cozum-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #5ac916 0%, #4a9e12 100%);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.cozum-card:hover .cozum-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(90, 201, 22, 0.2);
}

.cozum-icon i {
    font-size: 40px;
    color: white;
    transition: all 0.4s ease;
}

.cozum-card:hover .cozum-icon i {
    transform: scale(1.1);
}

.cozum-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cozum-card:hover h3 {
    color: #5ac916;
    transform: scale(1.05);
}

.cozum-card p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cozum-card:hover p {
    color: #444;
}

.cozum-btn {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, #5ac916 0%, #4a9e12 100%);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-top: auto;
}

.cozum-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4a9e12 0%, #5ac916 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.cozum-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(90, 201, 22, 0.3);
}

.cozum-btn:hover::before {
    opacity: 1;
}

@media (max-width: 768px) {
    #cozumler {
        padding: 3rem 1rem;
        margin-top: -1rem;
        overflow: hidden;
    }

    .cozumler-container h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .cozumler-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding: 10px 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .cozumler-grid::-webkit-scrollbar {
        display: none;
    }

    .cozum-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        min-height: 350px;
        transform: none !important;
        transition: border-color 0.3s ease !important;
    }

    .cozum-card:hover {
        transform: none !important;
        border: 2px solid var(--secondary-color) !important;
        box-shadow: 0 5px 15px rgba(90, 201, 22, 0.1) !important;
    }

    .cozum-card:first-child {
        margin-left: 10px;
    }

    .cozum-card:last-child {
        margin-right: 10px;
    }

    .slider-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
    }

    .slider-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--secondary-color);
        opacity: 0.3;
        transition: opacity 0.3s ease;
    }

    .slider-dot.active {
        opacity: 1;
    }
} 

/* Social Media Styles */
.social-media {
    flex: 1;
    padding: 2rem;
}

.social-media h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Responsive düzenleme */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-hizmetler, 
    .social-media {
        padding: 1rem;
    }

    .social-icons {
        justify-content: center;
    }

    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
} 

/* Bize Ulaşın Section Styles */
#bize-ulasin {
    padding: 4rem 2rem;
    background: transparent;
    position: relative;
    z-index: 2;
}

.bize-ulasin-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

#bize-ulasin h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    text-align: left;
    margin-left: 0;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

#bize-ulasin h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    transform: none;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.iletisim-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.iletisim-bilgi {
    padding: 2rem;
    border-radius: 20px;
    box-shadow: none;
    background: transparent;
}

.iletisim-bilgi h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.iletisim-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.iletisim-item i {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.iletisim-item-content h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.iletisim-item-content p {
    color: #666;
    font-size: 1.1rem;
}

.iletisim-form {
    padding: 2rem;
    border-radius: 20px;
    box-shadow: none;
    background: transparent;
}

.iletisim-form h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(90, 201, 22, 0.1);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.gonder-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gonder-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    #bize-ulasin {
        padding: 3rem 1rem;
    }

    #bize-ulasin h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .iletisim-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .iletisim-bilgi,
    .iletisim-form {
        padding: 1.5rem;
    }

    .iletisim-item i {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .iletisim-item-content h4 {
        font-size: 1.1rem;
    }

    .iletisim-item-content p {
        font-size: 1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
    }

    .gonder-btn {
        width: 100%;
        padding: 0.8rem;
        font-size: 1rem;
    }
}