* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

/* Header Styles */
header {
    background-color: #1a1a1a;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
}

/* Tüm logolar için standart boyut */
.header-logo,
.section-logo,
.hero-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
}

/* Tüm başlıklar için standart boyut */
.logo h1,
.section-title h2,
.hero-title {
    font-size: 2.1rem;
    margin: 0;
    color: #ffd700;
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.section-title h2 {
    color: #333;
}

.hero-title {
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.nav-links {
    display: flex;
    list-style: none;
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffd700;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.button-group {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Performans dostu pulse animasyonu */
@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
    }
    50% { 
        transform: scale(1.03); 
    }
}

/* Mobil için daha yumuşak animasyon */
@media (max-width: 768px) {
    @keyframes pulse {
        0%, 100% { 
            transform: scale(1); 
        }
        50% { 
            transform: scale(1.02); 
        }
    }
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background-color: #ffd700;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    will-change: transform, box-shadow;
    transform: translateZ(0); /* GPU katmanı aktifleştir */
}

/* Mobilde de hafif animasyon - performans dostu */
.cta-button {
    animation: pulse 2s infinite;
}

@media (min-width: 769px) {
    .cta-button {
        animation: pulse 1.5s infinite;
    }
}

.cta-button i {
    font-size: 1.4rem;
    margin-right: 0.5rem;
}

.whatsapp-button {
    display: inline-block;
    background-color: #1DA851;
    color: white;
}

/* WhatsApp butonu için mobilde de animasyon */
.whatsapp-button {
    animation: pulse 2.2s infinite 0.8s;
}

@media (min-width: 769px) {
    .whatsapp-button {
        animation: pulse 1.5s infinite 0.75s;
    }
}

.whatsapp-button:hover {
    background-color: #0d7c6e;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.25);
    animation: none;
}

.whatsapp-button:active {
    transform: translateY(-1px) scale(1.02);
    background-color: #128C7E;
    transition: all 0.1s ease;
}

.cta-button:hover {
    background-color: #ffed4a;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.25);
    animation: none;
}

.cta-button:active {
    transform: translateY(-1px) scale(1.02);
    transition: all 0.1s ease;
}

/* About Section */
.about {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, #f9f9f9, #ffffff);
}

.about h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.main-description {
    text-align: center;
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.about-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

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

.about-card i {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.about-card h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 1rem;
}

.about-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-areas,
.certificates {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-areas li,
.certificates li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: #666;
}

.service-areas i,
.certificates i {
    font-size: 1.2rem;
    color: #ffd700;
    flex-shrink: 0;
}

.about-features {
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 4rem;
}

.about-features h3 {
    text-align: center;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 2rem;
}

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

.features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 10px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.features li:hover {
    transform: translateX(5px);
    background-color: #ffd700;
}

.features li:hover i {
    color: #333;
}

.features i {
    font-size: 1.4rem;
    color: #ffd700;
    transition: color 0.3s ease;
}

.social-proof {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.social-proof h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 2rem;
}

.partner-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.partner-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: #666;
    text-decoration: none;
    transition: transform 0.3s ease;
    padding: 1rem;
}

.partner-link:hover {
    transform: translateY(-5px);
}

.partner-link i {
    font-size: 2.5rem;
    color: #ffd700;
}

.partner-link span {
    font-size: 1rem;
    text-align: center;
}

@media (max-width: 768px) {
    .about {
        padding: 3rem 1rem;
    }

    .main-description {
        font-size: 1.2rem;
        padding: 0 1rem;
    }

    .about-card {
        padding: 1.5rem;
    }

    .about-features {
        padding: 2rem 1rem;
    }

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

    .partner-logos {
        gap: 1rem;
    }

    .partner-link {
        width: calc(50% - 1rem);
    }

    .logo {
        gap: 0.5rem;
    }

    .header-logo,
    .section-logo,
    .hero-logo {
        height: 35px;
    }

    .logo h1,
    .section-title h2,
    .hero-title {
        font-size: 1.3rem;
    }

    .section-title {
        gap: 0.8rem;
        margin-bottom: 2rem;
    }

    .hero-title-container {
        gap: 1rem;
    }
}

/* Çok küçük ekranlar için ek düzenlemeler */
@media (max-width: 480px) {
    .header-logo,
    .section-logo,
    .hero-logo {
        height: 30px;
    }

    .logo h1,
    .section-title h2,
    .hero-title {
        font-size: 1.4rem;
    }
}

/* iPhone 12 Pro ve benzer boyutlar için özel düzenlemeler */
@media (max-width: 390px) {
    .hero-title-container {
        gap: 0.6rem;
        margin-bottom: 1.2rem;
    }

    .hero-logo {
        height: 28px !important;
    }

    .hero-title {
        font-size: 1.1rem !important;
    }

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

    /* Header için ek düzenlemeler */
    .logo h1 {
        font-size: 1.3rem !important;
    }

    .header-logo {
        height: 30px !important;
    }
}

/* Contact Section */
.contact {
    padding: 5rem 2rem;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.info-item {
    text-align: center;
    flex: 1;
    min-width: 300px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.info-item i {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.info-item p {
    font-size: 1.2rem;
    line-height: 1.4;
}

.contact-link {
    color: #333;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    background-color: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
    min-width: 250px;
    text-align: center;
}

.contact-link:hover {
    color: #ffd700;
    background-color: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.map-link {
    position: relative;
}

.map-link::after {
    content: '\f3c5';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 0.5rem;
    font-size: 0.9rem;
    color: #ffd700;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: white;
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    text-align: center;
    min-width: 250px;
}

.footer-section h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #ffd700;
}

/* Footer Phone Button - Always gold */
.footer-section a[href^="tel:"],
footer a[href^="tel:"],
.footer-bottom-links a[href^="tel:"] {
    color: #ffd700 !important;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 25px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
}

.footer-section a[href^="tel:"]:hover,
footer a[href^="tel:"]:hover,
.footer-bottom-links a[href^="tel:"]:hover {
    background: #ffd700;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

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

.footer-bottom p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #e0e0e0;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #ffd700 !important;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.footer-bottom-links a:hover {
    color: #ffffff !important;
    background: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.4);
}

.footer-bottom-links i {
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Header ve Navigasyon */
    header {
        height: 60px;
    }

    nav {
        padding: 0 1rem;
    }

    .logo {
        gap: 0.5rem;
    }

    .header-logo,
    .section-logo,
    .hero-logo {
        height: 35px;
    }

    .logo h1,
    .section-title h2,
    .hero-title {
        font-size: 1.3rem;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 77px;
        left: 0;
        width: 100%;
        background-color: rgba(26, 26, 26, 0.95);
        padding: 1rem;
        flex-direction: column;
        align-items: center;
        z-index: 1000;
    }

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

    .nav-links li {
        margin: 0.8rem 0;
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 0.5rem;
        font-size: 1.1rem;
    }

    /* Hero Bölümü */
    .hero {
        height: calc(100vh - 80px);
        margin-top: 60px;
    }

    .hero-content {
        padding: 1rem;
    }

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

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }

    /* Hero başlık ve logo aynı satırda */
    .hero-title-container {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
        flex-wrap: nowrap;
    }

    .hero-logo {
        height: 30px !important;
        flex-shrink: 0;
    }

    .hero-title {
        font-size: 1.3rem !important;
        white-space: nowrap;
        text-align: center;
    }

    .button-group {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
        padding: 1rem;
    }

    .experience-text {
        position: absolute;
        bottom: 2rem;
        left: 2rem;
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.8);
        font-style: italic;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        display: none; /* Mobilde gizle */
    }

    /* Hakkımızda Bölümü */
    .about {
        padding: 2rem 1rem;
    }

    .about h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .about-content {
        padding: 1rem;
    }

    .about-text {
        padding: 0 0.5rem;
    }

    .about-text p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .features {
        margin-top: 1rem;
        padding: 0;
    }

    .features li {
        font-size: 1rem;
        margin-bottom: 0.8rem;
        padding: 0.5rem;
        display: flex;
        align-items: center;
        line-height: 1.4;
    }

    .features i {
        margin-right: 0.5rem;
        flex-shrink: 0;
    }

    /* İletişim Bölümü */
    .contact {
        padding: 2rem 1rem;
    }

    .contact h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .info-item {
        width: 100%;
        padding: 0.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .info-item i {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .contact-link {
        width: 100%;
        font-size: 0.95rem;
        padding: 0.8rem;
        margin: 0;
        text-align: center;
        line-height: 1.4;
    }

    /* Dil Seçici */
    .nav-links .language-selector {
        display: none; /* Mobilde menüdeki dil seçiciyi gizle */
    }

    .hero-language-selector {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin: 1.5rem 0;
    }

    .hero-language-selector .lang-btn {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(5px);
        border: 2px solid rgba(255, 215, 0, 0.3);
        color: #ffffff;
        padding: 0.8rem 1.5rem;
        border-radius: 25px;
        font-size: 1.1rem;
        font-weight: 500;
        transition: all 0.3s ease;
        min-width: 80px;
        text-align: center;
    }

    .hero-language-selector .lang-btn:hover,
    .hero-language-selector .lang-btn.active {
        background: #ffd700;
        border-color: #ffd700;
        color: #1a1a1a;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .hero-language-selector i {
        font-size: 1.3rem;
        color: #ffd700;
        margin-right: 0.5rem;
        vertical-align: middle;
    }

    /* Footer */
    footer {
        padding: 2rem 1rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-section {
        min-width: 100%;
    }

    .footer-bottom-links {
        gap: 1rem;
    }

    .footer-bottom-links a {
        font-size: 0.8rem;
        color: #ffd700;
        font-weight: 600;
    }
}

@media (min-width: 769px) {
    .hero-language-selector {
        display: none; /* Masaüstünde hero'daki dil seçiciyi gizle */
    }
}

/* Tablet Görünümü */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-content h2 {
        font-size: 2.5rem;
    }

    .button-group {
        gap: 2rem;
    }

    .contact-info {
        gap: 2rem;
    }
}

/* Mobil Menü Butonu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
}

.experience-text {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 1rem;
}

.language-selector .fa-globe {
    color: #ffd700;
    font-size: 1.2rem;
    margin-right: 5px;
}

.lang-btn {
    background: transparent;
    border: 2px solid #ffd700;
    color: #ffd700;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
    min-width: 45px;
    text-align: center;
}

.lang-btn:hover {
    background: #ffd700;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.lang-btn.active {
    background: #ffd700;
    color: #1a1a1a;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Mobil görünüm için düzenlemeler */
@media (max-width: 768px) {
    .language-selector {
        margin: 1rem 0;
        justify-content: center;
    }

    .lang-btn {
        padding: 8px 16px;
        font-size: 1rem;
        min-width: 50px;
    }
}

.map-link {
    color: #333;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.5rem;
    border-radius: 4px;
    position: relative;
}

.map-link:hover {
    color: #ffd700;
    background-color: rgba(255, 215, 0, 0.1);
}

.map-link::after {
    content: '\f3c5';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 0.5rem;
    font-size: 0.9rem;
    color: #ffd700;
}

.map-link:hover::after {
    animation: bounce 0.5s ease infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(3px);
    }
}

/* Blog Bölümü */
.blog {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, #f9f9f9, #ffffff);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.title-with-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.section-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.title-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.title-content h2 {
    font-size: 2.2rem;
    color: #333;
    margin: 0;
}

.title-content p {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
    padding-left: 1rem;
    border-left: 2px solid #ddd;
}

.blog-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.blog-image {
    position: relative;
    height: 200px;
    background: linear-gradient(45deg, #1a1a1a, #333);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blog-image i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image i {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    color: #666;
    font-size: 0.9rem;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-meta i {
    color: #ffd700;
}

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

.read-more {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.read-more::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.3s ease;
}

.read-more:hover {
    color: #ffd700;
    gap: 0.8rem;
}

.read-more:hover::after {
    width: 100%;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Blog Kartları İçin Özel Arkaplanlar */
.blog-card:nth-child(1) .blog-image {
    background: linear-gradient(45deg, #2193b0, #6dd5ed);
}

.blog-card:nth-child(2) .blog-image {
    background: linear-gradient(45deg, #f12711, #f5af19);
}

.blog-card:nth-child(3) .blog-image {
    background: linear-gradient(45deg, #4b6cb7, #182848);
}

@media (max-width: 768px) {
    .blog {
        padding: 3rem 1rem;
    }

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

    .blog-card {
        max-width: 100%;
    }

    .blog-image {
        height: 180px;
    }

    .blog-image i {
        font-size: 3rem;
    }

    .blog-content {
        padding: 1.5rem;
    }

    .blog-content h3 {
        font-size: 1.2rem;
    }

    .blog-meta {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .title-with-logo {
        gap: 1rem;
    }

    .section-logo {
        height: 35px;
    }

    .title-content h2 {
        font-size: 1.8rem;
    }

    .title-content p {
        font-size: 1rem;
        padding-left: 0.8rem;
    }
}

@media (max-width: 480px) {
    .title-with-logo {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .title-content {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .title-content p {
        border-left: none;
        padding-left: 0;
        width: 100%;
        margin-top: 0.5rem;
    }
}

/* Section başlıkları için ortak stil */
.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.section-title img {
    height: 35px;
    width: auto;
}

.section-title h2 {
    margin: 0;
    font-size: 2.2rem;
    color: #333;
}

@media (max-width: 768px) {
    .section-title {
        gap: 0.5rem;
    }

    .section-title img {
        height: 25px;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }
}

.payment-info {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    margin-top: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (min-width: 769px) {
    .payment-info {
        animation: pulsePayment 2s infinite;
    }
}

.payment-info:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.payment-info i {
    font-size: 1.8rem;
    color: #ffd700;
}

@media (min-width: 769px) {
    .payment-info i {
        animation: rotateCard 3s infinite;
    }
}

.payment-info span {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

@keyframes pulsePayment {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes rotateCard {
    0% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg); }
    100% { transform: rotateY(360deg); }
}

/* Mobil görünüm için düzenlemeler */
@media (max-width: 768px) {
    .payment-info {
        padding: 0.8rem 1.5rem;
        margin-top: 1.5rem;
    }

    .payment-info i {
        font-size: 1.5rem;
    }

    .payment-info span {
        font-size: 1rem;
    }
}

/* Çok küçük ekranlar için ek düzenlemeler */
@media (max-width: 480px) {
    .payment-info {
        padding: 0.7rem 1.2rem;
        gap: 0.6rem;
    }

    .payment-info i {
        font-size: 1.3rem;
    }

    .payment-info span {
        font-size: 0.9rem;
    }
}

/* Bildirim Animasyonları */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.notification.success {
    background: #4CAF50;
    color: white;
}

.notification.error {
    background: #f44336;
    color: white;
}

.notification i {
    font-size: 1.2rem;
}

/* Loading Göstergesi */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.loading-spinner i {
    font-size: 2.5rem;
    color: #ffd700;
}

.loading-spinner span {
    color: #333;
    font-size: 1.1rem;
}

/* Telefon numarası linklerinin kontrastını artır */
a[href^="tel:"] {
    color: #333;
    font-weight: 600;
}

a[href^="mailto:"] {
    color: #e0e0e0;
    font-weight: 600;
}

/* Konum Bilgi Kartı */
.location-info {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.address-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.address-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.address-header i {
    font-size: 2rem;
    color: #ffd700;
}

.address-header h3 {
    font-size: 1.5rem;
    color: #333;
    margin: 0;
}

.address-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.landmark-info {
    color: #666;
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.map-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.map-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffd700;
    color: #1a1a1a;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #ffd700;
}

.map-action-btn:hover {
    background: transparent;
    color: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.map-action-btn i {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .address-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .map-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .map-action-btn {
        width: 100%;
        justify-content: center;
        max-width: 250px;
    }
    
    .address-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .address-header i {
        font-size: 1.5rem;
    }
    
    .address-header h3 {
        font-size: 1.3rem;
    }
}

/* Hizmet Bölgesi Linkleri */
.service-area-link {
    color: #ffd700 !important;
    text-decoration: none !important;
    font-weight: 600;
    padding: 0.3rem 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.service-area-link:hover {
    color: #1a1a1a !important;
    background-color: #ffd700;
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.service-area-link:hover::before {
    content: '→';
    position: absolute;
    left: -15px;
    animation: arrowBounce 0.6s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(3px); }
}

/* Service areas list styling */
.service-areas li {
    margin: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.service-areas li i {
    color: #ffd700;
    font-size: 1.1rem;
    width: 20px;
}

/* Footer service area links */
.footer-section .service-area-link {
    color: #e0e0e0 !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

.footer-section .service-area-link:hover {
    color: #ffd700 !important;
    background-color: transparent;
    transform: translateX(8px);
}

.footer-section .service-area-link i {
    font-size: 0.9rem;
    color: #ffd700;
} 