/* CACHE TEMİZLEME: <?php echo time(); ?> - MOBİL DÜZELTMELERİ AKTİF */

/* Form Mesajları */
.form-message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
    text-align: center;
    border: 2px solid transparent;
}

/* Form gönderildikten sonra animasyonları devre dışı bırak */
body.form-submitted .quote-content,
body.form-submitted .quote-content h1,
body.form-submitted .quote-content p,
body.form-submitted .quote-actions,
body.form-submitted .quote-form,
body.form-submitted .quote-form h3,
body.form-submitted .quote-form .form-group,
body.form-submitted .quote-form .btn-full {
    animation: none !important;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    border-color: #10b981;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border-color: #ef4444;
}

.form-message::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    vertical-align: middle;
}

.form-message.success::before {
    content: '✅';
}

.form-message.error::before {
    content: '❌';
}

/* Blog Styles */
.blog-hero {
    background: linear-gradient(135deg, #0a5c0a 0%, #0a4a0a 50%, #083a08 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.blog-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 200 200"><defs><pattern id="blog-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="3" fill="rgba(255,255,255,0.1)"/><rect x="20" y="20" width="10" height="10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/><line x1="20" y1="25" x2="30" y2="25" stroke="rgba(255,255,255,0.1)" stroke-width="1"/><line x1="25" y1="20" x2="25" y2="30" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="200" height="200" fill="url(%23blog-pattern)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

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

.blog-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 20px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.blog-hero p {
    font-size: 20px;
    opacity: 0.9;
    margin: 0;
}

.blog-main {
    padding: 60px 0;
    background: #f8fafc;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}

.blog-content {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.blog-filters {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e2e8f0;
}

.search-form {
    margin-bottom: 20px;
}

.search-input-group {
    display: flex;
    gap: 10px;
}

.search-input-group input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.search-input-group input:focus {
    outline: none;
    border-color: #197736;
    box-shadow: 0 0 0 3px rgba(25,119,54,0.1);
}

.search-input-group button {
    padding: 12px 20px;
    background: linear-gradient(135deg, #197736 0%, #22c55e 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.search-input-group button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(25,119,54,0.3);
}

.category-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.category-filter {
    padding: 8px 16px;
    background: #f1f5f9;
    color: #64748b;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-filter:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}

.category-filter.active {
    background: var(--category-color, #197736);
    color: white;
    border-color: var(--category-color, #197736);
}

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

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.blog-card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 20px;
}

.blog-card-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #64748b;
    flex-wrap: wrap;
}

.blog-card-title {
    margin: 0 0 15px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.blog-card-title a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: #197736;
}

.blog-card-excerpt {
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 20px;
}

.blog-card-categories {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.blog-category {
    padding: 4px 12px;
    background: var(--category-color, #197736);
    color: white;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-category:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.blog-card-link {
    color: #197736;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.blog-card-link:hover {
    color: #22c55e;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e2e8f0;
}

.pagination-btn {
    padding: 10px 20px;
    background: linear-gradient(135deg, #197736 0%, #22c55e 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(25,119,54,0.3);
}

.pagination-info {
    color: #64748b;
    font-weight: 500;
}

.no-posts {
    text-align: center;
    padding: 60px 20px;
    color: #64748b;
}

.no-posts-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.no-posts h3 {
    font-size: 24px;
    margin: 0 0 10px;
    color: #1e293b;
}

.no-posts p {
    font-size: 16px;
    margin: 0;
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
}

.sidebar-widget h3 {
    margin: 0 0 20px;
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
}

.sidebar-search input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 10px;
}

.sidebar-search button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #197736 0%, #22c55e 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sidebar-search button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(25,119,54,0.3);
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 8px;
}

.category-list a {
    display: block;
    padding: 8px 12px;
    color: #64748b;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.category-list a:hover,
.category-list a.active {
    background: var(--category-color, #197736);
    color: white;
}

.popular-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.popular-posts li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e2e8f0;
}

.popular-posts li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.popular-posts a {
    color: #1e293b;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.popular-posts a:hover {
    color: #197736;
}

.popular-posts .views {
    color: #64748b;
    font-size: 12px;
    margin-left: 8px;
}

/* Blog Post Detail */
.blog-post-main {
    padding: 40px 0;
    background: #f8fafc;
}

.blog-post-layout {
    max-width: 800px;
    margin: 0 auto;
}

.breadcrumb {
    margin-bottom: 30px;
    font-size: 14px;
    color: #64748b;
}

.breadcrumb a {
    color: #197736;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 8px;
}

.blog-post {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.blog-post-header {
    margin-bottom: 30px;
}

.blog-post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #64748b;
    flex-wrap: wrap;
}

.blog-post-title {
    font-size: 36px;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 20px;
    line-height: 1.2;
}

.blog-post-categories {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.blog-post-featured-image {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
}

.blog-post-featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.blog-post-content {
    font-size: 16px;
    line-height: 1.7;
    color: #1e293b;
}

.blog-post-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin: 30px 0 15px;
}

.blog-post-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin: 25px 0 12px;
}

.blog-post-content p {
    margin: 0 0 20px;
}

.blog-post-content ul,
.blog-post-content ol {
    margin: 0 0 20px;
    padding-left: 20px;
}

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

.blog-post-content a {
    color: #197736;
    text-decoration: none;
}

.blog-post-content a:hover {
    text-decoration: underline;
}

.blog-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.blog-post-content blockquote {
    border-left: 4px solid #197736;
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    color: #64748b;
}

.blog-post-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e2e8f0;
}

.post-tags {
    margin-bottom: 20px;
}

.tags-label {
    font-weight: 600;
    color: #1e293b;
    margin-right: 10px;
}

.post-tag {
    display: inline-block;
    padding: 4px 12px;
    background: #f1f5f9;
    color: #64748b;
    border-radius: 15px;
    font-size: 12px;
    margin-right: 8px;
    margin-bottom: 8px;
}

.post-share {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.share-label {
    font-weight: 600;
    color: #1e293b;
}

.share-btn {
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.share-btn.facebook {
    background: #1877f2;
    color: white;
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-btn.whatsapp {
    background: #25d366;
    color: white;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.related-posts {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.related-posts h3 {
    margin: 0 0 20px;
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.related-post-card {
    padding: 20px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.related-post-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.related-post-card h4 {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 600;
}

.related-post-card h4 a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post-card h4 a:hover {
    color: #197736;
}

.related-post-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #64748b;
}

.blog-post-navigation {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
}

.nav-btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-to-blog {
    background: #f1f5f9;
    color: #64748b;
}

.back-to-blog:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}

.contact-us {
    background: linear-gradient(135deg, #197736 0%, #22c55e 100%);
    color: white;
}

.contact-us:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(25,119,54,0.3);
}

/* Responsive Blog */
@media (max-width: 768px) {
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-hero h1 {
        font-size: 32px;
    }
    
    .blog-hero p {
        font-size: 16px;
    }
    
    .blog-post {
        padding: 20px;
    }
    
    .blog-post-title {
        font-size: 28px;
    }
    
    .blog-post-navigation {
        flex-direction: column;
    }
    
    .category-filters {
        flex-direction: column;
    }
    
    .blog-card-meta {
        flex-direction: column;
        gap: 8px;
    }
}
/* Quote Section */
.quote-section{background:linear-gradient(135deg, #0a5c0a 0%, #0a4a0a 50%, #083a08 100%);padding:80px 0;margin-bottom:40px;position:relative;overflow:hidden}
.quote-section::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 200 200"><defs><pattern id="tech-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><!-- Bilgisayar ikonu --><rect x="10" y="15" width="20" height="12" fill="none" stroke="rgba(10,92,10,0.3)" stroke-width="1"/><rect x="12" y="17" width="16" height="8" fill="rgba(10,92,10,0.2)"/><circle cx="18" cy="21" r="1" fill="rgba(10,92,10,0.4)"/><rect x="18" y="28" width="4" height="2" fill="rgba(10,92,10,0.3)"/><rect x="8" y="28" width="4" height="2" fill="rgba(10,92,10,0.3)"/><!-- Güvenlik kamerası --><circle cx="35" cy="20" r="6" fill="none" stroke="rgba(10,92,10,0.3)" stroke-width="1"/><circle cx="35" cy="20" r="3" fill="rgba(10,92,10,0.2)"/><rect x="32" y="26" width="6" height="4" fill="rgba(10,92,10,0.2)"/><line x1="35" y1="30" x2="35" y2="35" stroke="rgba(10,92,10,0.3)" stroke-width="1"/><!-- Alarm sistemi --><rect x="5" y="40" width="15" height="10" fill="none" stroke="rgba(10,92,10,0.3)" stroke-width="1"/><circle cx="12" cy="45" r="2" fill="rgba(10,92,10,0.4)"/><rect x="8" y="47" width="8" height="2" fill="rgba(10,92,10,0.3)"/><rect x="8" y="50" width="8" height="2" fill="rgba(10,92,10,0.3)"/></pattern></defs><rect width="200" height="200" fill="url(%23tech-pattern)"/></svg>');opacity:0.3;z-index:1}
.quote-section::after{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 300 300"><defs><pattern id="security-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><!-- Güvenlik kamerası detay --><circle cx="30" cy="25" r="8" fill="none" stroke="rgba(10,92,10,0.2)" stroke-width="1"/><circle cx="30" cy="25" r="4" fill="rgba(10,92,10,0.3)"/><rect x="26" y="33" width="8" height="6" fill="rgba(10,92,10,0.2)"/><line x1="30" y1="39" x2="30" y2="45" stroke="rgba(10,92,10,0.2)" stroke-width="1"/><line x1="25" y1="45" x2="35" y2="45" stroke="rgba(10,92,10,0.2)" stroke-width="1"/><!-- Bilgisayar tamiri --><rect x="10" y="10" width="25" height="15" fill="none" stroke="rgba(10,92,10,0.2)" stroke-width="1"/><rect x="12" y="12" width="21" height="11" fill="rgba(10,92,10,0.1)"/><circle cx="22" cy="17" r="1" fill="rgba(10,92,10,0.3)"/><rect x="15" y="25" width="3" height="2" fill="rgba(10,92,10,0.2)"/><rect x="20" y="25" width="3" height="2" fill="rgba(10,92,10,0.2)"/><rect x="25" y="25" width="3" height="2" fill="rgba(10,92,10,0.2)"/><!-- Alarm sistemi --><rect x="40" y="10" width="18" height="12" fill="none" stroke="rgba(10,92,10,0.2)" stroke-width="1"/><circle cx="49" cy="16" r="2" fill="rgba(10,92,10,0.3)"/><rect x="44" y="18" width="10" height="2" fill="rgba(10,92,10,0.2)"/><rect x="44" y="21" width="10" height="2" fill="rgba(10,92,10,0.2)"/><rect x="44" y="24" width="10" height="2" fill="rgba(10,92,10,0.2)"/></pattern></defs><rect width="300" height="300" fill="url(%23security-pattern)"/></svg>');opacity:0.2;z-index:1}
.quote-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;position:relative;z-index:2}
.quote-content{text-align:left;position:relative;z-index:50}
.quote-content h1{font-size:48px;font-weight:800;color:#fff;margin:0 0 30px;line-height:1.2;text-shadow:0 4px 12px rgba(0,0,0,0.3)}
.quote-content p{font-size:20px;color:#e2e8f0;line-height:1.7;margin:0 0 40px}
.quote-form{background:rgba(255,255,255,0.95);backdrop-filter:blur(20px);padding:40px;border-radius:20px;box-shadow:0 20px 40px rgba(0,0,0,0.1);border:1px solid rgba(255,255,255,0.2);position:relative;z-index:50}
.quote-actions{display:flex;gap:20px;flex-wrap:wrap;margin-top:40px}
.quote-actions .btn{padding:18px 36px;border-radius:12px;font-size:16px;font-weight:600;text-decoration:none;transition:all 0.3s ease;display:inline-flex;align-items:center;gap:10px;border:2px solid transparent;min-width:180px;justify-content:center}
.quote-actions .btn-primary{background:linear-gradient(135deg, #197736 0%, #22c55e 100%);color:#fff;box-shadow:0 8px 25px rgba(25,119,54,0.3)}
.quote-actions .btn-primary:hover{transform:translateY(-3px);box-shadow:0 12px 35px rgba(25,119,54,0.4);animation:tightenScrews 0.8s ease-in-out}
.quote-actions .btn-primary:active{animation:waveGoodbye 1.2s ease-in-out forwards}
.quote-actions .btn-secondary{background:rgba(255,255,255,0.1);color:#fff;border:2px solid rgba(255,255,255,0.3);backdrop-filter:blur(10px)}
.quote-actions .btn-secondary:hover{background:rgba(255,255,255,0.2);border-color:rgba(255,255,255,0.5);transform:translateY(-3px);animation:tightenScrews 0.8s ease-in-out}
.quote-actions .btn-secondary:active{animation:waveGoodbye 1.2s ease-in-out forwards}
.quote-form h3{color:#1e293b;font-size:24px;font-weight:700;margin:0 0 30px;text-align:center}
.quote-form .form-group{margin-bottom:20px}
.quote-form input,.quote-form select,.quote-form textarea{width:100%;padding:15px 20px;border:2px solid #e2e8f0;border-radius:12px;font-size:16px;transition:all 0.3s ease;background:#fff;color:#1e293b}
.quote-form input:focus,.quote-form select:focus,.quote-form textarea:focus{outline:none;border-color:#197736;box-shadow:0 0 0 3px rgba(25,119,54,0.1)}
.quote-form .btn-full{width:100%;padding:18px;font-size:16px;font-weight:600;background:linear-gradient(135deg, #197736 0%, #22c55e 100%);color:#fff;border:none;border-radius:12px;cursor:pointer}
.quote-form .btn-full:hover{transform:translateY(-2px);box-shadow:0 8px 25px rgba(25,119,54,0.3)}

/* Placeholder image */
.placeholder-image{width:100%;height:300px;background:linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);display:flex;align-items:center;justify-content:center;border-radius:12px;border:2px dashed #cbd5e1}
.placeholder-image span{color:#64748b;font-size:18px;font-weight:600;text-align:center}

/* Şık Services Sayfası */
.service-detail{padding:60px 0;position:relative;overflow:hidden}
.service-detail:nth-child(even){background:linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);position:relative}
.service-detail:nth-child(odd){background:linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);position:relative}
.service-detail:nth-child(even)::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 100 100"><defs><pattern id="light-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(34,197,94,0.1)"/><circle cx="80" cy="20" r="2" fill="rgba(34,197,94,0.1)"/><circle cx="20" cy="80" r="2" fill="rgba(34,197,94,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(34,197,94,0.1)"/><circle cx="50" cy="50" r="1" fill="rgba(25,119,54,0.2)"/></pattern></defs><rect width="100" height="100" fill="url(%23light-pattern)"/></svg>');opacity:0.3;z-index:1}
.service-detail:nth-child(odd)::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 100 100"><defs><pattern id="dark-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><rect x="10" y="10" width="20" height="20" fill="none" stroke="rgba(25,119,54,0.1)" stroke-width="1"/><circle cx="20" cy="20" r="3" fill="rgba(34,197,94,0.15)"/><line x1="10" y1="20" x2="30" y2="20" stroke="rgba(34,197,94,0.1)" stroke-width="1"/><line x1="20" y1="10" x2="20" y2="30" stroke="rgba(34,197,94,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23dark-pattern)"/></svg>');opacity:0.4;z-index:1}
.service-content{display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:center;position:relative;z-index:2;max-width:1000px;margin:0 auto}
.service-content:nth-child(even) .service-image{order:2}
.service-content:nth-child(even) .service-text{order:1}
.service-image{position:relative;border-radius:20px;overflow:hidden;box-shadow:0 20px 40px rgba(0,0,0,0.1);transition:all 0.3s ease}
.service-image::before{content:'';position:absolute;top:0;left:0;right:0;bottom:0;background:linear-gradient(135deg, rgba(34,197,94,0.1) 0%, rgba(25,119,54,0.05) 100%);opacity:0;transition:opacity 0.3s ease;z-index:1}
.service-image:hover::before{opacity:1}
.service-image img{width:100%;height:400px;object-fit:cover;transition:transform 0.6s ease}
.service-image:hover img{transform:scale(1.05)}
.service-image:hover{box-shadow:0 25px 50px rgba(0,0,0,0.15);transform:translateY(-5px)}
.service-image::after{content:'';position:absolute;top:0;left:0;right:0;bottom:0;background:linear-gradient(135deg, rgba(25,119,54,0.1) 0%, rgba(34,197,94,0.1) 100%);opacity:0;transition:opacity 0.3s ease}
.service-image:hover::after{opacity:1}
.service-text h2{font-size:42px;font-weight:800;color:#1e293b;margin:0 0 20px;line-height:1.2;position:relative}
.service-text h2::after{content:'';position:absolute;bottom:-10px;left:0;width:60px;height:4px;background:linear-gradient(135deg, #197736 0%, #22c55e 100%);border-radius:2px}
.service-text p{font-size:18px;color:#64748b;line-height:1.7;margin:0 0 30px}
.service-text .btn{display:inline-flex;align-items:center;gap:10px;padding:16px 32px;background:linear-gradient(135deg, #197736 0%, #22c55e 100%);color:#fff;text-decoration:none;border-radius:12px;font-weight:600;font-size:16px;transition:all 0.3s ease;box-shadow:0 8px 25px rgba(25,119,54,0.3)}
.service-text .btn:hover{transform:translateY(-3px);box-shadow:0 12px 35px rgba(25,119,54,0.4)}

/* Şık Hero Section */
.services-hero{background:linear-gradient(135deg, #0a5c0a 0%, #0a4a0a 50%, #083a08 100%);padding:80px 0;position:relative;overflow:hidden}
.hero-content{text-align:center;position:relative;z-index:2;max-width:500px;margin:0 auto}
.hero-content h1{font-size:48px;font-weight:800;color:#ffffff;margin:0 0 20px;line-height:1.2;text-shadow:0 4px 12px rgba(0,0,0,0.3)}
.hero-content p{font-size:18px;color:#e2e8f0;line-height:1.7;margin:0 0 30px}
.hero-stats{display:flex;justify-content:center;gap:50px;margin-top:40px}
.stat-item{text-align:center}
.stat-number{display:block;font-size:48px;font-weight:800;color:#ffffff !important;line-height:1;margin-bottom:10px;text-shadow:0 2px 8px rgba(0,0,0,0.2)}
.stat-label{display:block;font-size:16px;color:#ffffff;font-weight:600;text-transform:uppercase;letter-spacing:1px}
.services-hero .stat-number{color:#ffffff !important}
.services-hero .stat-label{color:#ffffff !important}
.hero-stats .stat-number{color:#ffffff !important}
.hero-stats .stat-label{color:#ffffff !important}
.stat-item .stat-number{color:#ffffff !important}
.stat-item .stat-label{color:#ffffff !important}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .services-hero{padding:60px 0}
    .hero-content h1{font-size:36px;line-height:1.2}
    .hero-content p{font-size:16px;line-height:1.6}
    .hero-stats{flex-direction:column;gap:25px;margin-top:30px}
    .service-content{grid-template-columns:1fr !important;gap:30px;padding:20px}
    .service-content:nth-child(even) .service-image{order:1 !important}
    .service-content:nth-child(even) .service-text{order:2 !important}
    .service-text h2{font-size:28px;line-height:1.3;margin-bottom:15px}
    .service-text p{font-size:15px;line-height:1.6;margin-bottom:20px}
    .service-image img{height:250px;width:100%;object-fit:cover}
    .service-text .btn{padding:14px 28px;font-size:15px;width:100%;text-align:center}
    
    /* Services kartları için ek düzeltmeler */
    .services .grid{grid-template-columns:1fr !important;gap:20px;padding:0 20px}
    .card{height:auto !important;min-height:400px;margin-bottom:20px}
    .card-image{height:200px}
    .card h3{font-size:18px;margin:15px 20px 10px}
    .card p{font-size:14px;margin:0 20px 15px;line-height:1.5}
    .card-link{margin:10px 20px 20px;padding:12px 20px;font-size:14px}
    
    /* Services hero section düzeltmeleri */
    .services-hero .hero-content{max-width:100%;padding:0 20px}
    .services-hero .hero-stats{flex-direction:column;gap:20px;margin-top:30px}
    .services-hero .stat-item{text-align:center;padding:15px;background:rgba(255,255,255,0.1);border-radius:10px}
    .services-hero .stat-number{font-size:36px;margin-bottom:5px}
    .services-hero .stat-label{font-size:14px}
    
    /* Services sayfası genel düzeltmeleri */
    .services{padding:40px 0}
    .services h2{font-size:28px;margin-bottom:30px;text-align:center}
    .container{padding:0 20px;max-width:100%}
    .service-detail{padding:40px 0;margin:20px 0}
    .service-detail .container{padding:0 20px}
    
    /* Services butonları düzeltmeleri */
    .services-more{margin-top:30px;padding:20px 0}
    .services-more .btn{width:100%;max-width:300px;margin:0 auto;display:block}
    .btn{padding:16px 32px;font-size:16px;border-radius:12px;text-align:center;display:inline-block}
    .btn:hover{transform:translateY(-2px)}
}

/* Animasyon sınıfları */
.animate-slide-in{opacity:1!important;transform:translateX(0)!important}

/* Quote Section Animasyonları */
@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.quote-content {
  animation: slideInFromLeft 1s ease-out 0.5s both;
}

.quote-content h1 {
  animation: slideInFromLeft 1s ease-out 0.7s both;
}

.quote-content p {
  animation: slideInFromLeft 1s ease-out 0.9s both;
}

.quote-actions {
  animation: slideInFromLeft 1s ease-out 1.1s both;
}

.quote-form {
  animation: slideInFromLeft 1s ease-out 1.3s both;
}

.quote-form h3 {
  animation: slideInFromLeft 1s ease-out 1.5s both;
}

.quote-form .form-group {
  animation: slideInFromLeft 1s ease-out 1.7s both;
}

.quote-form .btn-full {
  animation: slideInFromLeft 1s ease-out 1.9s both;
}

/* Progress bar */
.slider-progress{position:absolute;left:0;right:0;top:0;height:4px;background:rgba(255,255,255,.25)}
.slider-progress .bar{display:block;height:100%;width:0;background:#fff}

/* Fade transition */
.slider[data-transition="fade"] .slide{position:absolute;inset:0}

@media (max-width: 880px){
  .slider,.slides,.slide{min-height:70vh}
  .slider{margin:16px auto;max-width:calc(100% - 32px);border-radius:16px}
  .top-slider{padding:16px 0}
  .slide-content{padding:80px 40px 100px;margin:30px;border-radius:24px}
  .slide-content h2{font-size:48px;margin:0 0 20px;line-height:1.2}
  .slide-content p{font-size:20px;margin:0 0 30px;line-height:1.6}
  .slide-ctas .btn{padding:16px 32px;font-size:15px}
  .slider-dots{bottom:30px;gap:16px}
  .slider-dots button{width:16px;height:16px}
}

/* Placeholder bg in case images missing */
.slide{background-color:#e8faef}

/* TEKAS Güvenlik temel stiller */
:root{
  --bg:#ffffff; --card:#ffffff; --muted:#6b7280; --text:#111827; --brand:#197736; --brand-2:#145a2a; --border:#e5e7eb;
  --gradient-primary:linear-gradient(135deg, #197736, #145a2a);
  --gradient-secondary:linear-gradient(135deg, #f0fdf4, #e8faef);
  --shadow-sm:0 1px 3px rgba(0,0,0,0.1);
  --shadow-md:0 4px 12px rgba(0,0,0,0.15);
  --shadow-lg:0 8px 24px rgba(0,0,0,0.2);
  --radius-sm:8px; --radius-md:12px; --radius-lg:16px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;background:linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);color:var(--text);line-height:1.6;position:relative}
body::before{content:'';position:fixed;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 200 200"><defs><pattern id="body-pattern" width="200" height="200" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="2" fill="rgba(34,197,94,0.08)"/><circle cx="150" cy="50" r="2" fill="rgba(34,197,94,0.08)"/><circle cx="50" cy="150" r="2" fill="rgba(34,197,94,0.08)"/><circle cx="150" cy="150" r="2" fill="rgba(34,197,94,0.08)"/><circle cx="100" cy="100" r="1" fill="rgba(25,119,54,0.1)"/><line x1="25" y1="25" x2="175" y2="25" stroke="rgba(34,197,94,0.05)" stroke-width="1"/><line x1="25" y1="175" x2="175" y2="175" stroke="rgba(34,197,94,0.05)" stroke-width="1"/><line x1="25" y1="25" x2="25" y2="175" stroke="rgba(34,197,94,0.05)" stroke-width="1"/><line x1="175" y1="25" x2="175" y2="175" stroke="rgba(34,197,94,0.05)" stroke-width="1"/></pattern></defs><rect width="200" height="200" fill="url(%23body-pattern)"/></svg>');opacity:0.4;z-index:-1;pointer-events:none}
.container{max-width:1120px;margin:0 auto;padding:0 16px}

/* Header */
.site-header{position:sticky;top:0;background:linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);backdrop-filter:saturate(150%) blur(20px);border-bottom:2px solid rgba(229,231,235,0.5);z-index:50;transition:all 0.3s ease;box-shadow:0 4px 20px rgba(0,0,0,0.05)}
.site-header:hover{background:linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);box-shadow:0 8px 30px rgba(0,0,0,0.08);border-bottom-color:rgba(229,231,235,0.6)}
.site-header::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 100 100"><defs><pattern id="header-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(25,119,54,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23header-dots)"/></svg>');opacity:0.3;z-index:-1}
.header-inner{display:flex;align-items:center;justify-content:space-between;height:100px;position:relative;z-index:2;overflow:visible;padding-right:20px;position:relative}
.logo{font-weight:800;color:var(--text);text-decoration:none;letter-spacing:.4px;font-size:1.5rem;transition:all 0.3s ease;position:relative;overflow:visible;display:flex;justify-content:flex-start;align-items:center;width:auto;margin-top:-55px}
.logo:hover{transform:scale(1.05);color:var(--brand)}
.logo span{color:var(--brand);background:linear-gradient(135deg, #197736, #145a2a);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;position:relative}
.logo span::after{content:'';position:absolute;bottom:-2px;left:0;width:0;height:2px;background:linear-gradient(135deg, #197736, #145a2a);transition:width 0.3s ease}
.logo:hover span::after{width:100%}
.logo img{max-height:150px;width:auto;object-fit:contain;transition:all 0.3s ease;display:block;filter:drop-shadow(0 4px 8px rgba(0,0,0,0.3));margin:0 auto}
.logo:hover img{transform:scale(1.05);filter:drop-shadow(0 6px 12px rgba(25,119,54,0.3))}
.nav{display:flex;align-items:center;justify-content:flex-end;width:100%}
.nav ul{display:flex;align-items:center;justify-content:center;gap:20px;list-style:none;margin:0;padding:0;width:100%}
.nav a{color:#374151;text-decoration:none;padding:12px 18px;border-radius:8px;font-weight:700;font-size:14px;letter-spacing:0.5px;transition:all 0.3s ease;position:relative;overflow:hidden;background:linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(25,119,54,0.1) 50%, rgba(255,255,255,0.9) 100%);border:2px solid transparent;background-clip:padding-box;backdrop-filter:blur(10px);box-shadow:0 1px 3px rgba(0,0,0,0.1)}
.nav a::after{content:'';position:absolute;top:0;left:0;right:0;bottom:0;border-radius:8px;padding:2px;background:linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(25,119,54,0.6) 50%, rgba(255,255,255,0.8) 100%);mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);mask-composite:exclude;z-index:-1}
.nav a::before{content:'';position:absolute;top:0;left:-100%;width:100%;height:100%;background:linear-gradient(135deg, rgba(25,119,54,0.08), rgba(20,90,42,0.08));transition:left 0.4s ease;z-index:-1}
.nav a:hover{background:linear-gradient(135deg, rgba(25,119,54,0.15) 0%, rgba(255,255,255,0.8) 50%, rgba(25,119,54,0.15) 100%);transform:translateY(-2px);box-shadow:0 4px 15px rgba(0,0,0,0.1);color:#197736}
.nav a:hover::after{background:linear-gradient(135deg, rgba(25,119,54,0.8) 0%, rgba(255,255,255,0.9) 50%, rgba(25,119,54,0.8) 100%)}
.nav a:hover::before{left:0}
.nav-link{position:relative;display:inline-block}
.nav-link::after{content:"";position:absolute;left:50%;bottom:-8px;width:0;height:0;border-left:8px solid transparent;border-right:8px solid transparent;border-top:8px solid var(--brand);opacity:0;transform:translateX(-50%) translateY(6px);transition:opacity .3s ease, transform .3s ease;filter:drop-shadow(0 2px 4px rgba(25,119,54,0.3))}
.nav-link:hover::after{opacity:1;transform:translateX(-50%) translateY(0)}

/* Dropdown Menu */
.dropdown{position:relative}
.dropdown-arrow{font-size:10px;margin-left:6px;transition:transform 0.3s ease;color:var(--brand);display:inline-block}
.dropdown:hover .dropdown-arrow{transform:rotate(180deg);color:var(--brand)}

/* SVG Icons */
.nav-icon{transition:transform 0.3s ease;filter:drop-shadow(0 1px 2px rgba(0,0,0,0.1));margin-right:6px}
.nav-link:hover .nav-icon{transform:scale(1.1);filter:drop-shadow(0 2px 4px rgba(0,0,0,0.2))}
.btn-icon{transition:transform 0.3s ease;filter:drop-shadow(0 1px 2px rgba(0,0,0,0.1));margin-right:6px}
.btn:hover .btn-icon{transform:scale(1.1);filter:drop-shadow(0 2px 4px rgba(0,0,0,0.2))}
.dropdown-icon{transition:transform 0.3s ease;filter:drop-shadow(0 1px 2px rgba(0,0,0,0.1));margin-right:8px;width:14px;height:14px}
.dropdown-menu a:hover .dropdown-icon{transform:scale(1.1);filter:drop-shadow(0 2px 4px rgba(0,0,0,0.2))}
.dropdown-menu{position:absolute;top:calc(100% + 8px);left:50%;transform:translateX(-50%) translateY(-25px) scale(0.85);background:rgba(255,255,255,0.98);backdrop-filter:blur(20px);border:1px solid rgba(229,231,235,0.6);border-radius:12px;box-shadow:0 10px 30px rgba(0,0,0,0.1);min-width:240px;max-width:300px;opacity:0;visibility:hidden;transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);z-index:1000;list-style:none;margin:0;padding:8px 0;overflow:hidden;display:none;flex-direction:column}
.dropdown:hover .dropdown-menu{opacity:1;visibility:visible;transform:translateX(-50%) translateY(0) scale(1);animation:dropdownSlideDown 0.5s cubic-bezier(0.4, 0, 0.2, 1);display:flex}
.dropdown-menu::before{content:'';position:absolute;top:0;left:0;right:0;height:2px;background:linear-gradient(90deg, transparent, var(--brand), transparent)}
.dropdown-menu li{margin:0 !important;position:relative;display:block !important;width:100% !important;flex:1 !important}
.dropdown-menu a{display:block !important;align-items:center;gap:12px;padding:14px 20px;color:#374151;text-decoration:none;transition:all 0.3s ease;border-radius:0;position:relative;overflow:hidden;font-weight:500;font-size:14px;letter-spacing:0.3px;width:100% !important;border-bottom:1px solid rgba(229,231,235,0.3);text-align:left;line-height:1.4;box-sizing:border-box;flex:1 !important;clear:both !important;float:none !important}
.dropdown-menu a:last-child{border-bottom:none}
.dropdown-menu a::before{content:'';position:absolute;left:0;top:0;bottom:0;width:0;background:linear-gradient(135deg, rgba(25,119,54,0.1), rgba(20,90,42,0.1));transition:width 0.3s ease;z-index:-1}
.dropdown-menu a:hover{background:linear-gradient(135deg, rgba(25,119,54,0.08), rgba(20,90,42,0.08));color:var(--brand);padding-left:32px;transform:translateX(8px);box-shadow:0 2px 8px rgba(25,119,54,0.15)}
.dropdown-menu a:hover::before{width:4px}
.dropdown-menu a:first-child{border-radius:16px 16px 0 0}
.dropdown-menu a:last-child{border-radius:0 0 16px 16px}
.dropdown-menu a:hover:first-child{border-radius:16px 16px 0 0}
.dropdown-menu a:hover:last-child{border-radius:0 0 16px 16px}

/* Social Dropdown Özel Stilleri */
.social-dropdown{position:absolute;right:0;top:50%;transform:translateY(-50%);display:inline-block;z-index:1000}
.social-toggle{background:linear-gradient(135deg, #22abe6 0%, #1e90d1 100%);color:#fff;border:1px solid rgba(34,171,230,0.3);margin-left:auto !important;display:flex;align-items:center;gap:6px;padding:12px 20px;border-radius:8px;font-weight:600;font-size:14px;letter-spacing:0.5px;transition:all 0.3s ease;position:relative;overflow:hidden}
.social-toggle:hover{background:linear-gradient(135deg, #1e90d1 0%, #1976d2 100%);transform:translateY(-2px);box-shadow:0 4px 15px rgba(34,171,230,0.3);border-color:rgba(34,171,230,0.5)}
.social-tick{transition:transform 0.3s ease;filter:drop-shadow(0 2px 4px rgba(0,0,0,0.2))}
.social-toggle:hover .social-tick{transform:scale(1.1);filter:drop-shadow(0 3px 6px rgba(0,0,0,0.3))}
.social-menu{position:absolute;top:calc(100% + 8px);right:0;transform:translateY(-25px) scale(0.85);background:rgba(255,255,255,0.98);backdrop-filter:blur(20px);border:1px solid rgba(229,231,235,0.6);border-radius:12px;box-shadow:0 10px 30px rgba(0,0,0,0.1);min-width:200px;max-width:250px;opacity:0;visibility:hidden;transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);z-index:1000;list-style:none;margin:0;padding:8px 0;overflow:hidden;display:none !important;flex-direction:column}
.social-dropdown:hover .social-menu{opacity:1;visibility:visible;transform:translateY(0) scale(1);animation:dropdownSlideDown 0.5s cubic-bezier(0.4, 0, 0.2, 1);display:flex !important}
.social-toggle.active{background:linear-gradient(135deg, #1976d2 0%, #1565c0 100%);transform:translateY(-2px);box-shadow:0 6px 20px rgba(34,171,230,0.4)}
.social-menu[style*="flex"]{opacity:1;visibility:visible;transform:translateY(0) scale(1);animation:dropdownSlideDown 0.5s cubic-bezier(0.4, 0, 0.2, 1);display:flex !important}

/* Dropdown Animasyon */
@keyframes dropdownSlideDown {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-25px) scale(0.85);
    }
    50% {
        opacity: 0.8;
        transform: translateX(-50%) translateY(-10px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}
.btn{display:inline-block;background:linear-gradient(135deg, #197736, #145a2a);color:#fff;padding:18px 36px;border-radius:12px;text-decoration:none;font-weight:700;transition:all 0.4s cubic-bezier(0.4, 0, 0.2, 1);box-shadow:0 6px 20px rgba(25,119,54,0.3);border:none;cursor:pointer;position:relative;overflow:hidden;text-transform:uppercase;letter-spacing:1px;font-size:14px;border:2px solid transparent}
.btn::before{content:'';position:absolute;top:0;left:-100%;width:100%;height:100%;background:linear-gradient(135deg, rgba(255,255,255,0.25), rgba(255,255,255,0.15));transition:left 0.5s ease;z-index:1}
.btn::after{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.6s ease;z-index:1}
.btn:hover{background:linear-gradient(135deg, #1a8a3e, #1a6b2e);transform:translateY(-4px);box-shadow:0 12px 35px rgba(25,119,54,0.4);border-color:rgba(255,255,255,0.2)}
.btn:hover::before{left:0}
.btn:hover::after{left:100%}
.btn:active{transform:translateY(-2px)}
.btn-sm{padding:12px 24px;font-size:14px;border-radius:10px}
.btn-green{background:linear-gradient(135deg, #197736, #145a2a);color:#fff;border:1px solid rgba(25,119,54,0.3);box-shadow:0 4px 15px rgba(25,119,54,0.2);font-weight:600;letter-spacing:0.5px;text-transform:uppercase;font-size:13px;padding:12px 24px;border-radius:8px;transition:all 0.3s ease;position:relative;overflow:hidden}
.btn-green::before{content:'';position:absolute;top:0;left:-100%;width:100%;height:100%;background:linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));transition:left 0.4s ease;z-index:1}
.btn-green:hover{background:linear-gradient(135deg, #1a8a3e, #1a6b2e);transform:translateY(-2px);box-shadow:0 8px 25px rgba(25,119,54,0.3);border-color:rgba(25,119,54,0.4)}
.btn-green:hover::before{left:0}
.btn-outline{background:transparent;border:2px solid var(--brand);color:var(--brand);box-shadow:none;background:rgba(255,255,255,0.1);backdrop-filter:blur(10px)}
.btn-outline:hover{background:linear-gradient(135deg, #197736, #145a2a);color:#fff;transform:translateY(-3px);box-shadow:0 8px 25px rgba(25,119,54,0.3);border-color:var(--brand)}
.nav-toggle{display:none;background:transparent;border:0;color:var(--text);font-size:22px;cursor:pointer;padding:8px;border-radius:4px;transition:all 0.3s ease;position:relative;z-index:1001}

/* Hero */
.hero{padding:120px 0;background:linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);position:relative;overflow:hidden;min-height:100vh;display:flex;align-items:center}
.hero-background{position:absolute;top:0;left:0;right:0;bottom:0;z-index:1}
.hero-pattern{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 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');opacity:0.6}
.hero-shapes{position:absolute;top:0;left:0;right:0;bottom:0;overflow:hidden}
.shape{position:absolute;border-radius:50%;background:linear-gradient(135deg, rgba(16,185,129,0.1), rgba(59,130,246,0.1));animation:float 6s ease-in-out infinite}
.shape-1{width:200px;height:200px;top:10%;left:10%;animation-delay:0s}
.shape-2{width:150px;height:150px;top:60%;right:15%;animation-delay:2s}
.shape-3{width:100px;height:100px;bottom:20%;left:20%;animation-delay:4s}
.hero-content{text-align:center;color:#fff;position:relative;z-index:2;max-width:800px;margin:0 auto;animation:heroFadeIn 1.5s ease-out}
.hero-badge{display:inline-flex;align-items:center;gap:8px;background:rgba(16,185,129,0.1);border:1px solid rgba(16,185,129,0.3);border-radius:50px;padding:12px 24px;margin-bottom:32px;backdrop-filter:blur(10px)}
.badge-icon{font-size:1.2rem}
.badge-text{font-size:0.9rem;font-weight:600;color:#10b981}
.hero-title{font-size:4rem;font-weight:800;margin-bottom:24px;line-height:1.1;text-shadow:0 4px 8px rgba(0,0,0,0.3);animation:titleSlideIn 1.2s ease-out 0.3s both}
.title-line{display:block;color:#e2e8f0}
.title-highlight{display:block;background:linear-gradient(135deg, #10b981, #3b82f6);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;margin-top:8px}
.hero-description{font-size:1.3rem;margin-bottom:48px;opacity:0.9;max-width:600px;margin-left:auto;margin-right:auto;line-height:1.6;animation:descriptionFadeIn 1.5s ease-out 0.6s both}
.hero-stats{display:grid;grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));gap:32px;margin-bottom:48px;max-width:800px;margin-left:auto;margin-right:auto}
.stat-card{background:none;border:1px solid rgba(255,255,255,0.2);border-radius:16px;padding:24px;text-align:center;transition:all 0.3s ease;position:relative;overflow:hidden}
.stat-card::before{content:'';position:absolute;top:0;left:0;right:0;height:2px;background:linear-gradient(90deg, transparent, #10b981, transparent);opacity:0}
.stat-card:hover{transform:translateY(-4px);box-shadow:0 20px 40px rgba(0,0,0,0.3);border-color:rgba(16,185,129,0.3)}
.stat-card:hover::before{opacity:1}
.stat-card:hover .stat-icon{animation:rocketFly 0.6s ease-out}
.stat-icon{font-size:2rem;margin-bottom:12px;display:block;transition:all 0.3s ease}
.stat-content{position:relative;z-index:2}
.stat-number{display:block;font-size:2.5rem;font-weight:700;color:#1e293b !important;margin-bottom:8px;text-shadow:0 2px 4px rgba(0,0,0,0.3)}
.stat-card .stat-number{color:#1e293b !important}
.stat-content .stat-number{color:#1e293b !important}
.stat-label{font-size:0.9rem;opacity:0.8;font-weight:500;color:#1e293b !important}
.stat-card .stat-label{color:#1e293b !important}
.stat-content .stat-label{color:#1e293b !important}
.hero-actions{display:flex;gap:20px;justify-content:center;flex-wrap:wrap;margin-bottom:48px;animation:actionsSlideIn 1.2s ease-out 0.9s both}
.btn{display:inline-flex;align-items:center;gap:12px;padding:16px 32px;border-radius:12px;text-decoration:none;font-weight:600;transition:all 0.3s ease;position:relative;overflow:hidden}
.btn-primary{background:linear-gradient(135deg, #10b981, #059669);color:#fff;box-shadow:0 8px 25px rgba(16,185,129,0.3);border:1px solid rgba(16,185,129,0.3)}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 12px 35px rgba(16,185,129,0.4)}
.btn-secondary{background:rgba(255,255,255,0.1);color:#fff;border:1px solid rgba(255,255,255,0.2);backdrop-filter:blur(10px)}
.btn-secondary:hover{background:rgba(255,255,255,0.15);transform:translateY(-2px)}
.btn-icon{font-size:1.1rem}
.btn-text{font-size:1rem}
.btn-arrow{font-size:1.2rem;transition:transform 0.3s ease}
.btn:hover .btn-arrow{transform:translateX(4px)}
.hero-features{display:flex;justify-content:center;gap:40px;flex-wrap:wrap}
.feature-item{display:flex;align-items:center;gap:8px;color:#e2e8f0;font-size:0.9rem;font-weight:500}
.feature-icon{font-size:1.1rem}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(16px)}}
@keyframes rocketFly{0%{transform:translateY(0) rotate(0deg);opacity:1}33%{transform:translateY(-10px) rotate(5deg);opacity:0.9}66%{transform:translateY(-20px) rotate(10deg);opacity:0.7}100%{transform:translateY(-30px) rotate(15deg);opacity:0.5}}
@keyframes heroFadeIn{0%{opacity:0;transform:translateY(30px)}100%{opacity:1;transform:translateY(0)}}
@keyframes titleSlideIn{0%{opacity:0;transform:translateX(-50px)}100%{opacity:1;transform:translateX(0)}}
@keyframes descriptionFadeIn{0%{opacity:0;transform:translateY(20px)}100%{opacity:0.9;transform:translateY(0)}}
@keyframes actionsSlideIn{0%{opacity:0;transform:translateY(30px)}100%{opacity:1;transform:translateY(0)}}

/* Services */
.services{padding:100px 0;background:linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);position:relative}
.services::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 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(25,119,54,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');opacity:0.5}
.services h2{text-align:center;font-size:3rem;margin-bottom:3rem;color:var(--brand);font-weight:800;position:relative;z-index:2}
.services .grid{display:grid;grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));gap:2rem;position:relative;z-index:2}
.services h2,.references h2{font-size:28px;margin:0 0 16px}
.grid{display:grid;gap:16px}
.cards-3{grid-template-columns:repeat(3,1fr);gap:30px}
.card{background:linear-gradient(135deg, #fff 0%, #f8fafc 100%);border:2px solid rgba(25,119,54,0.2);padding:0;border-radius:20px;box-shadow:0 8px 30px rgba(0,0,0,0.12), 0 4px 15px rgba(25,119,54,0.1);transition:all 0.4s cubic-bezier(0.4, 0, 0.2, 1);position:relative;overflow:hidden;backdrop-filter:blur(10px);height:420px;display:flex;flex-direction:column}
.card::before{content:"";position:absolute;top:0;left:0;width:100%;height:4px;background:linear-gradient(135deg, #197736, #145a2a);transform:scaleX(0);transition:transform 0.4s ease}
.card::after{content:"";position:absolute;top:-50%;right:-50%;width:100%;height:100%;background:radial-gradient(circle, rgba(25,119,54,0.05) 0%, transparent 70%);opacity:0;transition:opacity 0.4s ease}
.card:hover{transform:translateY(-8px);box-shadow:0 15px 50px rgba(0,0,0,0.2), 0 8px 25px rgba(25,119,54,0.2);border-color:rgba(25,119,54,0.4)}
.card:hover::before{transform:scaleX(1)}
.card:hover::after{opacity:1}
.card-image{width:100%;height:180px;overflow:hidden;position:relative;flex-shrink:0}
.card-image img{width:100%;height:100%;object-fit:cover;transition:transform 0.3s ease}
.card:hover .card-image img{transform:scale(1.05)}
.card h3{margin:20px 30px 12px;font-size:20px;font-weight:700;position:relative;z-index:2;flex-shrink:0}
.card p{color:var(--muted);line-height:1.6;margin:0 30px 16px;position:relative;z-index:2;flex-grow:1}
.card-link{display:inline-flex;align-items:center;gap:8px;margin:12px 30px 30px;color:var(--brand);text-decoration:none;font-weight:700;transition:all 0.3s ease;position:relative;z-index:2;border:2px solid var(--brand);padding:8px 16px;border-radius:8px;background:rgba(25,119,54,0.05);margin-top:auto}
.card-link::after{content:"→";transition:transform 0.3s ease}
.card-link:hover{color:var(--brand-2);transform:translateX(4px);border-color:var(--brand-2);background:rgba(34,197,94,0.1)}
.card-link:hover::after{transform:translateX(4px)}

/* References */
.references{padding:8px 0 56px}
.thumbs{grid-template-columns:repeat(6,1fr)}
.thumb{background:#f3f4f6;border:1px dashed var(--border);height:90px;border-radius:12px}

.section-divider{height:28px;background:repeating-linear-gradient(45deg, #f0fdf4 0 10px, #e8faef 10px 20px)}

.testimonials{padding:24px 0 56px}
.testimonial-slider{position:relative;min-height:130px}
.testimonial{position:absolute;inset:0;opacity:0;transform:translateY(8px);transition:opacity .4s ease, transform .4s ease;background:#ffffff;border:1px solid var(--border);border-radius:14px;padding:18px}
.testimonial.active{opacity:1;transform:none}
.testimonial p{margin:0 0 8px}
.testimonial .author{color:#6b7280;font-size:14px}

.whatsapp-fab{
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    font-size: 24px;
    z-index: 1000;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-fab:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
    filter: brightness(1.1);
}

.whatsapp-fab svg {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.whatsapp-fab:hover svg {
    transform: scale(1.1);
}
.admin-fab{position:fixed;right:16px;bottom:80px;background:var(--brand);color:#fff;text-decoration:none;width:52px;height:52px;border-radius:50%;display:grid;place-items:center;box-shadow:0 8px 24px rgba(0,0,0,.15);font-size:22px;z-index:1000;transition:all 0.3s ease}
.admin-fab:hover{filter:brightness(1.1);transform:scale(1.1)}
.edit-mode-toggle{position:fixed;right:16px;bottom:144px;background:#f59e0b;color:#fff;border:none;width:52px;height:52px;border-radius:50%;display:grid;place-items:center;box-shadow:0 8px 24px rgba(0,0,0,.15);font-size:22px;z-index:1000;transition:all 0.3s ease;cursor:pointer}
.edit-mode-toggle:hover{filter:brightness(1.1);transform:scale(1.1)}
.edit-mode-toggle.active{background:#10b981;animation:pulse 2s infinite}
@keyframes pulse{0%,100%{transform:scale(1)}50%{transform:scale(1.05)}}
@keyframes slideDown{from{transform:translateX(-50%) translateY(-20px);opacity:0}to{transform:translateX(-50%) translateY(0);opacity:1}}
@keyframes fadeInOut{0%,100%{opacity:0;transform:translateY(-10px)}20%,80%{opacity:1;transform:translateY(0)}}
@keyframes slideInUp{from{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}
@keyframes slideInLeft{from{opacity:0;transform:translateX(-30px)}to{opacity:1;transform:translateX(0)}}
@keyframes slideInRight{from{opacity:0;transform:translateX(30px)}to{opacity:1;transform:translateX(0)}}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
@keyframes scaleIn{from{opacity:0;transform:scale(0.9)}to{opacity:1;transform:scale(1)}}

/* Animasyon sınıfları */
.animate-slide-up{animation:slideInUp 0.6s ease-out}
.animate-slide-left{animation:slideInLeft 0.6s ease-out}
.animate-slide-right{animation:slideInRight 0.6s ease-out}
.animate-fade-in{animation:fadeIn 0.6s ease-out}
.animate-scale-in{animation:scaleIn 0.6s ease-out}

/* Hover efektleri */
.hero h1:hover{transform:scale(1.02);transition:transform 0.3s ease}
.hero p:hover{transform:translateX(10px);transition:transform 0.3s ease}
.services h2:hover{transform:scale(1.05);transition:transform 0.3s ease}
.stat:hover{transform:scale(1.05);transition:transform 0.3s ease}

/* Parallax efektleri */
.hero{transform-style:preserve-3d}
.hero::before{transform:translateZ(-1px)}
.hero-inner{transform:translateZ(1px)}

/* Gradient text efektleri */
.gradient-text{background:linear-gradient(135deg, #197736, #145a2a);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}

/* Glow efektleri */
.glow{box-shadow:0 0 20px rgba(25,119,54,0.3)}
.glow:hover{box-shadow:0 0 30px rgba(25,119,54,0.5)}

/* Floating animasyon */
@keyframes float{0%,100%{transform:translateY(0px)}50%{transform:translateY(-10px)}}
.float{animation:float 3s ease-in-out infinite}

/* About Page Styles - Services ile aynı stil + Efektler */
.about-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-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 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(25,119,54,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.6;
    animation: float 20s ease-in-out infinite;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1e293b;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #64748b;
    max-width: 600px;
}

.about-hero .hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.about-hero .stat-item {
    text-align: center;
}

.about-hero .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #197736;
    margin-bottom: 0.5rem;
}

.about-hero .stat-label {
    font-size: 1rem;
    color: #64748b;
}

/* Hakkımızda Yazısı Section */
.about-text-section {
    padding: 60px 0;
    background: #f8f9fa;
    position: relative;
}

.about-text-section::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 100 100"><defs><pattern id="dots-small" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="rgba(25,119,54,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots-small)"/></svg>');
    opacity: 0.5;
    animation: float 15s ease-in-out infinite;
}

.about-text-content {
    position: relative;
    z-index: 2;
}

.about-text-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 2rem;
    position: relative;
}

.about-text-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #197736, #22c55e);
    border-radius: 2px;
}

.about-text-content p {
    color: #64748b;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about-text-content p:last-child {
    margin-bottom: 0;
}

/* Mission & Vision - Sol Sağ Düzen */
.mission-vision-section {
    padding: 80px 0;
    background: white;
    position: relative;
}

.mission-vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 49%, rgba(25,119,54,0.03) 50%, transparent 51%);
    background-size: 20px 20px;
    animation: slide 30s linear infinite;
}

@keyframes slide {
    0% { background-position: 0 0; }
    100% { background-position: 20px 20px; }
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.mission-card, .vision-card {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(25,119,54,0.1);
    background: white;
}

.mission-card h2, .vision-card h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    position: relative;
}

.mission-card h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #197736, #22c55e);
    border-radius: 2px;
}

.vision-card h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #22c55e, #197736);
    border-radius: 2px;
}

.mission-card p, .vision-card p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1.1rem;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.content-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.content-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.content-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
}

/* Values Section - Ortalanmış Düzen */
.values-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.values-section::after {
    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 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(25,119,54,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
    animation: float 25s ease-in-out infinite reverse;
}

.values-content {
    position: relative;
    z-index: 2;
}

.values-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.value-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.value-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    display: block;
}

.value-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.value-item p {
    color: #64748b;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Team Section - Services ile aynı stil */
.team-section {
    padding: 60px 0;
    background: white;
}

.team-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.team-member {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.team-member:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.member-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 2px solid #197736;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: #64748b;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Certificates - Services ile aynı stil */
.certificates {
    padding: 60px 0;
    background: #f8f9fa;
}

.certificates h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.cert-item {
    background: white;
    color: #1e293b;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.cert-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.cert-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #197736;
}

.cert-item p {
    color: #64748b;
    font-size: 0.9rem;
}

/* About Page Ek Efektler */
.about-hero h1 {
    animation: fadeInUp 1s ease-out;
}

.about-hero p {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.about-hero .hero-stats {
    animation: fadeInUp 1s ease-out 0.4s both;
}

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

.service-detail {
    animation: fadeInUp 0.8s ease-out;
}

.service-detail:nth-child(2) {
    animation-delay: 0.1s;
}

.service-detail:nth-child(3) {
    animation-delay: 0.2s;
}

.service-detail:nth-child(4) {
    animation-delay: 0.3s;
}

/* Hover Efektleri */
.service-detail:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(25,119,54,0.2);
}

.service-text h2 {
    position: relative;
    transition: all 0.3s ease;
}

.service-text h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #197736, #22c55e);
    transition: width 0.3s ease;
}

.service-detail:hover .service-text h2::after {
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-card, .vision-card {
        padding: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .value-item {
        padding: 1rem;
    }
}

/* Footer */
/* Sade Kurumsal Footer */
.site-footer{
  background: #1a1a1a;
  color: #ffffff;
  position: relative;
  margin-top: 60px;
  border-top: 3px solid #197736;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
}

.site-footer::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #197736, transparent);
  opacity: 0.6;
}

.site-footer .container{
  position: relative;
  z-index: 3;
}

.footer-inner{
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 35px 0 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-inner > div{
  position: relative;
}

.footer-inner h4{
  margin: 0 0 20px;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #197736;
  padding-bottom: 8px;
  display: inline-block;
  transition: all 0.3s ease;
  position: relative;
}

.footer-inner h4::before{
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #22c55e, #197736);
  transition: width 0.3s ease;
}

.footer-inner h4:hover{
  color: #22c55e;
  transform: translateY(-1px);
}

.footer-inner h4:hover::before{
  width: 100%;
}

.site-footer .logo{
  font-size: 2.8rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  text-shadow: 0 3px 6px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
  position: relative;
}

.site-footer .logo:hover{
  transform: scale(1.08);
  text-shadow: 0 5px 10px rgba(0,0,0,0.6);
}

.site-footer .logo::after{
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #197736, #22c55e);
  transition: width 0.4s ease;
  border-radius: 2px;
}

.site-footer .logo:hover::after{
  width: 100%;
}

.site-footer .logo img{
  height: 300px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.4));
  transition: all 0.3s ease;
}

.site-footer .logo:hover img{
  transform: scale(1.15);
  filter: drop-shadow(0 5px 10px rgba(0,0,0,0.6));
}

.site-footer .logo span{
  color: #10b981;
}

.site-footer p{
  color: #cccccc;
  line-height: 1.5;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.contact, .links{
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact li, .links li{
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.site-footer a{
  color: #cccccc;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 2px;
}

.site-footer a::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #197736, #22c55e);
  transition: width 0.3s ease;
}

.site-footer a:hover{
  color: #197736;
  transform: translateY(-1px);
}

.site-footer a:hover::after{
  width: 100%;
}

.copyright{
  border-top: 1px solid #333333;
  padding: 20px 0;
  color: #999999;
  text-align: center;
  font-size: 0.85rem;
  background: #111111;
}

.copyright a{
  color: #197736;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.copyright a:hover{
  color: #22c55e;
  text-shadow: 0 1px 2px rgba(25,119,54,0.3);
}

.copyright a::after{
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: #22c55e;
  transition: width 0.3s ease;
}

.copyright a:hover::after{
  width: 100%;
}

/* Footer Social Links */
.footer-social{
  display: flex;
  gap: 12px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.footer-social a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #333333, #444444);
  border-radius: 10px;
  color: #cccccc;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #555555;
  box-shadow: 0 3px 6px rgba(0,0,0,0.3);
}

.footer-social a svg{
  width: 22px;
  height: 22px;
}

.footer-social a:hover{
  background: linear-gradient(135deg, #197736, #22c55e);
  color: #ffffff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 12px rgba(25,119,54,0.4);
  border-color: #197736;
}

.footer-social a:active{
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 3px 6px rgba(25,119,54,0.3);
}

.footer-social a svg{
  transition: all 0.3s ease;
}

.footer-social a:hover svg{
  transform: rotate(5deg);
}

/* Footer Hover Effects */
.footer-inner > div:hover{
  transform: translateY(-2px);
  transition: transform 0.3s ease;
}

.footer-inner h4:hover{
  color: #197736;
  transition: color 0.3s ease;
}

.site-footer a:hover{
  color: #197736;
  text-shadow: 0 1px 2px rgba(25,119,54,0.3);
}


/* Responsive Design */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  .container { padding: 0 20px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-content h1 { font-size: 48px; }
  .hero-content p { font-size: 18px; }
  .cards-3 { grid-template-columns: repeat(2, 1fr); }
  .slider { max-width: 100%; margin: 10px auto; }
}

/* Mobile Large (481px - 768px) */
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .hero { padding: 80px 0; min-height: auto; }
  .hero-title { font-size: 2.5rem; }
  .hero-description { font-size: 1.1rem; }
  .hero-stats { grid-template-columns: 1fr; gap: 20px; }
  .hero-actions { flex-direction: column; align-items: center; gap: 16px; }
  .hero-features { gap: 20px; }
  .shape-1, .shape-2, .shape-3 { display: none; }
  .cards-3 { grid-template-columns: 1fr; gap: 20px; }
  .card { height: auto; min-height: 350px; }
  .thumbs { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { 
    grid-template-columns: 1fr; 
    gap: 30px; 
    padding: 40px 0 30px;
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
    margin-top: 25px;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .footer-section {
    margin-bottom: 30px;
  }
  
  .footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .footer-section p, .footer-section a {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .site-footer .logo {
    font-size: 1.8rem;
    justify-content: center;
  }
  
  .site-footer .logo img {
    height: 45px;
  }
  .site-footer .logo img { max-height: 120px; }
  .logo img { max-height: 140px; display: block; margin: 0 auto; width: auto; border-radius: 14px; box-shadow: 0 4px 16px rgba(0,0,0,0.1); transition: all 0.3s ease; margin-top: -15px; }
  .logo { justify-content: flex-start; width: auto; text-align: left; margin: 0; margin-top: -15px !important; align-items: center; padding: 10px; background: transparent; border-radius: 16px; }
  .logo:hover { transform: scale(1.02); }
}

/* Mobile (320px - 480px) */
@media (max-width: 480px) {
  .container { padding: 0 12px; }
  
  /* Şık Header */
  .site-header { 
    backdrop-filter: saturate(200%) blur(25px); 
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.3);
  }
  
  /* Şık Navigation */
  .nav a {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
  }
  
  .nav a:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  }
  /* Şık Hero Section */
  .hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(25,119,54,0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(34,197,94,0.1) 0%, transparent 50%);
    z-index: 1;
  }
  
  .hero-content h1 { 
    font-size: 36px; 
    line-height: 1.2; 
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
    animation: slideInFromLeft 1.5s ease-out;
  }
  
  .hero-content p { 
    font-size: 14px; 
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
    animation: slideInFromLeft 1.8s ease-out;
  }
  
  .hero-stats { 
    grid-template-columns: 1fr; 
    gap: 15px; 
    position: relative;
    z-index: 2;
  }
  
  .hero-stats .stat { 
    padding: 20px; 
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    animation: slideInFromLeft 2.1s ease-out;
  }
  
  .hero-stats .stat:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  }
  
  .hero-stats .stat h3 { 
    font-size: 24px; 
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  }
  
  /* Soldan Gelen Animasyonlar */
  @keyframes slideInFromLeft {
    0% {
      transform: translateX(-100px);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  /* Vidalarını Sıkma Animasyonu */
  @keyframes tightenScrews {
    0% {
      transform: rotate(0deg) scale(1);
    }
    25% {
      transform: rotate(90deg) scale(1.05);
    }
    50% {
      transform: rotate(180deg) scale(1.1);
    }
    75% {
      transform: rotate(270deg) scale(1.05);
    }
    100% {
      transform: rotate(360deg) scale(1);
    }
  }
  
  /* El Sallama Animasyonu */
  @keyframes waveGoodbye {
    0% {
      transform: translateX(0) rotate(0deg);
    }
    20% {
      transform: translateX(10px) rotate(-10deg);
    }
    40% {
      transform: translateX(-5px) rotate(10deg);
    }
    60% {
      transform: translateX(8px) rotate(-8deg);
    }
    80% {
      transform: translateX(-3px) rotate(5deg);
    }
    100% {
      transform: translateX(100vw) rotate(0deg);
    }
  }
  
  /* Butonlara El Sallama Efekti */
  .btn {
    animation: slideInFromLeft 2.4s ease-out;
  }
  
  .btn:hover {
    animation: tightenScrews 0.8s ease-in-out;
  }
  
  .btn:active {
    animation: waveGoodbye 1.2s ease-in-out forwards;
  }
  .hero-stats .stat p { font-size: 12px; }
  .cards-3 { grid-template-columns: 1fr; gap: 20px; }
  .thumbs { grid-template-columns: 1fr; }
  .site-footer .logo img { max-height: 90px; }
  .logo img { max-height: 100px; display: block; margin: 0; width: auto; border-radius: 11px; box-shadow: 0 3px 13px rgba(0,0,0,0.1); transition: all 0.3s ease; margin-top: -12px; }
  .logo { justify-content: flex-start; width: auto; text-align: left; margin: 0; margin-top: -12px !important; align-items: center; padding: 7px; background: transparent; border-radius: 13px; }
  .logo:hover { transform: scale(1.02); }
  /* Şık Butonlar */
  .btn { 
    padding: 16px 32px; 
    font-size: 14px; 
    border-radius: 12px;
    background: linear-gradient(135deg, #197736 0%, #22c55e 100%);
    border: none;
    box-shadow: 0 8px 25px rgba(25,119,54,0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
  }
  
  .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(25,119,54,0.4);
  }
  
  .btn:hover::before {
    left: 100%;
  }
  .slide-content { padding: 40px 20px; margin: 20px; }
  .slide-content h2 { font-size: 36px; }
  .slide-content p { font-size: 16px; }
  .header-inner { height: 80px; }
  .nav { inset: 80px 0 auto 0; }
  .quote-section { padding: 40px 0; margin-bottom: 20px; }
  .quote-grid { grid-template-columns: 1fr; gap: 30px; }
  .quote-content h1 { font-size: 32px; }
  .quote-content p { font-size: 16px; }
  .quote-form { padding: 25px; }
}

/* Extra Small Mobile (320px and below) */
@media (max-width: 320px) {
  .container { padding: 0 8px; }
  
  /* Ultra Şık Header */
  .site-header { 
    backdrop-filter: saturate(250%) blur(30px); 
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    border-bottom: 2px solid rgba(255,255,255,0.3);
  }
  
  /* Ultra Şık Navigation */
  .nav a {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    padding: 14px 20px;
    margin: 4px 0;
  }
  
  .nav a:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  }
  .hero-content h1 { font-size: 28px; }
  .hero-content p { font-size: 12px; }
  .hero-stats .stat { padding: 10px; }
  .hero-stats .stat h3 { font-size: 20px; }
  .hero-stats .stat p { font-size: 10px; }
  .btn { padding: 10px 20px; font-size: 12px; }
  .slide-content { padding: 30px 15px; margin: 15px; }
  .slide-content h2 { font-size: 28px; }
  .slide-content p { font-size: 14px; }
  .site-footer .logo img { max-height: 80px; }
  .logo img { max-height: 90px; display: block; margin: 0; width: auto; border-radius: 10px; box-shadow: 0 3px 12px rgba(0,0,0,0.1); transition: all 0.3s ease; margin-top: -10px; }
  .logo { justify-content: flex-start; width: auto; text-align: left; margin: 0; margin-top: -10px !important; align-items: center; padding: 6px; background: transparent; border-radius: 12px; }
  .logo:hover { transform: scale(1.02); }
  .quote-section { padding: 30px 0; margin-bottom: 15px; }
  .quote-grid { grid-template-columns: 1fr; gap: 20px; }
  .quote-content h1 { font-size: 28px; }
  .quote-content p { font-size: 14px; }
  .quote-form { padding: 20px; }
}

/* Quote Section Responsive */
@media (max-width: 880px){
  .quote-section{padding:60px 0;margin-bottom:30px}
  .quote-grid{grid-template-columns:1fr;gap:40px}
  .quote-content{text-align:center}
  .quote-content h1{font-size:36px;margin:0 0 20px}
  .quote-content p{font-size:18px;margin:0 0 30px}
  .quote-actions{justify-content:center;gap:15px}
  .quote-actions .btn{min-width:200px;padding:16px 32px;font-size:15px}
  .quote-form{padding:30px}
  .quote-grid{grid-template-columns:1fr;gap:40px}
  .quote-content h1{font-size:32px;line-height:1.2}
  .quote-content p{font-size:16px;line-height:1.6}
  .quote-actions{flex-direction:column;gap:15px}
  .quote-actions .btn{min-width:auto;width:100%}
}

/* Navigation Responsive */
@media (max-width: 880px){
  .nav-toggle{display:inline-block !important;position:fixed;top:20px;right:20px;z-index:1001;background:rgba(255,255,255,0.98);backdrop-filter:blur(15px);border:2px solid rgba(25,119,54,0.3);border-radius:12px;padding:10px;box-shadow:0 8px 25px rgba(0,0,0,0.15);color:#197736;font-size:20px;font-weight:bold;cursor:pointer;transition:all 0.3s ease;width:50px;height:50px;text-align:center;line-height:30px;user-select:none}
  .nav-toggle:hover{background:rgba(255,255,255,1);border-color:rgba(25,119,54,0.5);transform:scale(1.05);box-shadow:0 8px 25px rgba(25,119,54,0.2)}
  .nav{position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(255,255,255,0.98);backdrop-filter:blur(25px);display:none;box-shadow:0 10px 40px rgba(0,0,0,0.15);z-index:999;padding:0;overflow-y:auto;animation:slideInFromCenter 0.3s ease-out;min-height:100vh}
  .nav.open{display:flex !important;flex-direction:column;justify-content:center;align-items:center;padding:0;text-align:center}
  .nav ul{flex-direction:column;padding:20px;gap:25px;max-width:400px;width:100%;margin:0 auto !important;list-style:none;display:flex !important;justify-content:center;align-items:center}
  .nav li{position:relative;width:100%;text-align:center;margin:0 auto}
  .nav a{padding:22px 30px;border-radius:18px;background:rgba(25,119,54,0.08);border:1px solid rgba(25,119,54,0.15);margin-bottom:15px;display:block;text-align:center;font-weight:600;transition:all 0.3s ease;font-size:18px;min-height:60px;display:flex;align-items:center;justify-content:center}
  .nav a:hover{background:rgba(25,119,54,0.15);transform:translateY(-2px);box-shadow:0 4px 15px rgba(25,119,54,0.2)}
  /* Mobilde dropdown menü tamamen gizle */
  .dropdown-menu{display:none !important}
  /* Mobilde dropdown arrow gizle */
  .dropdown-toggle .dropdown-arrow{display:none}
  /* Mobilde dropdown link normal link gibi çalışsın */
  .dropdown-toggle{pointer-events:auto}
  .site-footer .logo img{max-height:120px}
  .logo img{max-height:100px;display:block;margin:0;width:auto;border-radius:12px;box-shadow:0 4px 15px rgba(0,0,0,0.1);transition:all 0.3s ease;margin-top:-10px}
  .logo{justify-content:flex-start;width:auto;text-align:left;margin:0;margin-top:-10px !important;align-items:center;padding:8px;background:transparent;border-radius:15px}
  .logo:hover{transform:scale(1.02)}
}

/* Animasyonlar */
@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromCenter {
    0% {
        opacity: 0;
        transform: scale(0.95) translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Header separator line */
.header-separator{height:3px;background:linear-gradient(90deg, transparent, rgba(25,119,54,0.3), rgba(20,90,42,0.4), rgba(25,119,54,0.3), transparent);position:relative}
.header-separator::before{content:'';position:absolute;top:0;left:0;right:0;height:1px;background:linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent)}
.header-separator::after{content:'';position:absolute;bottom:0;left:0;right:0;height:1px;background:linear-gradient(90deg, transparent, rgba(25,119,54,0.6), transparent)}

/* Markalarımız Bölümü */
.brands-section{padding:60px 0;background:linear-gradient(135deg, #000000 0%, #1a1a1a 100%);position:relative;overflow:hidden;width:100vw;margin-left:calc(-50vw + 50%)}
.brands-section::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 100 100"><defs><pattern id="brands-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23brands-dots)"/></svg>');opacity:0.3;z-index:1}
.brands-section h2{text-align:center;font-size:2.5rem;font-weight:700;color:#ffffff;margin-bottom:40px;position:relative;z-index:2;text-shadow:0 2px 4px rgba(0,0,0,0.5);width:100%;padding:0 20px}
.brands-slider{position:relative;overflow:hidden;background:rgba(0,0,0,0.8);backdrop-filter:blur(10px);border-radius:20px;padding:30px 0;box-shadow:0 10px 30px rgba(0,0,0,0.3);border:1px solid rgba(255,255,255,0.2);width:100vw;margin-left:calc(-50vw + 50%);cursor:grab;user-select:none;touch-action:pan-y}
.brands-slider:active{cursor:grabbing}
.brands-track{display:flex;gap:40px;align-items:center;width:max-content;will-change:transform;flex-shrink:0}
.brands-track.dragging{transition:none}
.brand-item{flex:0 0 auto;width:120px;height:80px;display:flex;align-items:center;justify-content:center;background:rgba(255,255,255,0.95);border-radius:12px;box-shadow:0 4px 15px rgba(0,0,0,0.3);transition:all 0.3s ease;border:1px solid rgba(255,255,255,0.3)}
.brand-item:hover{transform:scale(1.05);box-shadow:0 8px 25px rgba(255,255,255,0.2);background:rgba(255,255,255,1)}
.brand-item img{max-width:100px;max-height:60px;object-fit:contain;filter:grayscale(0.3);transition:all 0.3s ease}
.brand-item:hover img{filter:grayscale(0);transform:scale(1.1)}
.brand-placeholder{display:flex;align-items:center;justify-content:center;width:100px;height:60px;background:linear-gradient(135deg, #197736, #145a2a);color:white;font-weight:600;font-size:12px;text-align:center;border-radius:8px;transition:all 0.3s ease}
.brand-item:hover .brand-placeholder{transform:scale(1.1);box-shadow:0 4px 15px rgba(25,119,54,0.3)}

/* Markalar Animasyonu - Kaldırıldı (Artık manuel sürükleme var) */

/* Contact Hero Section */
.contact-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #197736 0%, #145a2a 100%);
    position: relative;
    overflow: hidden;
}

.contact-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 100 100"><defs><pattern id="contact-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-dots)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.contact-hero-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.contact-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-feature:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 1.2rem;
}

.feature-text {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Responsive Contact Hero */
@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 0;
    }
    
    .contact-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .contact-hero-content p {
        font-size: 1rem;
    }
    
    .contact-hero-features {
        gap: 20px;
    }
    
    .hero-feature {
        padding: 10px 16px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 40px 0;
    }
    
    .contact-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .contact-hero-features {
        flex-direction: column;
        align-items: center;
    }
}

/* Blog Preview Kutucuğu */
.blog-preview {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.blog-preview::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 100 100"><defs><pattern id="blog-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(25,119,54,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23blog-dots)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.blog-preview-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.blog-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-preview-content {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.blog-preview-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #197736, #145a2a);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 20px rgba(25, 119, 54, 0.3);
    transition: all 0.3s ease;
}

.blog-preview-card:hover .blog-preview-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(25, 119, 54, 0.4);
}

.blog-preview-text {
    flex: 1;
    min-width: 300px;
}

.blog-preview-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
    line-height: 1.3;
}

.blog-preview-text p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.blog-preview-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #197736, #145a2a);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(25, 119, 54, 0.3);
    border: none;
    cursor: pointer;
}

.blog-preview-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(25, 119, 54, 0.4);
    background: linear-gradient(135deg, #1e8a3e, #1a6b2e);
    color: white;
    text-decoration: none;
}

.blog-preview-btn svg {
    transition: transform 0.3s ease;
}

.blog-preview-btn:hover svg {
    transform: translateX(3px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle,
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #197736;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle:hover,
.nav-toggle:hover {
    background: rgba(25, 119, 54, 0.1);
    transform: scale(1.05);
}

/* Sadece mobilde göster */
@media (max-width: 768px) {
    .mobile-menu-toggle,
    .nav-toggle {
        display: block;
    }
}

/* Responsive Blog Preview */
@media (max-width: 768px) {
    .blog-preview {
        padding: 40px 0;
    }
    
    .blog-preview-card {
        padding: 30px 20px;
    }
    
    .blog-preview-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .blog-preview-text {
        min-width: auto;
    }
    
    .blog-preview-text h3 {
        font-size: 1.3rem;
    }
    
    .blog-preview-text p {
        font-size: 0.9rem;
    }
    
    .blog-preview-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .blog-preview {
        padding: 30px 0;
    }
    
    .blog-preview-card {
        padding: 25px 15px;
    }
    
    .blog-preview-icon {
        width: 50px;
        height: 50px;
    }
    
    .blog-preview-text h3 {
        font-size: 1.2rem;
    }
    
    .blog-preview-text p {
        font-size: 0.85rem;
    }
}






.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.about-text h2 {
    color: var(--brand);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-text ul {
    list-style: none;
    padding: 0;
}

.about-text li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

.team-section {
    background: #f8f9fa;
    padding: 60px 0;
}

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

.team-member {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.member-photo img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.team-member h3 {
    color: var(--brand);
    margin-bottom: 0.5rem;
}

.certificates {
    padding: 60px 0;
}

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

.cert-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.cert-item h3 {
    color: var(--brand);
    margin-bottom: 0.5rem;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    color: var(--brand);
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: var(--brand);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.working-hours {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.working-hours h3 {
    color: var(--brand);
    margin-bottom: 1rem;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-form h2 {
    color: var(--brand);
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--brand);
}

.btn-full {
    width: 100%;
    padding: 15px;
    font-size: 16px;
}


/* Services More Button */
.services-more {
    text-align: center;
    margin-top: 40px;
    padding: 20px 0;
}

.services-more .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #197736 0%, #22c55e 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(25, 119, 54, 0.3);
    border: none;
    cursor: pointer;
}

.services-more .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(25, 119, 54, 0.4);
}

.services-more .btn:active {
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero { padding: 60px 0; min-height: auto; }
    .hero-title { font-size: 2rem; }
    .hero-description { font-size: 1rem; }
    .hero-stats { grid-template-columns: 1fr; gap: 16px; }
    .hero-actions { flex-direction: column; gap: 12px; }
    .hero-features { flex-direction: column; gap: 12px; }
    
    .services-more .btn {
        padding: 14px 28px;
        font-size: 15px;
    }
}

/* MOBİL DÜZELTMELERİ - YENİ - CACHE TEMİZLEME: <?php echo time(); ?> */
@media (max-width: 768px) {
    /* Sidebar düzeltmeleri */
    .nav-toggle {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1001;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(15px);
        border: 2px solid rgba(25,119,54,0.3);
        border-radius: 12px;
        padding: 10px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        color: #197736;
        font-size: 20px;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
        width: 50px;
        height: 50px;
        text-align: center;
        line-height: 30px;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
    }
    
    .nav-toggle:hover {
        background: rgba(255,255,255,1);
        border-color: rgba(25,119,54,0.5);
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(25,119,54,0.2);
    }
    
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(25px);
        display: none;
        z-index: 999;
        padding: 0;
        overflow-y: auto;
        min-height: 100vh;
        animation: slideInFromCenter 0.3s ease-out;
    }
    
    .nav.open {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0;
        text-align: center;
    }
    
    .nav ul {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        padding: 20px;
        gap: 25px;
        list-style: none;
        display: flex;
    }
    
    .nav a {
        padding: 22px 30px;
        border-radius: 18px;
        background: rgba(25,119,54,0.08);
        border: 1px solid rgba(25,119,54,0.15);
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-weight: 600;
        font-size: 18px;
        min-height: 60px;
        transition: all 0.3s ease;
    }
    
    /* Mobilde dropdown menü tamamen gizle */
    .dropdown-menu {
        display: none !important;
    }
    
    /* Mobilde dropdown arrow gizle */
    .dropdown-toggle .dropdown-arrow {
        display: none;
    }
    
    /* Mobilde dropdown link normal link gibi çalışsın */
    .dropdown-toggle {
        pointer-events: auto;
    }
    
    .dropdown-menu a {
        padding: 18px 30px;
        font-size: 16px;
        display: flex !important;
        align-items: center;
        justify-content: flex-start;
        border-bottom: 1px solid rgba(229,231,235,0.3);
        margin: 0;
        transition: all 0.3s ease;
        min-height: 50px;
    }
    
    .dropdown-menu a:hover {
        background: rgba(25,119,54,0.1);
        padding-left: 40px;
    }
    
    .dropdown-menu a:last-child {
        border-bottom: none;
    }
    
    /* Desktop'ta hover ile göster (mobilde zaten her zaman görünür) */
    @media (min-width: 881px) {
        .dropdown:hover .dropdown-menu {
            display: block !important;
        }
    }
    
    /* Footer düzeltmeleri */
    .footer-inner {
        grid-template-columns: 1fr !important;
        gap: 30px;
        padding: 40px 0 30px;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
        margin-top: 25px;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .footer-section {
        margin-bottom: 30px;
    }
    
    .footer-section h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .footer-section p, .footer-section a {
        font-size: 14px;
        line-height: 1.6;
    }
    
    /* Kartlar düzeltmeleri */
    .cards-3 {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .card {
        height: auto !important;
        min-height: 350px;
    }
    
    /* Quote section düzeltmeleri */
    .quote-grid {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }
    
    .quote-content h1 {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .quote-content p {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .quote-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .quote-actions .btn {
        min-width: auto;
        width: 100%;
    }
    
    /* Ekibimiz responsive */
    .team-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .team-member {
        padding: 20px !important;
    }
    
    .member-icon {
        font-size: 36px !important;
        margin-bottom: 15px !important;
    }
    
    .team-member h3 {
        font-size: 18px !important;
        margin-bottom: 8px !important;
    }
    
    .team-member p {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }
    
    /* Değerlerimiz responsive */
    .values-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .value-item {
        padding: 20px !important;
    }
    
    .value-icon {
        font-size: 36px !important;
        margin-bottom: 15px !important;
    }
    
    .value-item h3 {
        font-size: 18px !important;
        margin-bottom: 10px !important;
    }
    
    .value-item p {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }
    
    /* Neden bizi seçmelisiniz responsive */
    .why-choose-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .why-item {
        padding: 15px !important;
    }
    
    .why-icon {
        font-size: 36px !important;
        margin-bottom: 15px !important;
    }
    
    .why-item h3 {
        font-size: 18px !important;
        margin-bottom: 10px !important;
    }
    
    .why-item p {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }
    
    /* Services hero responsive */
    .services-hero .hero-content {
        max-width: 100% !important;
        padding: 0 20px !important;
    }
    
    .services-hero .hero-stats {
        flex-direction: column !important;
        gap: 20px !important;
        margin-top: 30px !important;
    }
    
    .services-hero .stat-item {
        padding: 15px !important;
        background: rgba(255,255,255,0.1) !important;
        border-radius: 10px !important;
    }
    
    .services-hero .stat-number {
        font-size: 36px !important;
    }
    
    /* Services more button responsive */
    .services-more .btn {
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
        display: block !important;
    }
    
    /* Container responsive */
    .container {
        padding: 0 20px !important;
        max-width: 100% !important;
    }
    
    /* Section padding responsive */
    .values-section,
    .team-section,
    .why-choose-section {
        padding: 40px 0 !important;
    }
    
    /* About hero responsive */
    .about-hero {
        padding: 40px 0 !important;
    }
    
    .about-hero h1 {
        font-size: 28px !important;
        line-height: 1.2 !important;
    }
    
    .about-hero p {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }
    
    /* Mission vision responsive */
    .mission-vision-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .mission-card,
    .vision-card {
        padding: 20px !important;
    }
    
    /* About text section responsive */
    .about-text-content {
        padding: 0 20px !important;
    }
    
    .about-text-content h2 {
        font-size: 24px !important;
        margin-bottom: 15px !important;
    }
    
    .about-text-content p {
        font-size: 16px !important;
        line-height: 1.6 !important;
        margin-bottom: 15px !important;
    }
    
    /* 404 Page Responsive */
    .error-hero h1 {
        font-size: 48px !important;
    }
    
    .error-hero h2 {
        font-size: 24px !important;
    }
    
    .error-hero p {
        font-size: 16px !important;
    }
    
    .error-actions {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .error-actions .btn {
        width: 100% !important;
        max-width: 300px !important;
    }
    
    .links-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .link-card {
        padding: 20px !important;
    }
    
    .helpful-content h2 {
        font-size: 24px !important;
    }
    
    .helpful-content p {
        font-size: 16px !important;
    }
    
    /* WhatsApp FAB Responsive */
    .whatsapp-fab {
        width: 50px !important;
        height: 50px !important;
        right: 15px !important;
        bottom: 15px !important;
    }
    
    .whatsapp-fab svg {
        width: 24px !important;
        height: 24px !important;
    }
}

/* Values Content CSS */
.values-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* Values Grid CSS */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 2px solid #197736;
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #197736;
}

.value-item h3 {
    color: #197736;
    margin-bottom: 15px;
    font-size: 20px;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

/* Team Section CSS */
.team-section {
    background: #f8f9fa;
    padding: 80px 0;
}

/* Team Content CSS */
.team-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.team-content h2 {
    color: #197736;
    margin-bottom: 20px;
}

.team-content p {
    color: #666;
    font-size: 18px;
    margin-bottom: 50px;
}

/* Team Grid CSS */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-member {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.member-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #197736;
}

.team-member h3 {
    color: #197736;
    margin-bottom: 10px;
}

.team-member p {
    color: #666;
}

/* Why Choose Section CSS */
.why-choose-section {
    padding: 80px 0;
}

.why-choose-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.why-choose-content h2 {
    color: #197736;
    margin-bottom: 20px;
}

.why-choose-content p {
    color: #666;
    font-size: 18px;
    margin-bottom: 50px;
}

/* Why Choose Grid CSS */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.why-item {
    text-align: center;
    padding: 20px;
}

.why-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #197736;
}

.why-item h3 {
    color: #197736;
    margin-bottom: 15px;
}

.why-item p {
    color: #666;
}

/* 404 Page Styles */
.error-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.error-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.error-icon {
    font-size: 120px;
    margin-bottom: 30px;
    color: #197736;
}

.error-hero h1 {
    font-size: 72px;
    font-weight: 800;
    margin: 0 0 20px;
    color: #197736;
}

.error-hero h2 {
    font-size: 36px;
    font-weight: 600;
    margin: 0 0 20px;
    color: white;
}

.error-hero p {
    font-size: 18px;
    color: #e2e8f0;
    margin: 0 0 40px;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.error-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.error-actions .btn-primary {
    background: linear-gradient(135deg, #197736 0%, #22c55e 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(25,119,54,0.3);
}

.error-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(25,119,54,0.4);
}

.error-actions .btn-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.error-actions .btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-3px);
}

.helpful-links {
    padding: 80px 0;
    background: #f8f9fa;
}

.helpful-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.helpful-content h2 {
    color: #197736;
    margin-bottom: 20px;
    font-size: 32px;
}

.helpful-content p {
    color: #666;
    font-size: 18px;
    margin-bottom: 50px;
}

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

.link-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.link-card:hover {
    transform: translateY(-5px);
}

.link-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #197736;
}

.link-card h3 {
    color: #197736;
    margin-bottom: 15px;
    font-size: 20px;
}

.link-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.link-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #197736 0%, #22c55e 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.link-card a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(25,119,54,0.3);
}

/* 404 Page Background Pattern */
.error-bg-pattern {
    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 100 100"><defs><pattern id="error-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(25,119,54,0.1)"/><circle cx="80" cy="20" r="2" fill="rgba(25,119,54,0.1)"/><circle cx="20" cy="80" r="2" fill="rgba(25,119,54,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(25,119,54,0.1)"/><circle cx="50" cy="50" r="1" fill="rgba(34,197,94,0.2)"/></pattern></defs><rect width="100" height="100" fill="url(%23error-pattern)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

/* Flying Plane Animation */
.flying-plane {
    position: absolute;
    top: 20%;
    right: 10%;
    z-index: 2;
    animation: flyAround 8s ease-in-out infinite;
    opacity: 0.7;
}

@keyframes flyAround {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
    25% {
        transform: translateX(-50px) translateY(-30px) rotate(5deg);
    }
    50% {
        transform: translateX(-100px) translateY(0) rotate(0deg);
    }
    75% {
        transform: translateX(-50px) translateY(30px) rotate(-5deg);
    }
    100% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
}

/* Responsive Flying Plane */
@media (max-width: 768px) {
    .flying-plane {
        top: 15%;
        right: 5%;
        transform: scale(0.8);
    }
    
    .flying-plane svg {
        width: 40px;
        height: 40px;
    }
}
