/* 
  Minimalist & Beautiful Home Styles 
  Aras Ticaret Kurbanlık Modern Tasarım Sistemi
*/

:root {
    --minimal-bg: #ffffff;
    --minimal-gray: #f8f9fa;
    --minimal-text: #1a1a1a;
    --minimal-text-light: #6c757d;
    --accent-red: #d94132;
    --border-color: #eee;
    --google-blue: #4285F4;
    --google-red: #EA4335;
    --google-yellow: #FBBC05;
    --google-green: #34A853;
}

body.home-body {
    background-color: var(--minimal-bg);
    color: var(--minimal-text);
    font-family: 'Poppins', sans-serif;
}

/* --- MINIMAL HERO SLIDER --- */
.home-slider {
    width: 100%;
    height: 80vh;
    min-height: 550px;
    background: #fff;
}

.swiper-slide {
    background: #fff;
    display: flex;
    align-items: center;
}

.slide-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%; 
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 8s ease-out;
}

.swiper-slide-active .slide-bg {
    transform: scale(1.05);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #fff 40%, rgba(255,255,255,0) 100%);
    z-index: 1;
}

@media (max-width: 991px) {
    .slide-bg { width: 100%; }
    .slide-overlay { background: rgba(255,255,255,0.85); }
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding-left: 10%;
    text-align: left;
    margin-top: 5%;
}

.slide-content h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--minimal-text);
    letter-spacing: -2px;
}

.slide-content p {
    font-size: 1.25rem;
    color: var(--minimal-text-light);
    margin-bottom: 35px;
    max-width: 450px;
}

.hero-cta-btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--minimal-text);
    color: #fff !important;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.hero-cta-btn:hover {
    background: var(--accent-red);
    transform: translateX(10px);
}

/* --- MINIMAL WHY US --- */
.why-us-section {
    padding: 120px 0;
    background: #fff;
}

.minimal-title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 60px;
}

.why-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.why-item:last-child { border-bottom: none; }

.why-icon {
    font-size: 1.5rem;
    color: var(--accent-red);
    margin-right: 20px;
}

.why-item h5 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.why-item p {
    color: var(--minimal-text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* --- PROCESS SECTION (TIMELINE) --- */
.process-section {
    padding: 100px 0;
    background: #fff;
    border-top: 1px solid var(--border-color);
}

.process-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.process-step {
    flex: 1;
    position: relative;
    text-align: left;
}

.step-num {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--accent-red);
    display: block;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.process-step h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.process-step p {
    color: var(--minimal-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .process-grid { flex-direction: column; gap: 50px; }
    .process-step { padding-left: 0; }
}

/* --- MINIMAL CATEGORIES --- */
.category-strip {
    display: flex;
    flex-wrap: wrap;
    background: var(--minimal-gray);
}

.cat-box {
    flex: 1;
    min-width: 50%;
    height: 500px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cat-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    transition: 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 0.8;
}

.cat-box:hover .cat-img {
    filter: grayscale(0%);
    transform: scale(1.05);
    opacity: 1;
}

.cat-info {
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 40px 60px;
    max-width: 80%;
}

.cat-info h3 {
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.cat-link {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--minimal-text);
    text-decoration: none;
    border-bottom: 2px solid var(--accent-red);
    padding-bottom: 5px;
    transition: 0.3s;
}

.cat-link:hover { padding-left: 10px; }

/* --- REVERTED GOOGLE REVIEWS (GOOGLE BRANDED) --- */
.home-reviews-section {
    padding: 100px 0;
    background: #f8fafc;
}

.google-brand {
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
}

.google-brand span:nth-child(1) { color: var(--google-blue); }
.google-brand span:nth-child(2) { color: var(--google-red); }
.google-brand span:nth-child(3) { color: var(--google-yellow); }
.google-brand span:nth-child(4) { color: var(--google-blue); }
.google-brand span:nth-child(5) { color: var(--google-green); }
.google-brand span:nth-child(6) { color: var(--google-red); }

.review-card {
    background: #fff;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    border: 1px solid #edf2f7;
    height: 100%;
    transition: 0.3s;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    border-color: var(--google-blue);
}

.rev-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.rev-user-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #eee;
    overflow: hidden;
}

.rev-user-avatar {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e2e8f0;
    color: #94a3b8;
    font-size: 1.2rem;
}

.rev-info h6 {
    margin: 0;
    font-weight: 700;
    font-size: 1.05rem;
}

.rev-stars {
    color: var(--google-yellow);
    font-size: 0.8rem;
}

.rev-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    font-style: italic;
}

.rev-badge {
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--google-green);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

/* Navigation */
.swiper-button-next, .swiper-button-prev {
    color: var(--minimal-text) !important;
}

.swiper-pagination-bullet-active {
    background: var(--minimal-text) !important;
}

@media (max-width: 768px) {
    .slide-content h1 { font-size: 2.5rem; }
    .cat-box { min-width: 100%; height: 400px; }
    .slide-content { padding-left: 5%; padding-right: 5%; margin-top: 50%; }
    .google-brand{
    flex-direction: column;
}
.google-brand > p:nth-child(2){
    text-align: center;
}
.cat-link{
    padding-bottom: 0px !important;
}
}


