/* Stepy Modern Design V2 - Hybrid Corporate Style */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@300;400;600;700;800&display=swap');

:root {
    --primary: #32a6c1;
    --primary-dark: #1e899d;
    --primary-light: #e6f7f9;
    --text-main: #1a202c;
    --text-muted: #4a5568;
    --bg-white: #ffffff;
    --bg-soft: #f7fafc;
    --border-soft: rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 10px 20px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 20px 40px rgba(0, 0, 0, 0.05);
    --radius-lg: 24px;
    --radius-md: 16px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background: var(--bg-white);
}

h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; font-weight: 700; }

.container-custom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Header Re-styling for V2 */
.v2-header {
    /* Base styles from redesign.css will apply, but we add V2 specific tweaks */
}

/* Hero Slider V2 */
.hero-v2 {
    position: relative;
    height: 100vh;
    min-height: 700px;
}

.hero-v2 .swiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 100%);
}

.hero-content-v2 {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding-left: 10%;
    color: white;
}

.hero-content-v2 h2 {
    font-size: clamp(3.5rem, 8vw, 5.5rem);
    line-height: 1;
    margin-bottom: 30px;
    font-weight: 800;
    animation: fadeInUp 0.8s ease-out both;
}

.hero-content-v2 p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 500px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

/* Stepy'yi Yakından Tanıyın Section */
.intro-section {
    padding: 120px 0;
    background: var(--bg-soft);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.intro-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.intro-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-soft);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.btn-premium {
    padding: 16px 40px;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 10px 25px rgba(50, 166, 193, 0.3);
    border: none;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(50, 166, 193, 0.4);
    color: white;
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.05);
}

.btn-outline:hover {
    background: white;
    color: var(--primary-dark);
    border-color: white;
    transform: translateY(-3px);
}

.btn-premium i {
    transition: transform 0.3s ease;
}

.btn-premium:hover i {
    transform: translateX(5px);
}

.intro-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.intro-card h4 {
    margin-bottom: 10px;
    color: var(--primary-dark);
}

/* Modern Product Grid (Suggested Items) */
.products-v2-section {
    padding: 120px 0;
}

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

.product-v2-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-md);
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    border: 1px solid var(--border-soft);
}

.product-v2-card:hover {
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    transform: scale(1.02);
}

.product-v2-card img {
    max-width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 20px;
}

.product-v2-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Category Markers - Based on original fav design */
.categories-v2-section {
    padding: 80px 0;
    background: linear-gradient(to right, #ffffff, #f0f7f9);
}

.categories-v2-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.cat-v2-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 240px;
    background: white;
    display: flex;
    align-items: center;
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

.cat-v2-card:hover {
    transform: scale(1.03);
}

.cat-v2-info {
    position: relative;
    z-index: 2;
}

.cat-v2-info h3 {
    font-size: 1.6rem;
    margin-bottom: 5px;
    color: var(--text-main);
}

.cat-v2-info span {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
}

.cat-v2-img {
    position: absolute;
    right: -20px;
    bottom: -10px;
    height: 110%;
    z-index: 1;
    opacity: 0.15;
    transition: var(--transition);
}

.cat-v2-card:hover .cat-v2-img {
    opacity: 1;
    transform: scale(1.1) translateX(-20px);
}

/* Footer Slim */
.footer-v2 {
    background: #0f172a;
    color: white;
    padding: 80px 0 40px;
}

.footer-v2-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-v2 h4 { margin-bottom: 25px; color: var(--primary-light); }
.footer-v2 a { color: #94a3b8; text-decoration: none; transition: 0.3s; display: block; margin-bottom: 12px; }
.footer-v2 a:hover { color: white; padding-left: 5px; }

/* Responsive adjustments */
@media (max-width: 900px) {
    .intro-grid { grid-template-columns: 1fr; }
    .hero-content-v2 { padding-left: 5%; }
    .footer-v2-grid { grid-template-columns: 1fr 1fr; }
}
