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

:root {
    --primary-green: #0D4C3B;
    --gold: #D4AF37;
    --light-gold: #F4E4C1;
    --dark: #0A0A0A;
    --off-white: #FAFAF8;
}

html { scroll-behavior: smooth; }
body { font-family: Georgia, serif; background: var(--off-white); color: var(--dark); line-height: 1.7; overflow-x: hidden; }

header { position: fixed; top: 0; width: 100%; background: rgba(10,10,10,0.95); z-index: 1000; border-bottom: 1px solid var(--gold); }
nav { max-width: 1400px; margin: 0 auto; padding: 1.2rem 2rem; display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.8rem; font-weight: bold; color: var(--gold); text-transform: uppercase; letter-spacing: 3px; }
nav ul { display: flex; list-style: none; gap: 2.5rem; }
nav a { color: var(--off-white); text-decoration: none; transition: all 0.3s; position: relative; }
nav a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.3s; }
nav a:hover::after { width: 100%; }

.hero { min-height: 100vh; background: linear-gradient(135deg, var(--primary-green), var(--dark)); display: flex; align-items: center; justify-content: center; text-align: center; padding: 150px 2rem 100px; position: relative; overflow: hidden; }
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(45deg, transparent 48%, rgba(212, 175, 55, 0.05) 49%, rgba(212, 175, 55, 0.05) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(212, 175, 55, 0.05) 49%, rgba(212, 175, 55, 0.05) 51%, transparent 52%);
    background-size: 60px 60px;
    opacity: 0.3;
    z-index: 1;
}
.hero-content { max-width: 900px; animation: fadeInUp 1s; position: relative; z-index: 2; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero h1 { font-size: 4rem; color: var(--gold); margin-bottom: 1rem; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
.hero .subtitle { font-size: 1.5rem; color: var(--light-gold); margin-bottom: 2rem; font-style: italic; }

.cta-buttons { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.btn { padding: 1rem 2.5rem; border-radius: 5px; font-size: 1.1rem; cursor: pointer; transition: all 0.3s; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: none; font-family: inherit; }
.btn-primary { background: var(--gold); color: var(--dark); font-weight: bold; }
.btn-primary:hover { background: var(--light-gold); transform: translateY(-3px); box-shadow: 0 10px 25px rgba(212,175,55,0.3); }
.btn-secondary { background: transparent; color: var(--off-white); border: 2px solid var(--gold); }
.btn-secondary:hover { background: var(--gold); color: var(--dark); transform: translateY(-3px); }

.trust-section { padding: 4rem 2rem; }
.trust-indicators { display: flex; justify-content: center; flex-wrap: wrap; gap: 3rem; margin: 0 auto; padding: 3rem 2rem; background: white; border-radius: 10px; box-shadow: 0 5px 20px rgba(0,0,0,0.08); max-width: 1200px; }
.indicator { text-align: center; min-width: 150px; }
.indicator-number { font-size: 3rem; font-weight: bold; color: var(--primary-green); display: block; }
.indicator-label { color: #8B6F47; margin-top: 0.5rem; }

.story { background: linear-gradient(135deg, var(--primary-green), #0A3D2F); color: var(--off-white); padding: 5rem 2rem; }
.story-content { max-width: 900px; margin: 0 auto; text-align: center; }
.story h2 { color: var(--gold); font-size: 2.5rem; margin-bottom: 2rem; }
.story p { font-size: 1.3rem; line-height: 2; margin-bottom: 1.5rem; }

.section-wrapper { padding: 6rem 2rem; }
.section-container { max-width: 1400px; margin: 0 auto; }
.section-title { text-align: center; font-size: 3rem; color: var(--primary-green); margin-bottom: 1rem; position: relative; }
.section-title::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 80px; height: 3px; background: var(--gold); }
.section-subtitle { text-align: center; font-size: 1.2rem; color: #8B6F47; margin-bottom: 4rem; font-style: italic; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2.5rem; }
.service-card { background: white; border-radius: 10px; padding: 2.5rem; box-shadow: 0 5px 20px rgba(0,0,0,0.08); transition: all 0.3s; border-top: 4px solid var(--gold); }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(13,76,59,0.2); }
.service-icon { font-size: 3rem; margin-bottom: 1rem; }
.service-card h3 { color: var(--primary-green); font-size: 1.6rem; margin-bottom: 1rem; }
.service-card p { color: #555; line-height: 1.8; }

.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; }
.portfolio-item { position: relative; height: 400px; border-radius: 15px; overflow: hidden; cursor: pointer; box-shadow: 0 10px 30px rgba(0,0,0,0.15); transition: all 0.4s; }
.portfolio-item:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 20px 50px rgba(13,76,59,0.3); }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.portfolio-item:hover img { transform: scale(1.1); }
.portfolio-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(10,10,10,0.95), transparent); padding: 2rem; transform: translateY(20px); opacity: 0; transition: all 0.4s; }
.portfolio-item:hover .portfolio-overlay { transform: translateY(0); opacity: 1; }
.portfolio-overlay h3 { color: var(--gold); font-size: 2rem; margin-bottom: 0.5rem; }
.portfolio-overlay p { color: var(--off-white); font-size: 1.1rem; }

.modal { display: none; position: fixed; z-index: 2000; inset: 0; background: rgba(0,0,0,0.95); overflow: auto; }
.modal-content { position: relative; margin: 3rem auto; padding: 2rem; max-width: 1200px; }
.modal-close { position: absolute; top: 1rem; right: 2rem; color: var(--gold); font-size: 3rem; font-weight: bold; cursor: pointer; transition: all 0.3s; z-index: 2001; }
.modal-close:hover { color: var(--light-gold); transform: rotate(90deg); }
.gallery-images { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin: 2rem 0; }
.gallery-image { height: 300px; border-radius: 10px; overflow: hidden; cursor: pointer; transition: all 0.3s; }
.gallery-image:hover { transform: scale(1.05); box-shadow: 0 10px 30px rgba(212,175,55,0.4); }
.gallery-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.gallery-image:hover img { transform: scale(1.1); }
.gallery-nav { display: flex; justify-content: center; align-items: center; gap: 2rem; margin-top: 2rem; }
.gallery-btn { background: var(--gold); color: var(--dark); border: none; padding: 1rem 2rem; font-size: 1.1rem; border-radius: 5px; cursor: pointer; transition: all 0.3s; font-weight: bold; }
.gallery-btn:hover { background: var(--light-gold); transform: translateY(-3px); }

/* Blog Preview Styles */
.blog-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2rem; }
.blog-preview-card { background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.08); transition: all 0.3s; }
.blog-preview-card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(13,76,59,0.2); }
.blog-preview-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-preview-card h3 { color: var(--primary-green); padding: 1.5rem 1.5rem 1rem; font-size: 1.4rem; }
.blog-preview-card p { color: #666; padding: 0 1.5rem 1rem; line-height: 1.6; }
.blog-read-more { display: inline-block; padding: 0.8rem 1.5rem; margin: 0 1.5rem 1.5rem; background: var(--gold); color: var(--dark); text-decoration: none; border-radius: 6px; font-weight: 600; transition: all 0.3s; }
.blog-read-more:hover { background: var(--primary-green); color: white; }

/* Blog Pages */
.blog-hero { min-height: 40vh; background: linear-gradient(135deg, var(--primary-green), var(--dark)); display: flex; align-items: center; justify-content: center; text-align: center; padding: 150px 2rem 100px; }
.blog-hero-content h1 { font-size: 3rem; color: var(--gold); margin-bottom: 1rem; }
.blog-hero-content p { font-size: 1.3rem; color: var(--light-gold); }

.blog-section { padding: 4rem 2rem; background: #f5f5f5; }
.blog-container { max-width: 1200px; margin: 0 auto; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 2.5rem; }
.blog-card { background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.08); transition: all 0.3s; }
.blog-card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(13,76,59,0.2); }
.blog-image { height: 250px; overflow: hidden; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.blog-card:hover .blog-image img { transform: scale(1.1); }
.blog-content { padding: 2rem; }
.blog-meta { display: flex; gap: 1.5rem; margin-bottom: 1rem; font-size: 0.9rem; color: #999; }
.blog-content h2 { margin-bottom: 1rem; }
.blog-content h2 a { color: var(--primary-green); text-decoration: none; transition: color 0.3s; }
.blog-content h2 a:hover { color: var(--gold); }
.blog-excerpt { color: #666; line-height: 1.6; margin-bottom: 1rem; }
.read-more { display: inline-block; color: var(--gold); font-weight: 600; text-decoration: none; transition: all 0.3s; }
.read-more:hover { color: var(--primary-green); transform: translateX(5px); }

.empty-blog { text-align: center; padding: 4rem 2rem; background: white; border-radius: 12px; }
.empty-blog h2 { color: var(--primary-green); margin: 1rem 0; }
.empty-blog p { color: #666; }

.pagination { display: flex; justify-content: center; align-items: center; gap: 2rem; margin-top: 3rem; }
.pagination-btn { background: var(--gold); color: var(--dark); padding: 0.8rem 1.5rem; border-radius: 6px; text-decoration: none; font-weight: 600; transition: all 0.3s; }
.pagination-btn:hover { background: var(--primary-green); color: white; }
.pagination-info { color: var(--primary-green); font-weight: 600; }

/* Blog Post Page */
.blog-post { padding: 8rem 2rem 4rem; max-width: 900px; margin: 0 auto; }
.post-container { background: white; padding: 3rem; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.08); }
.breadcrumb { color: #999; margin-bottom: 2rem; font-size: 0.9rem; }
.breadcrumb a { color: var(--gold); text-decoration: none; }
.post-header h1 { color: var(--primary-green); font-size: 2.5rem; margin-bottom: 1.5rem; line-height: 1.3; }
.post-meta { display: flex; gap: 2rem; flex-wrap: wrap; color: #999; font-size: 0.95rem; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 2px solid #f0f0f0; }
.post-featured-image { margin-bottom: 3rem; border-radius: 12px; overflow: hidden; }
.post-featured-image img { width: 100%; height: auto; display: block; }
.post-content { font-size: 1.1rem; line-height: 1.9; color: #333; }
.post-content h2 { color: var(--primary-green); margin: 2rem 0 1rem; font-size: 2rem; }
.post-content h3 { color: var(--primary-green); margin: 1.5rem 0 1rem; font-size: 1.5rem; }
.post-content p { margin-bottom: 1.5rem; }
.post-content ul, .post-content ol { margin: 1.5rem 0 1.5rem 2rem; }
.post-content li { margin-bottom: 0.8rem; }
.post-content strong { color: var(--dark); }
.post-content a { color: var(--gold); text-decoration: underline; }
.post-content a:hover { color: var(--primary-green); }

.post-footer { margin-top: 3rem; }
.share-buttons { text-align: center; padding: 2rem; background: #f9f9f9; border-radius: 12px; margin-bottom: 2rem; }
.share-buttons h4 { color: var(--primary-green); margin-bottom: 1rem; }
.share-btn { display: inline-block; padding: 0.8rem 1.5rem; margin: 0.5rem; border-radius: 6px; text-decoration: none; font-weight: 600; transition: all 0.3s; }
.share-btn.whatsapp { background: #25D366; color: white; }
.share-btn.facebook { background: #1877f2; color: white; }
.share-btn.twitter { background: #1da1f2; color: white; }
.share-btn:hover { transform: translateY(-3px); opacity: 0.9; }

.cta-box { background: linear-gradient(135deg, var(--primary-green), #0A3D2F); color: white; padding: 3rem; border-radius: 12px; text-align: center; }
.cta-box h3 { color: var(--gold); font-size: 2rem; margin-bottom: 1rem; }
.cta-box p { color: var(--light-gold); margin-bottom: 2rem; }

.related-posts { margin-top: 3rem; }
.related-posts h3 { color: var(--primary-green); margin-bottom: 1.5rem; font-size: 1.8rem; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 350px)); gap: 1.5rem; justify-content: start; }
.related-card { display: block; background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 3px 10px rgba(0,0,0,0.1); text-decoration: none; transition: all 0.3s; }
.related-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(13,76,59,0.2); }
.related-card img { width: 100%; height: 150px; object-fit: cover; }
.related-card h4 { color: var(--primary-green); padding: 1rem; font-size: 1.1rem; }

.areas { background: var(--light-gold); padding: 5rem 2rem; }
.areas-container { max-width: 1200px; margin: 0 auto; }
.cities { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.city-tag { background: white; padding: 1.2rem 1.5rem; border-radius: 8px; text-align: center; font-weight: bold; color: var(--primary-green); border-left: 4px solid var(--gold); transition: all 0.3s; box-shadow: 0 3px 10px rgba(0,0,0,0.05); }
.city-tag:hover { transform: scale(1.05); box-shadow: 0 8px 20px rgba(13,76,59,0.15); }
.city-tag::before { content: "📍 "; }

.contact { background: var(--dark); color: var(--off-white); padding: 5rem 2rem; }
.contact-container { max-width: 1200px; margin: 0 auto; }
.contact h2 { color: var(--gold); text-align: center; font-size: 2.5rem; margin-bottom: 3rem; }

/* İletişim Bilgileri Kartları */
.contact-info-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.contact-card { background: rgba(255,255,255,0.05); padding: 1.5rem; border-radius: 12px; border: 1px solid rgba(212,175,55,0.3); text-align: center; transition: all 0.3s; }
.contact-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.08); border-color: var(--gold); }
.contact-icon { font-size: 2.5rem; display: block; margin-bottom: 1rem; }
.contact-card h4 { color: var(--gold); font-size: 1.1rem; margin-bottom: 0.5rem; }
.contact-card a { color: var(--off-white); text-decoration: none; transition: color 0.3s; }
.contact-card a:hover { color: var(--gold); }
.contact-card span { color: var(--off-white); font-size: 0.95rem; line-height: 1.5; }

/* Teklif Formu */
.contact-form { background: rgba(255,255,255,0.05); padding: 3rem; border-radius: 12px; border: 1px solid rgba(212,175,55,0.3); max-width: 800px; margin: 0 auto; }
.contact-form h3 { color: var(--gold); text-align: center; font-size: 1.8rem; margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; color: var(--gold); font-weight: bold; }
.form-group input, .form-group textarea { width: 100%; padding: 1rem; border: 1px solid rgba(212,175,55,0.3); border-radius: 5px; background: rgba(255,255,255,0.1); color: var(--off-white); font-family: inherit; font-size: 1rem; }
.form-group textarea { min-height: 150px; resize: vertical; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,0.15); }

.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background: #25D366; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; box-shadow: 0 5px 20px rgba(37,211,102,0.4); z-index: 999; cursor: pointer; transition: all 0.3s; text-decoration: none; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.6); }

footer { background: var(--dark); color: var(--off-white); text-align: center; padding: 2rem; border-top: 1px solid var(--gold); }
footer p { margin-bottom: 0.5rem; }

.mobile-menu-btn { display: none; background: none; border: none; color: var(--gold); font-size: 1.8rem; cursor: pointer; }

/* Category Detail Page */
.category-hero { min-height: 50vh; background: linear-gradient(135deg, var(--primary-green), var(--dark)); display: flex; align-items: center; justify-content: center; text-align: center; padding: 150px 2rem 80px; }
.category-hero-content { max-width: 900px; animation: fadeInUp 1s; }
.category-hero h1 { font-size: 3.5rem; color: var(--gold); margin-bottom: 1rem; }
.category-hero p { font-size: 1.3rem; color: var(--light-gold); line-height: 1.8; }
.breadcrumb { color: var(--light-gold); margin-bottom: 1.5rem; font-size: 0.95rem; }
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

.gallery-section { padding: 4rem 2rem; background: #f5f5f5; }
.gallery-container { max-width: 1400px; margin: 0 auto; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 2rem; }
.gallery-item { position: relative; height: 350px; border-radius: 15px; overflow: hidden; cursor: pointer; box-shadow: 0 5px 20px rgba(0,0,0,0.1); transition: all 0.3s; }
.gallery-item:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(13,76,59,0.2); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(10,10,10,0.95), transparent); padding: 2rem; color: white; transform: translateY(20px); opacity: 0; transition: all 0.4s; }
.gallery-item:hover .gallery-item-overlay { transform: translateY(0); opacity: 1; }
.gallery-item-overlay h3 { color: var(--gold); font-size: 1.5rem; margin-bottom: 0.5rem; }
.gallery-item-overlay p { color: var(--off-white); font-size: 0.95rem; }

.empty-gallery { text-align: center; padding: 5rem 2rem; background: white; border-radius: 15px; }
.empty-gallery h2 { color: var(--primary-green); margin: 1rem 0; }
.empty-gallery p { color: #666; font-size: 1.1rem; }

/* Lightbox */
.lightbox-content { position: relative; display: flex; align-items: center; justify-content: center; min-height: 80vh; }
.lightbox-image-container { max-width: 1000px; width: 100%; }
.lightbox-image-container img { width: 100%; max-height: 70vh; object-fit: contain; border-radius: 12px; }
.lightbox-info { background: rgba(10,10,10,0.9); padding: 2rem; border-radius: 12px; margin-top: 1rem; color: white; }
.lightbox-info h2 { color: var(--gold); margin-bottom: 1rem; }
.lightbox-info p { color: var(--off-white); line-height: 1.6; margin-bottom: 0.5rem; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(212,175,55,0.9); color: var(--dark); border: none; padding: 1.5rem 2rem; font-size: 2rem; cursor: pointer; border-radius: 8px; transition: all 0.3s; font-weight: bold; z-index: 10; }
.lightbox-nav:hover { background: var(--gold); transform: translateY(-50%) scale(1.1); }
.lightbox-nav.prev { left: 2rem; }
.lightbox-nav.next { right: 2rem; }
.lightbox-counter { text-align: center; margin-top: 1rem; color: var(--gold); font-size: 1.2rem; font-weight: 600; }

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .blog-preview-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-info-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    html, body { overflow-x: hidden !important; max-width: 100vw !important; width: 100% !important; position: relative !important; }
    section, div, header, footer, main { max-width: 100vw !important; box-sizing: border-box !important; }
    .hero { width: 100% !important; max-width: 100vw !important; padding: 150px 1rem 100px !important; box-sizing: border-box !important; }
    .trust-section { width: 100% !important; max-width: 100vw !important; padding: 2rem 0 !important; box-sizing: border-box !important; }
    .trust-indicators { width: 100% !important; max-width: 100vw !important; padding: 2rem 1rem !important; margin: 0 !important; box-sizing: border-box !important; }
    .story { width: 100% !important; max-width: 100vw !important; padding: 3rem 1rem !important; box-sizing: border-box !important; }
    .section-wrapper, .contact { width: 100% !important; max-width: 100vw !important; padding-left: 1rem !important; padding-right: 1rem !important; box-sizing: border-box !important; }
    .category-hero { width: 100% !important; max-width: 100vw !important; padding: 150px 1rem 80px !important; box-sizing: border-box !important; }
    .gallery-section { width: 100% !important; max-width: 100vw !important; padding: 2rem 1rem !important; box-sizing: border-box !important; }
    .gallery-container { width: 100% !important; max-width: 100vw !important; padding: 0 !important; box-sizing: border-box !important; }
    .gallery-grid { width: 100% !important; max-width: 100vw !important; grid-template-columns: 1fr !important; gap: 1rem !important; }
    .lightbox-content { padding: 0 !important; }
    .lightbox-image-container { width: 100% !important; max-width: 100vw !important; padding: 0 !important; }
    .lightbox-image-container img { width: 100% !important; max-width: 100vw !important; height: auto !important; max-height: 60vh !important; object-fit: contain !important; }
    .lightbox-info { padding: 1rem !important; margin: 1rem !important; }
    .lightbox-nav { position: fixed !important; top: 50% !important; transform: translateY(-50%) !important; padding: 1rem 1.5rem !important; font-size: 1.8rem !important; z-index: 2005 !important; }
    .lightbox-nav:hover { transform: translateY(-50%) scale(1.05) !important; }
    .lightbox-nav.prev { left: 0.5rem !important; }
    .lightbox-nav.next { right: 0.5rem !important; }
    header { width: 100% !important; left: 0 !important; right: 0 !important; }
    nav { padding: 1rem 1rem; width: 100% !important; max-width: 100vw !important; box-sizing: border-box !important; }
    .logo { font-size: 1.15rem; letter-spacing: 1.5px; display: flex; align-items: center; gap: 8px; }
    .logo img { height: 42px !important; margin-right: 5px !important; }
    .logo span { font-size: 1.05rem; white-space: nowrap; }
    .hero h1 { font-size: 2.5rem; }
    .hero .subtitle { font-size: 1.2rem; }
    .section-title { font-size: 2rem; }
    .services-grid, .portfolio-grid { grid-template-columns: 1fr; }
    .portfolio-item { height: 300px; }
    .gallery-images { grid-template-columns: 1fr !important; padding: 0 !important; gap: 0 !important; margin: 0 !important; }
    .gallery-image { height: auto !important; max-width: 100vw !important; width: 100% !important; border-radius: 0 !important; }
    .gallery-image img { width: 100% !important; height: auto !important; max-width: 100vw !important; object-fit: contain !important; display: block !important; }
    .modal { overflow-x: hidden !important; overflow-y: auto !important; padding: 0 !important; margin: 0 !important; }
    .modal-content { padding: 0 !important; margin: 0 !important; max-width: 100vw !important; width: 100vw !important; box-sizing: border-box !important; left: 0 !important; right: 0 !important; }
    .modal-close { top: 10px !important; right: 10px !important; font-size: 2.5rem !important; background: rgba(0,0,0,0.7) !important; width: 50px !important; height: 50px !important; border-radius: 50% !important; display: flex !important; align-items: center !important; justify-content: center !important; line-height: 1 !important; }
    .gallery-nav { position: fixed !important; bottom: 0 !important; left: 0 !important; right: 0 !important; background: rgba(0,0,0,0.95) !important; flex-direction: row !important; gap: 0.5rem !important; padding: 0.8rem !important; margin: 0 !important; z-index: 2003 !important; justify-content: space-between !important; }
    .gallery-btn { width: auto !important; flex: 1 !important; padding: 0.6rem 0.8rem !important; font-size: 0.9rem !important; max-width: 48% !important; }
    .cities { grid-template-columns: 1fr; }
    .whatsapp-float { width: 50px; height: 50px; font-size: 1.5rem; bottom: 20px; right: 20px; }
    .mobile-menu-btn { display: block; }
    nav ul { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(10,10,10,0.98); flex-direction: column; padding: 2rem; gap: 1rem; }
    nav ul.active { display: flex; }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-preview-grid { grid-template-columns: 1fr; }
    .contact-info-cards { grid-template-columns: 1fr; gap: 1rem; }
    .contact-form { padding: 2rem; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .post-container { padding: 1.5rem; }
    .post-header h1 { font-size: 2rem; }
}

/* Mobil Sticky Butonlar - Sadece Icon */
.mobile-sticky-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    animation: gentle-pulse 3s infinite;
}

.sticky-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.sticky-btn:active {
    transform: scale(0.95);
}

.sticky-btn svg {
    width: 28px;
    height: 28px;
}

.call-btn {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

@keyframes gentle-pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    50% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

/* Mobilde biraz daha küçük */
@media (max-width: 767px) {
    .mobile-sticky-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
    .sticky-btn {
        width: 50px;
        height: 50px;
    }
    .sticky-btn svg {
        width: 24px;
        height: 24px;
    }
}

/* Desktop'ta daha büyük */
@media (min-width: 768px) {
    .mobile-sticky-buttons {
        bottom: 30px;
        right: 30px;
    }
    .sticky-btn {
        width: 60px;
        height: 60px;
    }
    .sticky-btn svg {
        width: 30px;
        height: 30px;
    }
}
