/*
Theme Name: AKI Theme
Theme URI: https://aki.com
Author: AKI
Description: AKI markasina ozel modern WordPress temasi
Version: 1.0
Text Domain: aki-theme
*/

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --aki-primary: #3BA88E;
    --aki-primary-dark: #2D8A73;
    --aki-primary-light: #E8F5F1;
    --aki-dark: #1A1A2E;
    --aki-gray: #6B7280;
    --aki-light: #F9FAFB;
    --aki-white: #FFFFFF;
    --aki-border: #E5E7EB;
    --aki-shadow: 0 4px 24px rgba(59, 168, 142, 0.12);
    --aki-radius: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--aki-dark);
    line-height: 1.7;
    background: var(--aki-white);
    overflow-x: hidden;
}

a { color: var(--aki-primary); text-decoration: none; transition: all 0.3s ease; }
a:hover { color: var(--aki-primary-dark); }

img { max-width: 100%; height: auto; }

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

/* Header */
.site-header {
    background: var(--aki-white);
    border-bottom: 1px solid var(--aki-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    background: rgba(255,255,255,0.95);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.site-logo img {
    height: 48px;
    width: auto;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.main-nav a {
    color: var(--aki-dark);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    position: relative;
}

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

.main-nav a:hover::after,
.main-nav .current-menu-item a::after {
    width: 100%;
}

.nav-cta-katalog a {
    background: #E8870E;
    color: var(--aki-white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
}

.nav-cta-katalog a:hover {
    background: #D07A0C;
    transform: translateY(-1px);
    box-shadow: 0 4px 24px rgba(232, 135, 14, 0.25);
}

.nav-cta a {
    background: var(--aki-primary);
    color: var(--aki-white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
}

.nav-cta a:hover {
    background: var(--aki-primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--aki-shadow);
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--aki-dark);
    margin: 5px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, var(--aki-primary-light) 0%, var(--aki-white) 50%, #F0FDF9 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59,168,142,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--aki-dark);
    margin-bottom: 24px;
}

.hero-content h1 span {
    color: var(--aki-primary);
}

.hero-content p {
    font-size: 18px;
    color: var(--aki-gray);
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--aki-primary);
    color: var(--aki-white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--aki-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59,168,142,0.3);
    color: var(--aki-white);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--aki-white);
    color: var(--aki-dark);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--aki-border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--aki-primary);
    color: var(--aki-primary);
    transform: translateY(-2px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-wrapper {
    width: 400px;
    height: 400px;
    background: var(--aki-white);
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(59,168,142,0.15);
    animation: float 6s ease-in-out infinite;
}

.hero-logo-wrapper img {
    width: 70%;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Stats */
.stats-bar {
    padding: 40px 0;
    background: var(--aki-white);
    border-bottom: 1px solid var(--aki-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--aki-primary);
    margin-bottom: 4px;
}

.stat-item p {
    font-size: 14px;
    color: var(--aki-gray);
    font-weight: 500;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--aki-light);
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header .badge {
    display: inline-block;
    background: var(--aki-primary-light);
    color: var(--aki-primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--aki-dark);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 17px;
    color: var(--aki-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--aki-white);
    border-radius: var(--aki-radius);
    padding: 36px;
    border: 1px solid var(--aki-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--aki-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--aki-shadow);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--aki-primary-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--aki-dark);
}

.service-card p {
    font-size: 15px;
    color: var(--aki-gray);
    line-height: 1.7;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    background: linear-gradient(135deg, var(--aki-primary-light), #D1FAE5);
    border-radius: var(--aki-radius);
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.about-image img {
    width: 70%;
    filter: drop-shadow(0 10px 30px rgba(59,168,142,0.2));
}

.about-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--aki-gray);
    font-size: 16px;
    margin-bottom: 16px;
}

.about-features {
    list-style: none;
    margin-top: 24px;
}

.about-features li {
    padding: 8px 0;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-features li::before {
    content: '✓';
    width: 28px;
    height: 28px;
    background: var(--aki-primary-light);
    color: var(--aki-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
}

/* Projects / Portfolio */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.project-card {
    border-radius: var(--aki-radius);
    overflow: hidden;
    background: var(--aki-white);
    border: 1px solid var(--aki-border);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--aki-shadow);
}

.project-thumb {
    height: 200px;
    background: linear-gradient(135deg, var(--aki-primary), var(--aki-primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.project-info {
    padding: 24px;
}

.project-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.project-info p {
    font-size: 14px;
    color: var(--aki-gray);
    margin-bottom: 16px;
}

.project-tag {
    display: inline-block;
    background: var(--aki-primary-light);
    color: var(--aki-primary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-right: 6px;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--aki-white);
    border-radius: var(--aki-radius);
    padding: 32px;
    border: 1px solid var(--aki-border);
}

.testimonial-stars {
    color: #F59E0B;
    font-size: 16px;
    margin-bottom: 16px;
}

.testimonial-card blockquote {
    font-size: 15px;
    color: var(--aki-gray);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--aki-primary);
    color: var(--aki-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.testimonial-author strong {
    display: block;
    font-size: 15px;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--aki-gray);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--aki-primary) 0%, var(--aki-primary-dark) 100%);
    text-align: center;
    color: var(--aki-white);
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--aki-white);
    color: var(--aki-primary);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: var(--aki-primary-dark);
}

/* Footer */
.site-footer {
    background: var(--aki-dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img {
    height: 40px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--aki-primary);
    color: var(--aki-white);
}

.footer-col h4 {
    color: var(--aki-white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

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

.footer-col a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.footer-col a:hover {
    color: var(--aki-primary);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

/* Contact form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: var(--aki-primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-info-item p {
    font-size: 14px;
    color: var(--aki-gray);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--aki-border);
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    margin-bottom: 16px;
    transition: border-color 0.3s ease;
    background: var(--aki-white);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--aki-primary);
    box-shadow: 0 0 0 3px rgba(59,168,142,0.1);
}

.contact-form textarea {
    height: 140px;
    resize: vertical;
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    border-radius: var(--aki-radius);
    overflow: hidden;
    background: var(--aki-white);
    border: 1px solid var(--aki-border);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--aki-shadow);
}

.blog-thumb {
    height: 180px;
    background: linear-gradient(135deg, var(--aki-primary-light), #D1FAE5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.blog-info {
    padding: 24px;
}

.blog-meta {
    font-size: 13px;
    color: var(--aki-gray);
    margin-bottom: 8px;
}

.blog-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.blog-info h3 a {
    color: var(--aki-dark);
}

.blog-info h3 a:hover {
    color: var(--aki-primary);
}

.blog-info p {
    font-size: 14px;
    color: var(--aki-gray);
}

/* Page content */
.page-header {
    padding: 60px 0;
    background: var(--aki-primary-light);
    text-align: center;
}

.page-header h1 {
    font-size: 40px;
    font-weight: 800;
    color: var(--aki-dark);
}

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

.page-content h2 { font-size: 28px; font-weight: 700; margin: 32px 0 16px; }
.page-content h3 { font-size: 22px; font-weight: 700; margin: 24px 0 12px; }
.page-content p { margin-bottom: 16px; color: var(--aki-gray); font-size: 16px; }
.page-content ul, .page-content ol { margin: 16px 0; padding-left: 24px; color: var(--aki-gray); }
.page-content li { margin-bottom: 8px; }

/* Responsive */
@media (max-width: 968px) {
    .hero .container { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-content h1 { font-size: 38px; }
    .hero-buttons { justify-content: center; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid, .projects-grid, .testimonials-grid, .blog-grid { grid-template-columns: 1fr 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .menu-toggle { display: block; }
    .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--aki-white); padding: 24px; border-bottom: 1px solid var(--aki-border); }
    .main-nav.active { display: block; }
    .main-nav ul { flex-direction: column; gap: 16px; }
    .hero-content h1 { font-size: 32px; }
    .hero-logo-wrapper { width: 280px; height: 280px; }
    .services-grid, .projects-grid, .testimonials-grid, .blog-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .section-header h2 { font-size: 28px; }
}
