/* AKD Yapı Teknik - Modern Kurumsal Stil */
:root {
    --primary: #c0392b; /* Canlı Kırmızı */
    --secondary: #1a252f; /* Koyu Lacivert */
    --accent: #f39c12; /* Turuncu Detaylar */
    --bg-light: #f8f9fa;
    --text-dark: #2c3e50;
    --text-muted: #7f8c8d;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; line-height: 1.6; color: var(--text-dark); background: #fff; scroll-behavior: smooth; }
.container { max-width: 1200px; margin: auto; padding: 0 20px; }

/* Navbar */
header { background: var(--secondary); color: white; padding: 15px 0; border-bottom: 3px solid var(--primary); }
.navbar { display: flex; justify-content: space-between; align-items: center; }
.logo a { color: white; text-decoration: none; font-size: 1.5rem; font-weight: 800; display: flex; align-items: center; gap: 10px; }
.logo i { color: var(--primary); }
nav a { color: #ecf0f1; text-decoration: none; margin-left: 20px; font-weight: 500; font-size: 0.95rem; }
nav a.nav-cta { background: var(--primary); padding: 8px 18px; border-radius: 5px; transition: 0.3s; }
nav a.nav-cta:hover { background: #a93226; }

/* Hero Section */
.hero { background: linear-gradient(rgba(26, 37, 47, 0.85), rgba(26, 37, 47, 0.85)), url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?auto=format&fit=crop&q=80&w=1200'); background-size: cover; background-position: center; color: white; padding: 120px 0; text-align: center; }
.hero h1 { font-size: 3rem; font-weight: 800; margin-bottom: 20px; line-height: 1.2; }
.hero p { font-size: 1.2rem; max-width: 700px; margin: auto; opacity: 0.9; margin-bottom: 40px; }
.btn-primary { background: var(--primary); color: white; padding: 15px 35px; text-decoration: none; border-radius: 5px; font-weight: bold; margin-right: 15px; }
.btn-secondary { background: transparent; color: white; border: 2px solid white; padding: 13px 35px; text-decoration: none; border-radius: 5px; font-weight: bold; transition: 0.3s; }
.btn-secondary:hover { background: white; color: var(--secondary); }

/* Features */
.features { padding: 80px 0; background: var(--bg-light); }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.feature-card { background: white; padding: 40px; border-radius: 10px; text-align: center; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.feature-card i { font-size: 2.5rem; color: var(--primary); margin-bottom: 20px; }
.feature-card h3 { margin-bottom: 15px; }

/* Products */
.section-title { text-align: center; margin-bottom: 50px; font-size: 2rem; position: relative; padding-bottom: 15px; }
.section-title::after { content: ''; width: 60px; height: 3px; background: var(--primary); position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 25px; }
.product-card { background: white; border: 1px solid #eee; padding: 25px; border-radius: 10px; text-align: center; transition: 0.3s; }
.product-card:hover { transform: translateY(-10px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.p-icon { font-size: 2rem; color: var(--text-muted); margin-bottom: 15px; }
.category-tag { display: inline-block; background: #eee; padding: 2px 10px; border-radius: 20px; font-size: 0.75rem; color: #666; margin-bottom: 15px; }
.product-card a { display: block; background: var(--secondary); color: white; text-decoration: none; padding: 10px; border-radius: 5px; margin-top: 15px; }

/* Location Cloud */
.location-section { padding: 80px 0; background: #fff; }
.location-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 30px; }
.location-cloud a { background: var(--bg-light); color: var(--text-dark); padding: 8px 20px; border-radius: 30px; text-decoration: none; border: 1px solid #ddd; transition: 0.3s; font-size: 0.9rem; }
.location-cloud a:hover { background: var(--primary); color: white; border-color: var(--primary); }

/* pSEO Content Styles */
.pseo-article h1 { margin-bottom: 20px; border-left: 5px solid var(--primary); padding-left: 15px; }
.product-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; margin-top: 30px; }
.info-card { background: var(--bg-light); padding: 30px; border-radius: 10px; margin-bottom: 30px; }
.features-list .f-item { margin-bottom: 10px; font-weight: 500; display: flex; align-items: center; gap: 10px; }
.features-list i { color: var(--primary); }
.cta-box { background: var(--secondary); color: white; padding: 30px; border-radius: 10px; position: sticky; top: 100px; }
.btn-whatsapp { background: #25d366; display: block; text-align: center; padding: 15px; border-radius: 5px; color: white; text-decoration: none; font-weight: bold; margin-top: 20px; }

/* Footer */
footer { background: var(--secondary); color: #ecf0f1; padding: 60px 0 20px 0; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.footer-bottom { text-align: center; border-top: 1px solid #2c3e50; margin-top: 40px; padding-top: 20px; font-size: 0.8rem; }