:root {
    --primary-color: #2C3333;
    --primary2-color: #ffffff;
    --secondary-color: #97c1ab;
    --accent-color: #395B64;
    --text-color: #2C3333;
    --light-text: #ffffff;
    --background-color: #f5f5f5;
    --footer-color: #97c1ab;
    --card-shadow: 0 10px 20px rgba(44, 51, 51, 0.1);
}

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

body {
    font-family: 'Poppins', 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-color: var(--background-color);
    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 {
    background-color: var(--secondary-color);
    padding: 1rem 4rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    height: 140px;
}

.navbar.scrolled {
    height: 120px;
    padding: 0.5rem 4rem;
}

.logo {
    flex: 0 0 auto;
    margin-left: 2rem;
}

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

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

.nav-links {
    display: flex;
    list-style: none;
    margin-left: auto;
    gap: 3rem;
}

.nav-links li {
    position: relative;
}

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

/* Animasyonlu alt çizgi için */
.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    opacity: 0;
}

.nav-links li a:hover::after {
    width: 80%;
    opacity: 1;
}

/* Aktif link için stil */
.nav-links li a.active::after {
    width: 80%;
    opacity: 1;
}

.nav-links li a:hover {
    color: var(--secondary-color);
    opacity: 0.8;
}

/* Hero Section */
#hero {
    height: 80vh;
    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 {
        height: 120px;
        padding: 1rem 2rem;
    }

    .navbar.scrolled {
        height: 100px;
        padding: 0.5rem 2rem;
    }

    .logo img {
        height: 100px;
    }

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

    .nav-links {
        top: 80px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background-color: var(--secondary-color);
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
    }

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

    .hamburger {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.4rem;
    }

    .logo {
        margin-left: 1rem;
    }
}

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

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(-135deg, 
        var(--primary2-color), 
        var(--secondary-color)
    );
    opacity: 0.7;
}

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

.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;
}

.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, 
    .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: 600;
}

.hero-content h1 {
    font-weight: 700;
    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 {
    font-size: 2.8rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

#makaleler 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;
}

/* 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-top: 2rem;
    margin-top: 0.3rem;
    background-color: transparent;
}

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

/* Responsive düzenleme */
@media (max-width: 768px) {
    #makaleler {
        padding-top: 1.5rem;
        margin-top: 0.2rem;
    }
}

/* 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: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

#hizmetler 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;
}

.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-blog {
    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;
    justify-content: space-between;
    height: 470px;
    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;
    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);
    cursor: pointer;
}

.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: 100%;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        padding: 1rem 0;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .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 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    #makaleler {
        padding-top: 1.5rem;
        margin-top: 0.2rem;
    }

    #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;
    background-color: var(--background-color);
}

.hakkimizda-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

#hakkimizda 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;
}

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

.hakkimizda-yazi {
    margin: 0 0 0 auto;
}

.hakkimizda-yazi p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-color);
}

/* Video container'ı kaldırıp logo stili ekliyoruz */
.hakkimizda-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.hakkimizda-logo img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
}

/* Hakkımızda Section mobil düzenlemesi */
@media (max-width: 768px) {
    #hakkimizda {
        padding: 3rem 1rem;
    }

    .hakkimizda-container {
        padding: 0 1rem;
    }

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

    .hakkimizda-logo {
        order: -1;
        padding: 1rem;
    }

    .hakkimizda-logo img {
        max-width: 80%;
    }

    .hakkimizda-yazi {
        text-align: center;
        max-width: calc(100% - 50px);
        margin: 0 auto;
    }

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

}

/* Tablet için düzenleme */
@media (min-width: 769px) and (max-width: 1024px) {
    #hakkimizda {
        padding: 3rem 1.5rem;
    }

    .hakkimizda-container {
        padding: 0 1.5rem;
    }

    .hakkimizda-content {
        gap: 3rem;
    }

}

/* Büyük ekranlar için düzenleme */
@media (min-width: 1025px) {
    .hakkimizda-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }
}

/* 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;
    margin-top: 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;
}

* {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.cta-button {
    background-color: #97c1ab !important;
    border-color: #97c1ab !important;
    border-radius: 32.5px !important; /* 25px'in %30 artırılmış hali */
    padding: 10px 25px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #86b098 !important; /* Slightly darker shade for hover */
}

.hizmet-icon i {
    color: #97c1ab !important;
}

.yorum-card .yildizlar i {
    color: #97c1ab !important;
}

.makale-card:hover {
    border-color: #97c1ab !important;
}

.page-btn.active {
    background-color: #97c1ab !important;
    border-color: #97c1ab !important;
}

.slider-dots .dot.active {
    background-color: #97c1ab !important;
}

.footer-hizmetler ul li i {
    color: #97c1ab !important;
}

.nav-links a:hover {
    color: #97c1ab !important;
}

.hamburger.active span {
    background-color: #97c1ab !important;
}

.etiket:hover {
    background-color: #97c1ab !important;
    border-color: #97c1ab !important;
}

@media (max-width: 768px) {
    .nav-links {
        display: none !important;
    }
    .menu-btn {
        display: block !important;
    }
    .logo {
        margin-left: 17px !important;
        transform: translateY(-50%) !important;
    }
    .logo img {
        height: 47px !important;
    }
    .navbar {
        height: 70px !important;
        width: 95% !important;
        padding: 3px 0 !important;
    }
    /* Bağış butonu mobil stil */
    a[href="#"] {
        padding: 6px 15px !important;
        font-size: 13px !important;
    }
    /* Mobilde margin-right'ı kaldır */
    .nav-buttons {
        margin-right: 0 !important;
    }
}

.sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    transition: 0.3s ease;
    z-index: 1001;
    padding: 20px;
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
}

.sidebar.active {
    right: 0;
}

.sidebar a:hover {
    color: #97c1ab !important;
}

/* Hamburger ve Sidebar stilleri */
.menu-btn {
    position: relative;
    display: none;
    cursor: pointer;
    z-index: 1002;
    margin-right: 40px;
}

@media (max-width: 768px) {
    .nav-links {
        display: none !important;
    }
    .menu-btn {
        display: block !important;
    }
}

.fancy-text {
    perspective: 1000px;
}

.fancy-text .word {
    display: inline-block;
    opacity: 0;
    transform: rotateY(-90deg) rotateZ(-10deg) translateY(80px) translateZ(50px);
    transition: all 0.9s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fancy-text .word.active {
    opacity: 1;
    transform: rotateY(0) rotateZ(0) translateY(0) translateZ(0);
}

.fancy-text .var-text {
    display: inline-block;
    font-weight: 400;
    font-size: 40px;
    transition: all 0.9s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Responsive Tasarım */
@media (max-width: 1024px) {
    #hero {
        padding: 8rem 2rem !important;
    }
    
    .hero-content h1 {
        font-size: 65px !important;
    }
    
    #changing-text {
        font-size: 65px !important;
    }
    
    .hero-content img {
        width: 250px !important;
    }
}

@media (max-width: 768px) {
    #hero {
        padding: 6rem 1rem !important;
    }
    
    #hero > div {
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .hero-content {
        order: 2;
        padding: 1rem !important;
        margin-top: 5rem !important;
    }
    
    .hero-content h1 {
        font-size: 20px !important;
        margin-top: 5rem !important; /* Header'dan uzaklaştırmak için */
    }
    
    #changing-text {
        font-size: 45px !important;
    }
    
    .hero-content img, 
    img[alt="Hüve Icon"] {
        width: 200px !important;
        margin: 2rem auto !important;
    }
    
    .cta-button {
        padding: 8px 20px !important;
        font-size: 14px !important;
    }
    
    .nav-buttons {
        margin-right: 15px !important;
    }
}

@media (max-width: 480px) {
    #hero {
        padding: 4rem 1rem !important;
    }
    
    .hero-content h1 {
        font-size: 35px !important;
    }
    
    #changing-text {
        font-size: 35px !important;
    }
    
    .hero-content img {
        width: 150px !important;
    }
    
    .hero-content div[style*="font-size: 18px"] {
        font-size: 14px !important;
    }
}

/* Genel Responsive Tasarım */
@media (max-width: 1400px) {
    .navbar {
        width: 90% !important;
    }
    
    #hero {
        padding: 10rem 2rem !important;
    }
    
    .hero-content h1 {
        font-size: 32px !important;
    }
    
    #changing-text {
        font-size: 75px !important;
    }
    
    img[alt="Hüve Icon"] {
        width: 250px !important;
    }
}

@media (max-width: 1024px) {
    .navbar {
        width: 95% !important;
    }
    
    #hero {
        padding: 8rem 2rem !important;
    }
    
    .hero-content h1 {
        font-size: 28px !important;
    }
    
    #changing-text {
        font-size: 65px !important;
    }
    
    img[alt="Hüve Icon"] {
        width: 220px !important;
    }
    
    .nav-links {
        gap: 15px !important;
    }
    
    .nav-buttons {
        gap: 20px !important;
    }
}

@media (max-width: 768px) {
    .navbar {
        width: 95% !important;
        height: 70px !important;
        padding: 3px 0 !important;
    }
    
    .logo {
        margin-left: 17px !important;
    }
    
    .logo img {
        height: 45px !important;
    }
    
    .nav-links {
        display: none !important;
    }
    
    .menu-btn {
        display: block !important;
    }
    
    #hero {
        padding: 6rem 1rem !important;
    }
    
    #hero > div {
        flex-direction: column !important;
        text-align: center !important;
        gap: 2rem !important;
    }
    
    .hero-content {
        order: 2;
        padding: 1rem !important;
        margin-top: 5rem !important;
    }
    
    .hero-content h1 {
        font-size: 20px !important;
        margin-top: 5rem !important;
    }
    
    #changing-text {
        font-size: 45px !important;
    }
    
    img[alt="Hüve Icon"] {
        width: 180px !important;
        margin: 1rem auto !important;
    }
    
    .cta-button {
        padding: 8px 20px !important;
        font-size: 14px !important;
    }
    
    .nav-buttons {
        margin-right: 15px !important;
        gap: 15px !important;
    }
    
    .whatsapp-container {
        bottom: 20px !important;
        right: 20px !important;
    }
}

@media (max-width: 480px) {
    .navbar {
        width: 98% !important;
        height: 60px !important;
    }
    
    .logo img {
        height: 40px !important;
    }
    
    #hero {
        padding: 4rem 1rem !important;
    }
    
    .hero-content h1 {
        font-size: 20px !important;
    }
    
    #changing-text {
        font-size: 35px !important;
    }
    
    img[alt="Hüve Icon"] {
        width: 150px !important;
    }
    
    .hero-content div[style*="font-size: 18px"] {
        font-size: 14px !important;
    }
    
    .cta-button {
        padding: 6px 15px !important;
        font-size: 12px !important;
    }
    
    .whatsapp-container {
        bottom: 15px !important;
        right: 15px !important;
    }
    
    .whatsapp-text {
        display: none !important;
    }
}

.h1-title {
    font-size: 35px !important;
}

@media (max-width: 768px) {
    .h1-title {
        font-size: 20px !important;
    }
}

#animated-text {
    font-size: 35px !important;
    line-height: 1.3 !important;
}

@media (max-width: 768px) {
    #animated-text {
        font-size: 23px !important;
        line-height: 1.4 !important; /* Mobilde biraz daha fazla boşluk */
    }
}

/* WhatsApp container stili */
.whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
}

.whatsapp-text {
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 15px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    font-size: 14px;
    color: #333;
}

.whatsapp-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.whatsapp-btn i {
    font-size: 28px;
}

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

footer {
    background-color: #FFF5E6 !important;
}

.footer-hizmetler h3 {
    color: #97c1ab !important;
}

/* Footer yazı renkleri ve hover efekti */
.footer-content {
    color: #333 !important;
}

.footer-content a, 
.footer-content span,
.footer-content p,
.footer-content li a {
    color: #333 !important;
    transition: color 0.3s ease;
}

.footer-content a:hover,
.footer-content li a:hover {
    color: #97c1ab !important;
}

/* İkonların rengi */
.footer-content i {
    color: #333 !important;
}

.footer-content a:hover i {
    color: #97c1ab !important;
}

/* veya CSS olarak */
.whatsapp-btn {
    background-color: #25D366 !important;
}

.copyright-text {
    color: #666;
    font-size: 14px;
}

@media (max-width: 768px) {
    .copyright-text {
        font-size: 12px !important; /* 10px'den 12px'e değiştirdik */
    }
}

.footer-logo {
    height: 30px;
    width: auto;
    position: absolute;
    bottom: -40px;
}

@media (max-width: 768px) {
    .footer-logo {
        height: 21px !important; /* 30px'in %30 küçültülmüş hali */
        bottom: -35px !important; /* Bottom değerini de biraz azalttık */
    }
}

.hizmetler-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
}

@media (max-width: 768px) {
    .hizmetler-grid {
        grid-template-columns: repeat(2, 1fr) !important; /* 2 sütun */
        gap: 15px !important;
        padding: 10px !important;
    }

    .hizmet-card {
        padding: 15px !important;
    }

    .hizmet-card h3 {
        font-size: 16px !important;
    }

    .hizmet-card p {
        font-size: 14px !important;
    }

    .hizmet-icon i {
        font-size: 24px !important;
    }
}

.hizmet-btn {
    padding: 10px 20px;
    font-size: 14px;
    width: 100%;
    max-width: 150px;
    text-align: center;
    display: inline-block;
    margin: 0 auto;
}

.hizmet-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hizmet-card .hizmet-btn {
    width: 120px !important;
    min-width: 120px !important;
}

@media (max-width: 768px) {
    .hizmet-btn {
        padding: 8px 15px !important;
        font-size: 14px !important;
        width: 120px !important;
        min-width: 120px !important;
    }

    .hizmet-card {
        text-align: center !important;
        padding: 15px !important;
    }
}

/* Sosyal medya ikonlarının orijinal renkleri */
.hizmet-card .fa-instagram {
    color: #E4405F !important; /* Instagram'ın orijinal rengi */
}

.hizmet-card .fa-youtube {
    color: #FF0000 !important; /* YouTube'un orijinal rengi */
}

.hizmet-card .fa-x-twitter {
    color: #000000 !important; /* X (Twitter)'ın yeni rengi */
}

/* İkon boyutlarını biraz büyütelim */
.hizmet-icon i {
    font-size: 32px !important;
}

@media (max-width: 768px) {
    .hizmet-icon i {
        font-size: 28px !important;
    }
}

/* Dropdown menü stilleri */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 10px;
    padding: 10px 0;
    z-index: 1000;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    font-size: 13px !important; /* Font boyutunu küçülttük */
}

.dropdown-content a:hover {
    background-color: #f8f8f8;
    color: #97c1ab !important;
}

/* Mobil için dropdown yazı boyutu */
@media (max-width: 768px) {
    .sidebar .dropdown-content a {
        font-size: 14px !important; /* Mobilde biraz daha büyük */
        padding: 10px 16px !important;
    }
}

/* Mobil için dropdown */
@media (max-width: 768px) {
    .sidebar .dropdown-content {
        position: static;
        box-shadow: none;
        padding-left: 20px;
        display: none;
    }

    .sidebar .dropdown.active .dropdown-content {
        display: block;
    }
}

/* Dropdown ok ikonu için stil */
.dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown > a i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

/* Tüm resimlere gölge efekti */
.stacked-images img {
    box-shadow: 0 10px 20px rgba(0,0,0,0.2) !important;
    transition: all 0.3s ease;
}

/* Hover efekti (isteğe bağlı) */
.stacked-images img:hover {
    transform: translateY(-15px) translateX(-50%) !important;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3) !important;
}

/* Ortadaki resim için özel transform */
.stacked-images img:nth-child(2):hover {
    transform: translateY(-15px) !important;
}

/* Stacked Images - Desktop */
.stacked-images {
    position: relative;
    width: 300px;
    height: 400px;
    margin-left: -50px;
}

.stacked-image1 {
    position: absolute;
    width: 300px;
    height: 400px;
    top: -100px;
    left: 150%;
    transform: translateX(-50%);
    z-index: 3;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    object-fit: cover;
}

.stacked-image2 {
    position: absolute;
    width: 300px;
    height: 400px;
    top: 50px;
    left: 150%;
    z-index: 2;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    object-fit: cover;
}

.stacked-image3 {
    position: absolute;
    width: 300px;
    height: 400px;
    top: 100px;
    left: 100%;
    transform: translateX(-50%);
    z-index: 1;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    object-fit: cover;
}

/* Stacked Images - Mobile */
@media (max-width: 768px) {
    .stacked-images {
        width: 200px;
        height: 300px;
        margin: 50px auto;
        margin-top: 120px;
        margin-left: 0;
    }

    .stacked-image1 {
        width: 180px;
        height: 230px;
        top: -110px;
        left: 45%;
    }

    .stacked-image2 {
        width: 180px;
        height: 230px;
        top: 0;
        left: 45%;
    }

    .stacked-image3 {
        width: 180px;
        height: 230px;
        top: 50px;
        left: 25%;
    }
}

/* Resim hover ve tıklama efektleri */
.stacked-images img {
    transition: all 0.3s ease;
    cursor: pointer;
}

.stacked-images img.dimmed {
    opacity: 0.3;
}

.stacked-images img.active {
    transform: scale(1.05) translateX(-50%);
    z-index: 10 !important;
}

/* Ortadaki resim için özel transform */
.stacked-images img:nth-child(2).active {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .hakikat-section h1 {
        font-size: 32px !important;
        padding: 0 20px;
    }

    .content-row {
        flex-direction: column !important;
        padding: 0 5% !important;
    }

    .text-content {
        padding: 20px 0 !important;
        text-align: center;
    }

    .image-content img {
        height: 300px !important;
        margin: 20px 0;
    }
}

/* Detail Section - Desktop */
.detail-section h1 {
    text-align: center;
    font-size: 75px;
    margin-bottom: 80px;
    color: #333;
}

.content-row {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    padding: 0 5%;
}

.image-content img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Detail Section - Mobile */
@media (max-width: 768px) {
    .detail-section h1 {
        font-size: 45px !important;
        padding: 0 20px;
        margin-bottom: 40px !important;
    }

    .content-row {
        flex-direction: column !important;
        margin-bottom: 60px !important;
        padding: 0 20px !important;
    }

    .content-row.reverse {
        flex-direction: column !important;
    }

    .image-content {
        width: 100%;
        margin-bottom: 20px;
        order: 1;
    }

    .text-content {
        width: 100%;
        padding: 0 !important;
        text-align: center;
        order: 2;
    }

    .text-content h3 {
        font-size: 28px !important;
        margin-bottom: 15px !important;
        margin-top: 10px !important;
    }

    .text-content p {
        font-size: 16px !important;
        line-height: 1.5 !important;
        margin-bottom: 40px !important;
    }

    .image-content img {
        height: 250px !important;
        border-radius: 20px !important;
    }
}

/* Navbar - Desktop */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    height: 85px;
    padding: 5px 0;
    margin: 15px auto;
    border-radius: 42.5px;
    width: 80%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

/* Navbar - Mobile */
@media (max-width: 768px) {
    .navbar {
        width: 90% !important; /* 95%'ten 90%'a düşürdük */
        height: 60px !important; /* 70px'ten 60px'e düşürdük */
        padding: 3px 10px !important;
        margin: 10px auto !important;
        border-radius: 30px !important;
    }

    .logo {
        margin-left: 10px !important; /* 17px'ten 10px'e düşürdük */
    }

    .logo img {
        height: 40px !important; /* 47px'ten 40px'e düşürdük */
    }

    .nav-buttons {
        margin-right: 10px !important;
        gap: 15px !important;
    }

    .menu-btn {
        margin-right: 10px !important; /* 40px'ten 10px'e düşürdük */
    }
}

/* Hero section sağ taraf - Desktop ve Mobile */
.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

/* Mobil ekran için özel stil */
@media (max-width: 768px) {
    .hero-right {
        padding: 0 2rem !important;
    }
}

/* Hero section sol taraf içerik alanı - Desktop */
.hero-content-left {
    flex: 1;
    position: relative;
    padding: 2rem;
    margin-top: 50px;
}

/* Hero section sol taraf içerik alanı - Mobile */
@media (max-width: 768px) {
    .hero-content-left {
        padding: 2rem 2rem 0 2rem !important;
        margin-top: 30px !important;
    }
}

/* Footer dropdown stilleri */
.footer-dropdown {
    position: relative;
    cursor: pointer;
}

.footer-dropdown-content {
    display: none;
    padding-left: 20px;
    margin-top: 10px;
}

.footer-dropdown-content.active {
    display: block;
}

@media (max-width: 768px) {
    .footer-dropdown a {
        pointer-events: none; /* Link tıklamasını devre dışı bırakır */
    }
}

.footer-dropdown-content a {
    position: relative;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-dropdown-content a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #2C3333; /* Beyaz yerine koyu gri renk */
    transition: width 0.3s ease;
}

.footer-dropdown-content a:hover {
    color: white !important;
}

.footer-dropdown-content a:hover::after {
    width: 100%;
}

/* Önceki hover stilini geçersiz kılmak için */
.footer-content a:hover {
    color: #97c1ab !important;
}

.footer-content li a:hover {
    color: #97c1ab !important;
}

/* Chevron icon için stil ve animasyon */
.footer-dropdown .fa-chevron-right {
    transition: transform 0.3s ease;
}

.footer-dropdown.active .fa-chevron-right {
    transform: rotate(90deg);
}

/* Mobil ekranda Tesbihat başlığı için özel stil */
@media (max-width: 768px) {
    .footer-dropdown > a {
        font-size: 16px !important;
        padding: 10px 0 !important;
        display: block !important;
    }

    .footer-dropdown .fa-chevron-right {
        font-size: 14px !important;
        margin-right: 8px !important;
    }
}

@media (max-width: 768px) {
    .footer-content ul li {
        margin: 8px 0 !important; /* Tüm li elemanları için eşit aralık */
    }

    .footer-content ul li a {
        padding: 5px 0 !important; /* Link'lerin padding'i */
    }

    .footer-dropdown-content a {
        margin: 5px 0 !important; /* Dropdown içindeki linkler için aralık */
        padding: 5px 10px !important;
        display: block !important;
    }

    .footer-content ul {
        padding: 10px 0 !important; /* Liste padding'i */
    }
}

@media (max-width: 768px) {
    /* Footer sekmelerinin üst kısmı ile arasındaki boşluğu azalt */
    .footer-content {
        margin-top: 20px !important;
    }

    .footer-content ul {
        padding-top: 0 !important;
        margin-top: 10px !important;
    }

    /* Sekmeler arası boşluğu azalt */
    .footer-content ul li {
        margin: 5px 0 !important;
    }

    /* Dropdown içeriği için margin ayarı */
    .footer-dropdown-content {
        margin-top: 5px !important;
    }

    /* Footer başlıkları ile sekmeler arası boşluk */
    .footer-content h3 {
        margin-bottom: 10px !important;
    }
}

/* 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;
    }
} 