/**
 * Blog Ana CSS Dosyası
 * Modern ve Responsive Tasarım
 */

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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #64748b;
    --text-color: #1e293b;
    --text-light: #64748b;
    --bg-color: #ffffff;
    --bg-light: #f8fafc;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --error-color: #ef4444;
    --warning-color: #f59e0b;
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-light);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 20px 2rem;
}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    transition: background-color 0.3s ease;
}

/* Solid Header (ürün sayfası için) */
.header-solid {
    background-color: var(--bg-color);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    position: sticky;
}

.header-solid .logo a {
    color: var(--primary-color);
    text-shadow: none;
}

.header-solid .logo a:hover {
    color: var(--primary-dark);
}

.header-solid .nav a {
    color: var(--text-color);
    text-shadow: none;
}

.header-solid .nav a:hover {
    color: var(--primary-color);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
}

.logo:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* .header-solid .logo-image {
    filter: brightness(0) saturate(100%) invert(27%) sepia(95%) saturate(2598%) hue-rotate(212deg) brightness(98%) contrast(92%);
} */

.nav {
    display: flex;
    gap: 1.5rem;
}

.nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Main Content */
.main {
    min-height: calc(100vh - 200px);
    padding: 0;
}

/* Hero Section */
.hero-section {
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
    min-height: 100vh;
    box-sizing: border-box;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.hero-image {
    width: 100%;
    height: 100vh;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
}

/* Products Section */
.products-section {
    margin: 4rem 0;
    padding: 3rem 0;
}

.products-section-fullwidth {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 3rem 0;
    box-sizing: border-box;
}

.work-cards-section {
    margin: 4rem 0;
    padding: 3rem 0;
}

.products-header {
    text-align: center;
    margin-bottom: 3rem;
}

.products-title {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.products-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.products-grid-full {
    max-width: 100%;
}

/* Products Slider */
.products-slider-wrapper {
    position: relative;
    width: 100%;
}

.products-slider-container {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 1400px;
    width: 100%;
    padding: 0 3rem;
}

.products-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 1.5rem;
    will-change: transform;
}

.product-slide {
    flex: 0 0 calc(25% - 1.125rem);
    min-width: 0;
}

.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.product-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: var(--bg-light);
    position: relative;
}

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

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

.product-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    color: var(--text-light);
}

.product-image-placeholder i {
    font-size: 4rem;
    opacity: 0.5;
}

.product-card-old {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

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

.product-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.product-card:hover .product-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.product-icon i {
    font-size: 2.5rem;
    color: white;
}

.product-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 0;
}

.product-content {
    position: relative;
    z-index: 1;
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Çalışma kartları için özel stil (icon ile) */
.work-cards-section .product-card {
    padding: 2rem;
    display: block;
}

.work-cards-section .product-content {
    padding: 0;
    margin-top: 1rem;
}

.product-name {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
    line-height: 1.4;
}

.product-description {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
    flex: 1;
}

/* Slider Buttons */
.products-section-fullwidth .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--primary-color);
    font-size: 1.25rem;
}

.products-section-fullwidth .slider-btn:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-lg);
    transform: translateY(-50%) scale(1.1);
}

.products-section-fullwidth .slider-btn-prev {
    left: 2rem;
}

.products-section-fullwidth .slider-btn-next {
    right: 2rem;
}

/* Genel slider butonları (diğer yerler için) */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--primary-color);
    font-size: 1.25rem;
}

.slider-btn:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-lg);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn-prev {
    left: -25px;
}

.slider-btn-next {
    right: -25px;
}

/* How We Work Section */
.how-we-work-section {
    width: 100vw;
    max-width: 100vw;
    margin: 4rem 0;
    padding: 3rem 0;
    background-color: #dc2626;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.how-we-work-section .products-header {
    position: relative;
    z-index: 1;
}

.how-we-work-section .products-title {
    color: #ffffff;
}

.how-we-work-section .products-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.work-steps-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 0.5rem;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.work-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.5rem;
}

.arrow-icon {
    width: 50px;
    height: auto;
    opacity: 0.8;
    filter: brightness(0) invert(1);
}

.work-step {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    text-align: center;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.work-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.work-step:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.step-icon i {
    font-size: 2.5rem;
    color: white;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 0;
}

.step-content {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.step-title {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
    line-height: 1.4;
}

.step-description {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
    flex: 1;
}

/* Blog Section */
.blog-section {
    margin: 4rem 0 2rem;
}

.blog-section-fullwidth {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 3rem 0;
    box-sizing: border-box;
}

.posts-slider-wrapper {
    position: relative;
    width: 100%;
}

.posts-slider-container {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 1400px;
    width: 100%;
    padding: 0 3rem;
}

.posts-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 1.5rem;
    will-change: transform;
}

.post-slide {
    flex: 0 0 calc(25% - 1.125rem);
    min-width: 0;
}

.blog-section-fullwidth .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--primary-color);
    font-size: 1.25rem;
}

.blog-section-fullwidth .slider-btn:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-lg);
    transform: translateY(-50%) scale(1.1);
}

.blog-section-fullwidth .slider-btn-prev {
    left: 2rem;
}

.blog-section-fullwidth .slider-btn-next {
    right: 2rem;
}

.posts-container-full {
    max-width: 100%;
}

.section-title {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

/* Posts Container */
.posts-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 0 auto;
}

/* Post Card */
.post-card {
    background-color: var(--bg-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

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

.post-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.post-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: var(--bg-light);
    position: relative;
}

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

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

.post-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    color: var(--text-light);
}

.post-image-placeholder svg {
    width: 60px;
    height: 60px;
    opacity: 0.5;
}

.post-content-wrapper {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-title {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-excerpt {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.6;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Post Detail */
.post-detail {
    background-color: var(--bg-color);
    border-radius: 8px;
    padding: 3rem;
    box-shadow: var(--shadow-md);
    max-width: 900px;
    margin: 0 auto;
}

.post-detail-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.post-detail-image {
    width: 100%;
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
}

.post-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.post-detail-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.post-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-detail-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

/* Product Detail */
.product-detail {
    background-color: var(--bg-color);
    border-radius: 8px;
    padding: 3rem;
    box-shadow: var(--shadow-md);
    max-width: 900px;
    margin: 0 auto;
}

.product-detail-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.product-detail-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.product-detail-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 2rem;
    border-radius: 8px;
    overflow: hidden;
}

.product-detail-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    display: block;
    object-fit: contain;
    object-position: center;
}

.product-description-section {
    margin-bottom: 2rem;
}

.product-description-section h2 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.product-description-section p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-color);
}

.product-specs {
    margin-bottom: 2rem;
}

.product-specs h2 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

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

.spec-item {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.spec-label {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.spec-value {
    font-size: 1.125rem;
    color: var(--text-color);
    font-weight: 600;
}

.product-detail-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.back-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--primary-dark);
}

/* No Posts */
.no-posts {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
}

/* Footer */
.footer {
    background-color: #1e293b;
    color: #cbd5e1;
    padding: 3rem 0 1.5rem;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background-image: url('../images/world.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
    filter: brightness(0) invert(1);
}

.footer-content {
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    align-items: start;
}

.footer-logo-section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.footer-logo-image {
    height: 80px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    /* filter: brightness(0) invert(1); */
    opacity: 0.9;
}

.footer-section h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-section p {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.footer-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #60a5fa;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 1.5rem;
    text-align: center;
    color: #94a3b8;
    font-size: 0.875rem;
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .work-steps-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .work-arrow {
        display: none;
    }
    
    .product-slide {
        flex: 0 0 calc(50% - 0.75rem);
    }
    
    .slider-btn-prev {
        left: 10px;
    }
    
    .slider-btn-next {
        right: 10px;
    }
    
    .product-detail {
        padding: 1.5rem;
    }
    
    .product-detail-title {
        font-size: 1.75rem;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .products-section {
        margin: 2rem 0;
        padding: 2rem 0;
    }
    
    .products-section-fullwidth {
        padding: 2rem 0;
    }
    
    .products-slider-container {
        padding: 0 1rem;
    }
    
    .blog-section-fullwidth {
        padding: 2rem 0;
    }
    
    .posts-slider-container {
        padding: 0 1rem;
    }
    
    .post-slide {
        flex: 0 0 calc(50% - 0.75rem);
    }
    
    .products-title {
        font-size: 1.75rem;
    }
    
    .posts-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .post-detail {
        padding: 1.5rem;
    }
    
    .post-detail-title {
        font-size: 1.75rem;
    }
    
    .post-content {
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-logo-section {
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    .hero-section {
        margin: 0;
        padding: 0;
        min-height: 100vh;
        min-height: 500px;
    }
    
    .hero-image {
        height: 100vh;
        border-radius: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .main {
        padding: 1rem 0;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .work-steps-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-card {
        padding: 1.5rem;
    }
    
    .product-icon {
        width: 60px;
        height: 60px;
    }
    
    .product-icon i {
        font-size: 2rem;
    }
    
    .product-number {
        font-size: 3rem;
    }
    
    .products-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .work-steps-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .work-arrow {
        display: none;
    }
    
    .posts-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .post-detail {
        padding: 1rem;
    }
    
    .product-slide {
        flex: 0 0 100%;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-btn-prev {
        left: 5px;
    }
    
    .slider-btn-next {
        right: 5px;
    }
}

