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

:root {
    --primary-color: #0D0D0D;
    --secondary-color: #C9A227;
    --text-color: #2B2B2B;
    --light-bg: #F7F4EE;
    --white: #FFFFFF;
    --dark-text: #0D0D0D;
    --border-color: #E6E1D5;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Segoe UI', serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

/* Header ve Navigation */
.header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.logo .subtitle {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--secondary-color);
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

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

.nav-menu a:hover {
    color: var(--secondary-color);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

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

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

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2A2A2A 100%);
    color: var(--white);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: heroFadeIn 1s ease-out;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 120"><path d="M0,64L48,80C96,96,192,128,288,128C384,128,480,96,576,90.7C672,85,768,107,864,112C960,117,1056,107,1152,101.3C1248,96,1344,96,1392,96L1440,96L1440,120L1392,120C1344,120,1248,120,1152,120C1056,120,960,120,864,120C768,120,672,120,576,120C480,120,384,120,288,120C192,120,96,120,48,120L0,120Z" fill="rgba(255,255,255,0.05)"></path></svg>');
    background-repeat: repeat-x;
    animation: wave 15s linear infinite;
}

@keyframes wave {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(100%);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    animation: slideInDown 0.8s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 300;
    animation: slideInUp 0.8s ease-out 0.2s both;
}

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

.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--dark-text);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 14px;
    animation: slideInUp 0.8s ease-out 0.4s both;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    background-color: #A8841C;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    width: 100%;
    animation: fadeInScale 0.8s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color), var(--secondary-color));
    margin: 0 auto;
    animation: expandWidth 0.8s ease-out 0.2s both;
}

@keyframes expandWidth {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 80px;
        opacity: 1;
    }
}

/* Hakkında Section */
.about {
    padding: 100px 0;
    background-color: var(--white);
}

.about-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 50px;
}

.about-content p {
    margin-bottom: 20px;
    text-align: justify;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.expertise-card {
    background: linear-gradient(135deg, var(--primary-color), #2A2A2A);
    color: var(--white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.expertise-card:hover::before {
    left: 100%;
}

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

.expertise-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.expertise-card p {
    font-size: 14px;
    line-height: 1.6;
}

/* Departmanlar Section */
.departments {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.department-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 5px solid var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.department-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color), var(--secondary-color));
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

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

.department-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.department-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}

.department-card p {
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 15px;
}

.department-list {
    list-style: none;
    padding-left: 0;
}

.department-list li {
    padding: 8px 0;
    padding-left: 25px;
    color: var(--text-color);
    position: relative;
    font-size: 14px;
}

.department-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* İletişim Section */
.contact {
    padding: 100px 0;
    background-color: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-item {
    padding: 20px;
    border-left: 4px solid var(--secondary-color);
    background: linear-gradient(to right, rgba(201, 162, 39, 0.05), transparent);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-item h3 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-item p {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.8;
}

.info-item a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--primary-color);
}

/* Harita Styles */
.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 3px solid var(--secondary-color);
}

.map-container:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.map-container iframe {
    transition: all 0.3s ease;
}

.map-container:hover iframe {
    filter: brightness(1.05);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color), #2A2A2A);
    color: var(--white);
    padding: 60px 0 30px;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    text-align: left;
}

.footer-section h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

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

.footer-section ul li a {
    position: relative;
    padding-left: 15px;
}

.footer-section ul li a::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

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

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

.social-link.facebook:hover {
    background-color: #1877f2;
    border-color: #0a66c2;
}

.social-link.youtube:hover {
    background-color: #FF0000;
    border-color: #cc0000;
}

.social-link.x:hover {
    background-color: #000000;
    border-color: #ffffff;
}

.social-link.tiktok:hover {
    background: linear-gradient(45deg, #25F4EE 0%, #000000 50%, #FE2C55 100%);
    border-color: #000000;
}

.social-link.whatsapp:hover {
    background-color: #25d366;
    border-color: #128c7e;
}

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

.footer-bottom p {
    margin: 10px 0;
    font-size: 13px;
}

.footer-bottom p:first-child {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-bottom p:last-child {
    color: var(--secondary-color);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
}

/* WhatsApp Button */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #25d366;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    margin-top: 15px;
    transition: all 0.3s ease;
    border: 2px solid #25d366;
}

.whatsapp-btn:hover {
    background-color: #1fbb5d;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    border-color: #1fbb5d;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background-color: #25d366;
    color: var(--white);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #1fbb5d;
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        z-index: 99;
    }

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

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .contact-wrapper {
        gap: 40px;
    }

    .map-container {
        min-height: 400px;
    }

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

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

    .nav-menu a {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 20px;
    }

    .hero {
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 14px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 12px;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .about {
        padding: 60px 0;
    }

    .departments {
        padding: 60px 0;
    }

    .contact {
        padding: 60px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-section {
        text-align: center;
    }

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

    .whatsapp-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .header,
    .cta-button,
    .footer {
        display: none;
    }
}

/* Blog: Ana Sayfa Önizleme */
.blog-preview {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.blog-preview-grid,
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.blog-preview-card,
.blog-card {
    display: block;
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--secondary-color);
    text-decoration: none;
    color: inherit;
}

.blog-preview-card:hover,
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.blog-preview-category,
.blog-card-category {
    display: inline-block;
    background-color: rgba(201, 162, 39, 0.12);
    color: var(--secondary-color);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.blog-preview-card h3,
.blog-card h2 {
    font-size: 19px;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-preview-card p,
.blog-card p {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 12px;
}

.blog-card-date {
    font-size: 12px;
    color: #999;
}

.blog-preview-more {
    text-align: center;
    margin-top: 40px;
}

.blog-preview-more a {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
}

.blog-preview-more a:hover {
    color: var(--primary-color);
}

.blog-preview-empty {
    text-align: center;
    color: var(--text-color);
    font-size: 15px;
}

/* Blog: Liste Sayfası */
.blog-list-page {
    padding: 100px 0;
    background-color: var(--white);
    min-height: 50vh;
}

/* Blog: Tekil Makale Sayfası */
.blog-post {
    padding: 100px 0;
    background-color: var(--white);
}

.blog-post-header {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.blog-post-header h1 {
    font-size: 38px;
    color: var(--primary-color);
    margin: 15px 0;
    line-height: 1.3;
}

.blog-post-date {
    color: #999;
    font-size: 14px;
}

.blog-post-body {
    max-width: 760px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-color);
}

.blog-post-body h2 {
    font-size: 26px;
    color: var(--primary-color);
    margin: 45px 0 18px;
}

.blog-post-body h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin: 30px 0 12px;
}

.blog-post-body p {
    margin-bottom: 20px;
}

.blog-post-body ul,
.blog-post-body ol {
    margin: 0 0 20px 20px;
}

.blog-post-body li {
    margin-bottom: 8px;
}

.blog-post-body a {
    color: var(--secondary-color);
    font-weight: 600;
}

.blog-post-body a:hover {
    color: var(--primary-color);
}

.blog-post-back {
    max-width: 760px;
    margin: 50px auto 0;
}

.blog-post-back a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.blog-post-back a:hover {
    color: var(--primary-color);
}

@media (max-width: 480px) {
    .blog-post-header h1 {
        font-size: 26px;
    }
}

.hidden {
    display: none !important;
}
