/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

html {
    scroll-behavior: smooth;
    height: 100%;
    overflow-x: hidden;
}

body {
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    padding-top: 80px;
    min-height: 100%;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

/* Header ve Navigasyon */
header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(5px);
    height: 80px;
    min-height: 80px;
    left: 0;
}

nav {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.logo-img {
    height: 60px;
    width: 46px;
    width: auto;
    display: block;
}

.nav-header a {
    text-decoration: none;
}

.logo h1 {
    font-size: 1.8rem;
    color: rgb(45 67 89);
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    transition: right 0.3s ease;
}

.nav-links li {
    margin-left: 2rem;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: all 0.3s;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    font-size: 1.1rem;
}

.nav-links a:hover {
    color: #fff;
    background: #3498db;
    box-shadow: 0 2px 8px rgba(52,152,219,0.15);
}

.navbar-right {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 32px;
    height: 32px;
    min-width: 32px;
    justify-content: center;
    align-items: center;
    margin-left: 1.5rem;
    position: relative;
    z-index: 1002;
}

.hamburger span {
    height: 4px;
    width: 100%;
    background: #2c3e50;
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s;
    display: block;
    position: relative;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.dropdown {
    position: relative;
}

.dropdown > a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown-content {
    display: none;
    height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 0 !important;
    padding: 0.5rem 0;
    z-index: 1002;
    transition: opacity 0.2s, visibility 0.2s, height 0.2s;
}

.dropdown.open .dropdown-content {
    display: block !important;
    height: auto;
    overflow: visible;
    opacity: 1;
    visibility: visible;
}

.dropdown-content a {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    border-radius: 0 !important;
    padding: 0.8rem 1.5rem;
    color: #2c3e50;
    font-size: 1rem;
    transition: all 0.3s;
    white-space: nowrap;
}

.dropdown-content a:hover {
    background: #3498db !important;
    color: #fff !important;
    border-radius: 0 !important;
}

@media (min-width: 768px) {
    .nav-links a {
        text-decoration: none;
        color: #1a365d;
        font-weight: 600;
        transition: all 0.3s;
        padding: 0.5rem 1rem;
        border-radius: 8px;
        font-size: 1.1rem;
        white-space: nowrap;
        height: 100%;
        display: flex;
        align-items: center;
    }
    .nav-links a:hover {
        color: #fff;
        background: #3498db;
        box-shadow: 0 2px 8px rgba(52,152,219,0.15);
    }
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100vw;
        background: rgba(44,62,80,0.97);
        flex-direction: column;
        align-items: flex-start;
        padding: 0 2rem;
        box-shadow: 0 8px 32px rgba(44,62,80,0.15);
        z-index: 1001;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(.4,0,.2,1), padding 0.3s;
    }
    .nav-links.open {
        display: flex;
        max-height: 80vh;
        padding: 1.5rem 2rem 2rem 2rem;
        overflow-y: auto;
    }
    .nav-links li {
        width: 100%;
        margin: 0;
    }
    .nav-links a {
        color: #fff;
        display: block;
        width: 100%;
        font-size: 1.25rem;
        background: none;
        border-radius: 0;
        text-align: left;
        transition: background 0.2s;
    }
    .nav-links a:hover {
        background: #2980b9;
    }
    .dropdown-content {
        position: static;
        background: none;
        box-shadow: none;
        padding: 0;
        margin-left: 1rem;
        width: 100%;
        min-width: 0;
    }
    .dropdown-content a {
        color: #fff;
        padding: 0.8rem 0;
        font-size: 1.1rem;
    }
    .dropdown-content a:hover {
        background: none;
        color: #3498db;
    }
    .dropdown.open .dropdown-content {
        display: block;
    }
    .hamburger {
        display: flex;
    }
    .hero {
        padding-top: 0 !important;
        min-height: unset !important;
        height: auto !important;
        display: flex !important;
        justify-content: center;
        align-items: flex-start;
        background: url('../images/mobil_banner.webp') no-repeat center center !important;
        background-size: cover !important;
        background-position: center !important;
    }
    .hero-card {
        margin: 0 auto;
        text-align: center;
        max-width: 98vw;
        width: 100%;
        box-sizing: border-box;
        padding: 2.2rem 0.5rem 1.5rem 0.5rem;
        min-width: 0;
        min-height: 0;
    }
    .hero-links {
        display: flex;
        flex-direction: column;
        gap: 0.3rem;
        margin-top: 0.7rem;
        width: 100%;
        align-items: stretch;
    }
    .hero-link {
        width: 100%;
        min-width: 0;
        margin: 0 auto;
        box-sizing: border-box;
        font-size: 0.98rem;
        padding: 0.5rem 0.2rem;
        border-radius: 6px;
        min-height: 36px;
    }
    .nav-links li:not(:last-child) {
        border-bottom: 1px solid #3a4a5a;
    }
    .logo h1 {
        font-size: 1.4rem;
    }
}

@media (min-width: 901px) {
    .hero {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding-left: 5vw;
        padding-right: 5vw;
        text-align: left;
    }
    .hero-card {
        margin: 0;
        text-align: left;
    }
    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 0;
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
    }
    .nav-header {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    .nav-links {
        display: flex !important;
        position: static;
        max-height: none;
        overflow: visible;
        background: none;
        box-shadow: none;
        flex-direction: row;
        align-items: center;
        padding: 0;
    }
    .nav-links li {
        margin-left: 2rem;
    }
    .nav-links a {
        color: #2c3e50;
        padding: 0.5rem 1.2rem;
        border-radius: 8px;
        font-size: 1.1rem;
        display: inline-block;
        width: auto;
        background: none;
        text-align: left;
    }
    .hero-card h2 {
        position: static;
        display: block;
    }
    .hero-card hr {
        border: none;
        border-top: 2px solid #fff;
        margin-bottom: 1.2rem;
        margin: 0 0 10px 0 !important;
        width: 60px;
        max-width: none;
        min-width: 0;
        width: 20% !important;
        max-width: 100px;
    }
    .dropdown:hover .dropdown-content {
        display: block;
        height: auto;
        overflow: visible;
        opacity: 1;
        visibility: visible;
    }
}

/* Hero Section */
.hero {
    height: 80vh;
    min-height: 400px;
    background: rgba(0, 0, 0, 0.2), url('assets/images/balkan-ilaclama.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 5vw;
    padding-right: 5vw;
    margin-top: 0;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.hero-card {
    background: rgba(44, 62, 80, 0.6);
    padding: 2.5rem 3rem;
    border-radius: 24px;
    color: #fff;
    max-width: 700px;
    box-shadow: 0 8px 32px rgba(44,62,80,0.2);
    animation: fadeInUp 1s ease;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.hero-card h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.hero-card hr {
    border: none;
    border-top: 2px solid #fff;
    margin: 0.8rem auto 1.2rem auto;
    width: 60%;
    max-width: 300px;
    min-width: 80px;
}

.hero-card p {
    font-size: 1.15rem;
    line-height: 1.6;
}

.hero-content {
    max-width: 600px;
    text-align: left;
}

.hero-content h2 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(20px);
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(20px);
}

.animate-text {
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

.delay-3 {
    animation-delay: 0.9s;
}

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

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    margin-top: 1rem;
}

.cta-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #3498db;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

/* Hizmetler Section */
.services {
    padding: 4rem 0;
    background: #f8f9fa;
}

.services h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.services-slider {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    padding: 2rem;
    margin: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 380px;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 66.5px;
}

.service-card p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.6;
    height: 153px;
}

.service-card .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #1e40af;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s ease;
    margin-top: auto;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.service-card .btn:hover {
    background: #2980b9;
}

/* Slick Slider Custom Styles */
.slick-dots {
    bottom: -40px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: #3498db;
}

.slick-dots li.slick-active button:before {
    color: #3498db;
}

.slick-prev, 
.slick-next {
    width: 40px;
    height: 40px;
    z-index: 1;
    background-color: rgb(45 67 89) !important;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.slick-prev:hover, 
.slick-next:hover {
    background-color: rgb(21 128 61) !important;
    transform: scale(1.1);
}

.slick-prev {
    left: -10px;
}

.slick-next {
    right: -10px;
}

.slick-prev:before, 
.slick-next:before {
    font-size: 24px;
    color: #fff;
    opacity: 1;
}

@media (max-width: 480px) {
    .slick-dots {
        display: none !important;
    }
    
    .slick-prev {
        left: 10px;
    }
    
    .slick-next {
        right: 10px;
    }

    .slick-prev:before, 
    .slick-next:before {
        font-size: 20px;
    }
}

/* Hakkımızda Section */
.about {
    padding: 8rem 1rem;
    background-color: #fff;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    color: #666;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    text-align: center;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 15px;
    transition: all 0.3s ease;
}

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

.feature i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.feature h4 {
    color: #2c3e50;
    font-size: 1.1rem;
}

/* İletişim Section */
.contact {
    padding: 8rem 1rem;
    background-color: #f9f9f9;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    padding: 2rem;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-info h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-info p {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.contact-info i {
    color: #3498db;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

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

.submit-button {
    padding: 1rem;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Footer Styles */
footer {
    background: linear-gradient(to right, #2c3e50, #34495e);
    color: #fff;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #e6b800;
}

.footer-section p {
    color: #ecf0f1;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.footer-section ul li a i {
    margin-right: 10px;
    color: #3498db;
}

.footer-section .social-links a{
    text-decoration: none;
}

.working-hours {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.working-hours span:first-child {
    color: #bdc3c7;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #3498db;
    transform: translateY(-3px);
}

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

.footer-bottom p {
    color: #bdc3c7;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

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

    .working-hours {
        justify-content: center;
        gap: 20px;
    }

    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .about-features {
        grid-template-columns: 1fr;
    }
}

/* Responsive Tasarım */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        flex-direction: column;
    }

    .nav-links li {
        margin: 0.2rem 0;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .slick-prev {
        left: 5px !important;
    }

    .slick-next {
        right: 5px !important;
    }

    .hero {
        height: 60vh;
        min-height: 300px;
        background: url('../images/mobil_banner.webp') no-repeat center center !important;
        background-size: cover;
        background-position: center;
        justify-content: center;
        padding: 1rem 1rem;
        margin-top: 0 !important;
    }
    
    .hero-card {
        margin: 0;
        padding: 1.5rem;
        max-width: 100%;
        text-align: center;
    }
    
    .hero-card h2 {
        font-size: 1.8rem;
    }
    
    .hero-card p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

/* Hizmet Bölgeleri Section */
.service-areas {
    padding: 4rem 0;
    background: #f8f9fa;
}

.areas-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.area-section h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.area-section h3 i {
    color: #3498db;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
}

.area-item {
    background: #fff;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    text-align: center;
    color: #2c3e50;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    white-space: nowrap;
}

.area-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    background: #3498db;
    color: #fff;
}

@media (max-width: 768px) {
    .areas-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .areas-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
}

@media (max-width: 480px) {
    .areas-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
    
    .area-item {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        height: 40px;
    }
}

/* Makale Sayfası Stilleri */
.article-page {
    padding-top: 100px;
    padding-bottom: 4rem;
    background: #f8f9fa;
}

.article-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.article-header {
    margin-bottom: 2rem;
}

.article-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.article-content {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.article-content h1 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.article-content h2 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.article-content h2:first-child {
    margin-top: 0;
}

.article-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.article-content ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.article-content li {
    color: #666;
    margin-bottom: 0.5rem;
}

.article-cta {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 3rem;
}

.article-cta p {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .article-content h1 {
        font-size: 1.8rem;
    }
    
    .article-image {
        height: 300px;
    }
    
    .article-content {
        padding: 1.5rem;
    }
    
    .article-content h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .article-content h1 {
        font-size: 1.6rem;
    }
    
    .article-image {
        height: 250px;
    }
    
    .article-content {
        padding: 1rem;
    }
    
    .article-content h2 {
        font-size: 1.2rem;
    }
} 


.service-detail {
    max-width: 1200px;
    margin: 50px auto 50px;
    padding: 0 20px;
}
.service-header {
    text-align: center;
    margin-bottom: 40px;
}
.service-header h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.service-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.service-image img {
    width: 100%;
    height: auto;
    display: block;
}
.service-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}
.service-text h2 {
    color: #2c3e50;
    margin: 30px 0 20px;
    font-size: 1.8rem;
}
.service-text p {
    margin-bottom: 20px;
}
.service-features {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
}
.service-features h3 {
    color: #2c3e50;
    margin-bottom: 20px;
}
.service-features ul {
    list-style: none;
}
.service-features li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}
.service-features li:before {
    content: '✓';
    color: #3498db;
    position: absolute;
    left: 0;
    font-weight: bold;
}
@media (max-width: 768px) {
    .service-detail {
        margin: 20px auto 50px;
    }
    .service-content {
        grid-template-columns: 1fr;
    }
    .service-header h1 {
        font-size: 2rem;
    }
}

.toast {
    display: flex;
    align-items: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #28a745;
    color: #fff;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    font-weight: 600;
    opacity: 0;
    visibility: hidden; /* <--- BU ÖNEMLİ */
    pointer-events: none;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 9999;
}

.toast.show {
    opacity: 1;
    visibility: visible; /* <--- BU DA ÖNEMLİ */
    pointer-events: auto;
}
  
.callIcon, .wpIcon {
    position: fixed;
    z-index: 10001;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
}
.callIcon {
    right: 32px;
    bottom: 96px;
    background: #1e40af;
    color: white;
    box-shadow: 0 4px 16px rgb(45 67 89);
}
.wpIcon {
    right: 32px;
    bottom: 32px;
    background: #fff;
    box-shadow: 0 4px 16px rgba(37,211, 102, 0.18);
}