/* ============================================
   ATES PREMIUM - ANA CSS DOSYASI
   Yol: /assets/css/ates-main.css
============================================ */

/* ============================================
   RESET & BASE
============================================ */
:root {
    --ates-gold: #c9a84c;
    --ates-gold-light: #e8d5a8;
    --ates-gold-dark: #a8893a;
    --ates-dark: #0e0e0e;
    --ates-dark-light: #1a1a1a;
    --ates-gray: #888;
    --ates-light: #f7f5f0;
    --ates-white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
}

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

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

/* ============================================
   BUTTONS - PREMIUM
============================================ */
.ates-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--ates-gold);
    color: var(--ates-dark);
    padding: 16px 40px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.ates-btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.ates-btn-primary:hover::after {
    transform: translateX(0);
}

.ates-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(201, 168, 76, 0.3);
}

.ates-btn-primary .ates-arrow {
    transition: transform 0.3s ease;
}

.ates-btn-primary:hover .ates-arrow {
    transform: translateX(6px);
}

.ates-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--ates-white);
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.ates-btn-outline:hover {
    background: var(--ates-gold);
    border-color: var(--ates-gold);
    color: var(--ates-dark);
    transform: translateY(-2px);
}

.ates-btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--ates-dark);
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1.5px solid var(--ates-dark);
    transition: all 0.3s ease;
}

.ates-btn-outline-dark:hover {
    background: var(--ates-dark);
    color: var(--ates-white);
    transform: translateY(-2px);
}

/* ============================================
   HEADER - PREMIUM
============================================ */
.ates-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s ease;
    background: transparent;
}

.ates-header.scrolled {
    background: rgba(14, 14, 14, 0.95);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ates-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ates-logo img {
    height: 44px;
    width: auto;
    filter: brightness(0) invert(1);
}

.ates-header.scrolled .ates-logo img {
    filter: brightness(0) invert(1);
}

.ates-nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.ates-nav-menu .nav-link {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
    position: relative;
}

.ates-nav-menu .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1.5px;
    background: var(--ates-gold);
    transition: width 0.3s ease;
}

.ates-nav-menu .nav-link:hover::after {
    width: 100%;
}

.ates-nav-menu .nav-link:hover {
    color: var(--ates-gold);
}

.ates-nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ates-lang-switch {
    display: flex;
    gap: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
}

.ates-lang-switch a {
    padding: 4px 8px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.ates-lang-switch a:hover,
.ates-lang-switch a.active {
    color: var(--ates-gold);
}

.ates-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.ates-hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.ates-header.scrolled .ates-hamburger span {
    background: #fff;
}

/* ============================================
   HERO - BÜYÜK & DRAMATİK
============================================ */
.ates-hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--ates-dark);
}

.ates-hero-bg {
    position: absolute;
    inset: 0;
}

.ates-hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity;
}

.ates-hero-slide.active {
    opacity: 1;
}

.ates-hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 14, 14, 0.8) 0%, rgba(14, 14, 14, 0.3) 50%, rgba(14, 14, 14, 0.6) 100%);
}

.ates-hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
}

.ates-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.15);
    color: var(--ates-gold);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    margin-bottom: 28px;
}

.ates-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ates-gold);
    animation: ates-pulse-dot 2s ease-in-out infinite;
}

@keyframes ates-pulse-dot {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(0.8);
    }
}

.ates-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.2rem, 8vw, 5.6rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.ates-hero-content h1 .ates-highlight {
    color: var(--ates-gold);
    font-style: italic;
}

.ates-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin-bottom: 36px;
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0.3px;
}

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

.ates-hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ates-stat {
    display: flex;
    flex-direction: column;
}

.ates-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--ates-gold);
    line-height: 1;
}

.ates-stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.ates-hero-controls {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.ates-hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    padding: 0;
}

.ates-hero-dot.active {
    background: var(--ates-gold);
    width: 40px;
    border-radius: 4px;
}

.ates-hero-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* ============================================
   SECTION COMMON
============================================ */
.ates-section {
    padding: 100px 0;
}

.ates-section-dark {
    background: var(--ates-dark);
    color: var(--ates-white);
}

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

.ates-section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--ates-gold);
    margin-bottom: 12px;
    position: relative;
    padding-left: 24px;
}

.ates-section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 1.5px;
    background: var(--ates-gold);
}

.ates-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.ates-section-title .ates-highlight {
    color: var(--ates-gold);
}

.ates-section-subtitle {
    font-size: 1.1rem;
    color: var(--ates-gray);
    max-width: 560px;
    line-height: 1.8;
}

.ates-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 24px;
}

/* ============================================
   ABOUT - KURUMSAL
============================================ */
.ates-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ates-about-image-wrap {
    position: relative;
}

.ates-about-main-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
}

.ates-about-main-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ates-about-image-wrap:hover .ates-about-main-image img {
    transform: scale(1.02);
}

.ates-about-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--ates-gold);
    color: var(--ates-dark);
    padding: 24px 32px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(201, 168, 76, 0.25);
}

.ates-about-badge-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
}

.ates-about-badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.ates-about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
}

.ates-about-text h2 .ates-highlight {
    color: var(--ates-gold);
}

.ates-about-text p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 24px;
}

.ates-about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 28px 0 36px;
}

.ates-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}

.ates-check {
    color: var(--ates-gold);
    font-size: 1.1rem;
}

/* ============================================
   PRODUCTS - MODERN & FERAH
============================================ */
.ates-products-section {
    background: #f5f2ed;
    padding: 90px 0 100px;
}

.ates-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 16px;
}

.ates-product-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    background: var(--ates-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.ates-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: rgba(201, 168, 76, 0.2);
}

.ates-product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f5f5f5;
}

.ates-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.ates-product-body {
    padding: 20px 22px 24px;
    background: var(--ates-white);
}

.ates-product-code {
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--ates-gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.ates-product-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 4px 0 4px;
    line-height: 1.2;
    color: var(--ates-dark);
}

.ates-product-desc {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.5;
    margin-top: 2px;
}

.ates-product-explore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--ates-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.ates-product-card:hover .ates-product-explore {
    gap: 14px;
}

.ates-product-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--ates-gold);
    color: var(--ates-dark);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 4px;
    z-index: 2;
}

/* ============================================
   FEATURES - 3'LÜ
============================================ */
.ates-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.ates-feature-card {
    padding: 48px 40px;
    background: var(--ates-white);
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all 0.4s ease;
    text-align: center;
}

.ates-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
    border-color: var(--ates-gold);
}

.ates-feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.ates-feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.ates-feature-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

/* ============================================
   STATS COUNTER
============================================ */
.ates-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ates-stat-item {
    padding: 48px 24px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.ates-stat-item:last-child {
    border-right: none;
}

.ates-stat-item .ates-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--ates-gold);
    line-height: 1;
}

.ates-stat-item .ates-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

/* ============================================
   BLOG
============================================ */
.ates-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ates-blog-card {
    border-radius: 12px;
    overflow: hidden;
    background: var(--ates-white);
    border: 1px solid #eee;
    transition: all 0.4s ease;
}

.ates-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    border-color: var(--ates-gold);
}

.ates-blog-image {
    height: 220px;
    overflow: hidden;
}

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

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

.ates-blog-body {
    padding: 28px 30px 32px;
}

.ates-blog-date {
    font-size: 0.7rem;
    color: var(--ates-gray);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.ates-blog-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 8px 0 10px;
    line-height: 1.3;
}

.ates-blog-body p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.ates-blog-readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--ates-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.ates-blog-card:hover .ates-blog-readmore {
    gap: 14px;
}

/* ============================================
   FOOTER - PREMIUM
============================================ */
.ates-footer {
    background: var(--ates-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 0 32px;
}

.ates-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 48px;
}

.ates-footer-brand .ates-footer-logo img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.ates-footer-brand p {
    margin-top: 16px;
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 320px;
}

.ates-footer h4 {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

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

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

.ates-footer ul a {
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.ates-footer ul a:hover {
    color: var(--ates-gold);
}

.ates-footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.ates-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ates-footer-social a:hover {
    background: var(--ates-gold);
    color: var(--ates-dark);
    transform: translateY(-3px);
    border-color: var(--ates-gold);
}

.ates-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8rem;
}

.ates-footer-bottom a {
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.3s ease;
}

.ates-footer-bottom a:hover {
    color: var(--ates-gold);
}

.ates-legal {
    display: flex;
    gap: 24px;
}


/* ============================================
   FIXED WHATSAPP - TEK İKON
============================================ */
.nw-fixed-box {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.nw-fixed-wa2 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    font-size: 2.2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    transition: all 0.3s ease;
    text-decoration: none;
}

.nw-fixed-wa2:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.nw-fixed-wa2 i {
    font-size: 2.4rem;
    color: #fff;
}

/* Mobil */
@media (max-width: 575px) {
    .nw-fixed-box {
        bottom: 16px;
        right: 16px;
    }
    .nw-fixed-wa2 {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
    .nw-fixed-wa2 i {
        font-size: 2rem;
    }
}
/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
    .ates-about-grid {
        gap: 48px;
    }

    .ates-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .ates-features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ates-blog-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ates-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ates-stat-item:nth-child(2) {
        border-right: none;
    }

    .ates-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .ates-nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--ates-dark);
        flex-direction: column;
        padding: 32px;
        gap: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .ates-nav-menu.open {
        display: flex;
    }

    .ates-nav-menu .nav-link {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
    }

    .ates-hamburger {
        display: flex;
    }

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

    .ates-about-badge {
        bottom: -12px;
        right: 12px;
        padding: 16px 24px;
    }

    .ates-about-badge-number {
        font-size: 1.8rem;
    }

    .ates-about-features {
        grid-template-columns: 1fr;
    }

    .ates-products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .ates-features-grid {
        grid-template-columns: 1fr;
    }

    .ates-blog-grid {
        grid-template-columns: 1fr;
    }

    .ates-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ates-stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        padding: 32px 24px;
    }

    .ates-stat-item:nth-child(3),
    .ates-stat-item:nth-child(4) {
        border-bottom: none;
    }

    .ates-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .ates-hero-content h1 {
        font-size: 2.8rem;
    }

    .ates-hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .ates-section {
        padding: 60px 0;
    }

    .ates-section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .ates-hero-controls {
        bottom: 28px;
    }

    .ates-footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .ates-legal {
        flex-wrap: wrap;
        justify-content: center;
    }

    .ates-about-main-image img {
        height: 320px;
    }

    .ates-products-section {
        padding: 60px 0 70px;
    }
}

@media (max-width: 480px) {
    .ates-products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .ates-product-body {
        padding: 14px 14px 18px;
    }

    .ates-product-body h3 {
        font-size: 0.85rem;
    }

    .ates-product-desc {
        font-size: 0.75rem;
    }

    .ates-product-code {
        font-size: 0.5rem;
    }

    .ates-hero-content h1 {
        font-size: 2.2rem;
    }

    .container {
        padding: 0 16px;
    }

    .ates-about-text h2 {
        font-size: 2rem;
    }

    .ates-feature-card {
        padding: 32px 24px;
    }

    .ates-blog-body {
        padding: 20px 24px 24px;
    }

    .ates-fixed-wa {
        bottom: 16px;
        right: 16px;
    }

    .ates-fixed-wa a {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }

    .ates-about-badge {
        padding: 12px 18px;
    }

    .ates-about-badge-number {
        font-size: 1.4rem;
    }

    .ates-about-badge-text {
        font-size: 0.6rem;
    }
}

/* ============================================
   ATES ÖZEL DÜZELTMELER - GRID
============================================ */
/* Ürün Grid - 4 Sütun */
.ates-products-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 24px !important;
}

/* Tablet - 2 Sütun */
@media (max-width: 991px) {
    .ates-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Mobil - 2 Sütun */
@media (max-width: 575px) {
    .ates-products-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
    }
}

/* Kartların taşmasını engelle */
.ates-product-card {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 auto !important;
}

/* Hero altı boşluk */
.ates-hero {
    margin-bottom: 0 !important;
}