/* Bu bloğun tamamını kopyalayın */
:root {
    --primary-blue: #1565C0;
    --dark-blue: #0D47A1;
    --light-blue: #E3F2FD;
    --accent-blue: #42A5F5;
    --whatsapp-green: #25D366;
    --whatsapp-dark-green: #128C7E;
    --text-dark: #212121;
    --text-light: #757575;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background-color: var(--white);
    color: var(--text-dark);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    border-bottom: 2px solid var(--light-blue);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.logo a {
    color: var(--primary-blue);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 50px;
    height: 50px;
    margin-right: 12px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 12px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(21, 101, 192, 0.4);
}

.logo-icon::before {
    content: "A";
    font-size: 30px;
    font-weight: 900;
    color: var(--white);
    position: absolute;
    left: 10px;
    opacity: 0.9;
    z-index: 2;
}

.logo-icon::after {
    content: "A";
    font-size: 30px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.8);
    position: absolute;
    right: 10px;
    opacity: 0.9;
    z-index: 2;
}

.logo-icon span {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.4) 50%, transparent 60%);
    animation: shine 3s infinite;
    z-index: 1;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 1001;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--primary-blue);
    border-radius: 5px;
    transition: var(--transition);
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.95rem;
    position: relative;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-blue);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-blue);
    transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.hero {
    background: linear-gradient(rgba(21, 101, 192, 0.85), rgba(13, 71, 161, 0.85)), url('https://images.unsplash.com/photo-156044807   6-3f6f44b6b4a0?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
    color: var(--white);
    padding: 130px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 40px;
    font-weight: 300;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--accent-blue);
}

.btn-accent:hover {
    background: #1E88E5;
}

.btn-whatsapp {
    background: var(--whatsapp-green);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: var(--whatsapp-dark-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

.btn-email {
    background: #D44638;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(212, 70, 56, 0.3);
}

.btn-email:hover {
    background: #B03529;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(212, 70, 56, 0.4);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--whatsapp-green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.floating-whatsapp i {
    font-size: 28px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.services {
    padding: 80px 0;
    background: var(--light-blue);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: var(--accent-blue);
}

.section-title p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary-blue);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.service-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.1);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-img::after {
    opacity: 1;
}

.service-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.service-content p {
    margin-bottom: 20px;
    color: var(--text-light);
    flex-grow: 1;
}

.why-us {
    padding: 80px 0;
    background: var(--white);
}

.advantages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.advantage {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 1px solid var(--light-blue);
    transition: var(--transition);
}

.advantage:hover {
    transform: translateY(-3px);
}

.advantage i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.advantage h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.advantage p {
    color: var(--text-light);
}

.contact {
    padding: 80px 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.contact-info {
    text-align: center;
}

.contact-info-item {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-info-item i {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.contact-info-item h3 {
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.contact-form {
    background: var(--light-blue);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-blue);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #BBDEFB;
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-control:focus {
    border-color: var(--accent-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(66, 165, 245, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.error-message {
    color: #d32f2f;
    font-size: 0.85rem;
    margin-top: 5px;
    min-height: 20px;
}

.form-feedback {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    display: none;
}

.form-feedback.success {
    background-color: #e8f5e9;
    color: #2e7d32;
    display: block;
}

.form-feedback.error {
    background-color: #ffebee;
    color: #d32f2f;
    display: block;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.map-container {
    margin-top: 50px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: 0;
    display: block;
}

footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
    display: flex;
    align-items: center;
}

.footer-logo-icon {
    width: 45px;
    height: 45px;
    margin-right: 12px;
    background: linear-gradient(135deg, #90CAF9, var(--accent-blue));
    border-radius: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(144, 202, 249, 0.3);
}

.footer-logo-icon::before {
    content: "A";
    font-size: 26px;
    font-weight: 900;
    color: var(--white);
    position: absolute;
    left: 9px;
    opacity: 0.9;
    z-index: 2;
}

.footer-logo-icon::after {
    content: "A";
    font-size: 26px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.8);
    position: absolute;
    right: 9px;
    opacity: 0.9;
    z-index: 2;
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    color: var(--white);
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #90CAF9;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #BBDEFB;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #BBDEFB;
}

/* Cookie Consent Styles */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent p {
    margin: 0 10px 10px 0;
    flex: 1;
    min-width: 300px;
}

.cookie-consent button {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    white-space: nowrap;
}

/* Mobile Navigation Styles */
@media (max-width: 767px) {
    .menu-toggle {
        display: flex;
    }
    
    nav ul {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        transition: var(--transition);
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    
    nav ul.active {
        left: 0;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid,
    .advantages,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        gap: 20px;
    }
    
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .floating-whatsapp i {
        font-size: 24px;
    }

    .contact-buttons {
        flex-direction: column;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .services-grid,
    .advantages {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .contact-buttons {
        flex-direction: row;
        justify-content: center;
    }
}
/* Bu kodları style.css dosyasının en sonuna ekleyin */

/* Sayfa Başlığı Stilleri (Blog) */
.page-header {
    background: var(--light-blue);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Blog Listeleme Stilleri */
.blog-section {
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.blog-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.blog-card-content p {
    color: var(--text-light);
    flex-grow: 1;
    margin-bottom: 20px;
}

/* Tekil Blog Yazısı Stilleri */
.post-content {
    padding-top: 60px;
    padding-bottom: 80px;
    max-width: 800px; /* Yazı alanını daraltarak okumayı kolaylaştırır */
}

.post-header {
    text-align: center;
    margin-bottom: 40px;
}

.post-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 25px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.post-meta span i {
    margin-right: 8px;
    color: var(--primary-blue);
}

.post-featured-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 40px;
}

.post-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.post-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.post-content ul {
    list-style-position: inside;
    padding-left: 20px;
    margin-bottom: 20px;
}

.post-content ul li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 10px;
}