/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Yeni Renk Paleti */
    --primary-black: #000000;
    --secondary-dark: #2C3E50;
    --accent-gold: #C9A026;
    --bg-light: #F7F7F7;
    --white: #FFFFFF;
    --cta-burgundy: #800020;
    
    /* Yardımcı Renkler */
    --text-color: #000000;
    --text-light: #2C3E50;
    --border-color: #E0E0E0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
    --gold-shadow: 0 4px 15px rgba(201, 160, 38, 0.3);
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
}

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

/* Icon Stilleri */
.icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    flex-shrink: 0;
}

.icon-large {
    width: 48px;
    height: 48px;
}

.icon-medium {
    width: 32px;
    height: 32px;
}

.icon-primary {
    color: var(--primary-black);
}

.icon-accent {
    color: var(--accent-gold);
}

.icon-white {
    color: var(--white);
}

/* Header ve Navigation */
header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--accent-gold);
}

.navbar {
    padding: 1.2rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo .icon {
    color: var(--accent-gold);
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--primary-black);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--secondary-dark);
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-black);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-gold);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-black);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(201,160,38,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.3px;
}

.btn-primary {
    background-color: var(--cta-burgundy);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(128, 0, 32, 0.3);
}

.btn-primary:hover {
    background-color: #6B001A;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(128, 0, 32, 0.4);
}

.btn-primary .icon {
    color: var(--white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-black);
    border: 2px solid var(--primary-black);
}

.btn-secondary:hover {
    background-color: var(--primary-black);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-secondary .icon {
    color: inherit;
}

/* Services Section */
.services-preview {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-black);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.services-preview h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--accent-gold);
    margin: 1.5rem auto;
}

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

.service-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent-gold);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), transparent);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--cta-burgundy);
}

.service-card .icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
}

.service-card h3 {
    color: var(--primary-black);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

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

/* About Preview */
.about-preview {
    padding: 80px 0;
    background-color: var(--white);
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.about-content h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--accent-gold);
    margin-top: 1rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Contact Preview */
.contact-preview {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.contact-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-black);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.contact-preview h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--accent-gold);
    margin: 1.5rem auto;
}

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

.contact-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent-gold);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-left-color: var(--cta-burgundy);
}

.contact-item .icon {
    color: var(--accent-gold);
    margin-bottom: 8px;
}

.contact-item strong {
    display: flex;
    align-items: center;
    color: var(--primary-black);
    font-size: 1.1rem;
    font-weight: 700;
}

.contact-item a,
.contact-item p {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    margin: 0;
}

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(201,160,38,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
    font-weight: 300;
}

/* About Detail */
.about-detail {
    padding: 80px 0;
    background-color: var(--white);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.about-image {
    position: sticky;
    top: 100px;
}

.image-placeholder {
    background: linear-gradient(135deg, var(--primary-black), var(--secondary-dark));
    height: 450px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(201, 160, 38, 0.2) 50%, transparent 70%);
}

.image-placeholder span {
    position: relative;
    z-index: 1;
}

.about-text-detail h2 {
    color: var(--primary-black);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.about-text-detail h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--accent-gold);
    margin-top: 1rem;
}

.about-text-detail h3 {
    color: var(--primary-black);
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.about-text-detail h3::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 24px;
    background-color: var(--accent-gold);
    margin-right: 12px;
    vertical-align: middle;
}

.about-text-detail p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: 1.05rem;
}

.intro {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--primary-black);
    line-height: 1.8;
}

.contact-cta {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    margin-top: 3rem;
    border-left: 4px solid var(--accent-gold);
}

.contact-cta h3 {
    margin-top: 0;
    color: var(--primary-black);
    font-weight: 700;
}

.contact-cta .btn-primary,
.contact-cta .btn-secondary {
    margin-right: 1rem;
    margin-top: 1rem;
}

/* Why Choose */
.why-choose {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.why-choose h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-black);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.why-choose h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--accent-gold);
    margin: 1.5rem auto 3rem;
}

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

.feature-item {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent-gold);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.feature-item .icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.5rem;
    color: var(--accent-gold);
}

.feature-item h3 {
    color: var(--primary-black);
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.3rem;
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Services Detail */
.services-detail {
    padding: 80px 0;
    background-color: var(--white);
}

.service-detail-card {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 2.5rem;
    border-left: 4px solid var(--accent-gold);
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    box-shadow: var(--shadow-hover);
    border-left-color: var(--cta-burgundy);
}

.service-detail-card h2 {
    color: var(--primary-black);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-detail-card h2::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 32px;
    background-color: var(--accent-gold);
}

.service-detail-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: 1.05rem;
}

.service-detail-card ul {
    list-style: none;
    padding-left: 0;
}

.service-detail-card li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.8;
}

.service-detail-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 1.2rem;
}

.cta-section {
    margin-top: 4rem;
    padding: 3.5rem;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-dark) 100%);
    border-radius: 12px;
    text-align: center;
    color: var(--white);
}

.cta-section h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-section .btn-primary {
    margin-right: 1rem;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info-detail h2 {
    color: var(--primary-black);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.contact-info-detail h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--accent-gold);
    margin-top: 1rem;
}

.contact-box {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-item-detail {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.contact-item-detail:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-item-detail h3 {
    color: var(--primary-black);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item-detail .icon {
    color: var(--accent-gold);
}

.contact-item-detail p,
.contact-item-detail a {
    color: var(--text-light);
    text-decoration: none;
    line-height: 1.9;
    font-size: 1.05rem;
}

.contact-item-detail a:hover {
    color: var(--primary-black);
}

/* Forms */
.contact-form-wrapper,
.consultation-form-wrapper {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--accent-gold);
}

.contact-form-wrapper h2,
.consultation-form-wrapper h3 {
    color: var(--primary-black);
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.contact-form-wrapper h2::after,
.consultation-form-wrapper h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
    margin-top: 1rem;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--primary-black);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: var(--white);
    color: var(--text-color);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(201, 160, 38, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1.2rem;
    border-radius: 6px;
    display: none;
    font-weight: 500;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    display: block;
    border-left: 4px solid #28a745;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    display: block;
    border-left: 4px solid #dc3545;
}

/* Consultation Section */
.consultation-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.consultation-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.consultation-info h2 {
    color: var(--primary-black);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.consultation-info h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--accent-gold);
    margin-top: 1rem;
}

.consultation-info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: 1.05rem;
}

.consultation-benefits {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    margin: 2.5rem 0;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent-gold);
}

.consultation-benefits h3 {
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.5rem;
}

.consultation-benefits ul {
    list-style: none;
    padding-left: 0;
}

.consultation-benefits li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.8;
}

.consultation-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 1.2rem;
}

.consultation-note {
    background-color: #FFF9E6;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-gold);
    box-shadow: var(--shadow);
}

.consultation-note p {
    margin: 0;
    color: var(--text-color);
    font-weight: 500;
}

.consultation-note a {
    color: var(--cta-burgundy);
    text-decoration: none;
    font-weight: 600;
}

.consultation-note a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: var(--primary-black);
    color: var(--white);
    padding: 4rem 0 1.5rem;
    margin-top: 4rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.footer-section h3::after,
.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-gold);
}

.footer-section p {
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section .icon {
    color: var(--accent-gold);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent-gold);
}

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

/* Blog List Styles */
.blog-list {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.blog-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent-gold);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--cta-burgundy);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-dark) 100%);
}

.blog-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0.8;
}

.blog-card-content {
    padding: 2rem;
}

.blog-card-category {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: var(--accent-gold);
    color: var(--primary-black);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.blog-card h2 {
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.blog-card h2 a {
    color: var(--primary-black);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card h2 a:hover {
    color: var(--cta-burgundy);
}

.blog-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.blog-card-meta span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.read-more {
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.read-more:hover {
    color: var(--cta-burgundy);
}

/* Blog Content Styles */
.blog-content {
    padding: 80px 0;
    background-color: var(--white);
}

.blog-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.blog-main {
    background-color: var(--white);
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.blog-date,
.blog-category {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
}

.blog-category {
    color: var(--accent-gold);
    font-weight: 600;
}

.blog-body {
    color: var(--text-color);
    line-height: 1.9;
}

.blog-body h2 {
    color: var(--primary-black);
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.blog-body h2:first-child {
    margin-top: 0;
}

.blog-body h3 {
    color: var(--primary-black);
    font-size: 1.6rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.blog-body h3::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 24px;
    background-color: var(--accent-gold);
    margin-right: 12px;
    vertical-align: middle;
}

.blog-body h4 {
    color: var(--secondary-dark);
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.blog-body p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.9;
}

.blog-body ul,
.blog-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    color: var(--text-light);
}

.blog-body li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.blog-body ul li {
    list-style-type: disc;
}

.blog-body ol li {
    list-style-type: decimal;
}

.blog-body strong {
    color: var(--primary-black);
    font-weight: 700;
}

.blog-cta {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-dark) 100%);
    padding: 3rem;
    border-radius: 12px;
    margin-top: 3rem;
    text-align: center;
    color: var(--white);
}

.blog-cta h3 {
    color: var(--white);
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.blog-cta h3::before {
    display: none;
}

.blog-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.blog-cta .btn-primary,
.blog-cta .btn-secondary {
    margin: 0 0.5rem;
}

.blog-cta .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

.blog-cta .btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-black);
}

/* WhatsApp Button - Sadece Mobilde Görünür */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: none; /* Varsayılan olarak gizli - sadece mobilde görünecek */
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-button svg {
    width: 30px;
    height: 30px;
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: left;
        transition: 0.3s;
        box-shadow: var(--shadow-hover);
        padding: 2rem;
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .hero {
        padding: 60px 0;
    }

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

    .hero-content p {
        font-size: 1.1rem;
    }

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

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

    .about-image {
        position: static;
        margin-bottom: 2rem;
    }

    .image-placeholder {
        height: 300px;
    }

    .contact-wrapper,
    .consultation-wrapper {
        grid-template-columns: 1fr;
    }

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

    .whatsapp-button {
        display: flex !important; /* Mobilde görünür */
    }

    .page-header {
        padding: 60px 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .services-preview,
    .about-preview,
    .contact-preview,
    .about-detail,
    .why-choose,
    .services-detail,
    .contact-section,
    .consultation-section {
        padding: 60px 0;
    }

    h2 {
        font-size: 2rem !important;
    }
}

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

    .hero {
        padding: 40px 0;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }

    .contact-form-wrapper,
    .consultation-form-wrapper {
        padding: 2rem;
    }

    .service-card,
    .service-detail-card {
        padding: 1.5rem;
    }

    .blog-content {
        padding: 60px 0;
    }

    .blog-body h2 {
        font-size: 1.6rem;
    }

    .blog-body h3 {
        font-size: 1.4rem;
    }

    .blog-body h4 {
        font-size: 1.2rem;
    }

    .blog-cta {
        padding: 2rem;
    }

    .blog-cta .btn-primary,
    .blog-cta .btn-secondary {
        width: 100%;
        margin: 0.5rem 0;
    }

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

    .blog-list {
        padding: 60px 0;
    }
}
