/* ====================================
   HOME PAGE STYLES
   ==================================== */

/* --- HERO --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    margin-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(45, 122, 53, 0.3) 0%, transparent 60%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?w=1600&q=80') center/cover no-repeat;
    opacity: 0.4;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 2rem 0 6rem;
    max-width: 700px;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.hero-sub {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.hero-btn {
    background: white;
    color: #1a1a1a;
    border: 2px solid white;
    padding: 0.75rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s;
    display: inline-block;
}

.hero-btn:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
}

.hero-badge {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    z-index: 2;
}

.kivo-badge {
    background: linear-gradient(135deg, #2d7a35, #5a9e4f);
    color: white;
    font-size: 3rem;
    font-weight: 900;
    padding: 1.5rem 2.5rem;
    border-radius: 16px;
    letter-spacing: 4px;
    box-shadow: 0 20px 60px rgba(45, 122, 53, 0.4);
    animation: floatUp 3s ease-in-out infinite;
}

@keyframes floatUp {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* --- WHAT WE DO --- */
.what-we-do {
    background: var(--bg-cream);
    padding: 6rem 2rem;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.what-image-wrap {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #e8f5e9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.what-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.image-placeholder svg {
    width: 80px;
    height: 80px;
}

/* --- OUR BRANDS HOME --- */
.our-brands-home {
    background: var(--bg-light);
    padding: 6rem 2rem;
}

.brands-header {
    margin-bottom: 4rem;
}

.brand-logos {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.brand-logo-box {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    min-width: 200px;
    justify-content: center;
}

.kivo-logo-box {
    background: linear-gradient(135deg, #2d7a35, #5a9e4f);
    color: white;
}

.kivo-logo-text {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: white;
}

.kivo-dot {
    color: #ffd700;
    font-size: 1rem;
    vertical-align: middle;
}

.mutlu-logo-box {
    background: #c0392b;
    color: white;
    flex-direction: column;
    gap: 0.1rem;
}

.mutlu-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    font-style: italic;
    color: white;
}

.mutlu-sub {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
}

/* Featured Products */
.featured-products {
    margin-top: 3rem;
}

.featured-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 1.5rem;
}

.product-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #e0ddd8;
    margin-bottom: 2rem;
}

.tab-btn {
    background: none;
    border: none;
    padding: 0.75rem 1.5rem 0.75rem 0;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: inherit;
    color: var(--text-light);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
}

.tab-btn:first-child {
    padding-left: 0;
}

.tab-btn.active {
    color: var(--text-dark);
    font-weight: 600;
    border-bottom-color: var(--green-dark);
}

.tab-btn:hover {
    color: var(--text-dark);
}

.hidden {
    display: none !important;
}

.product-card-large {
    align-items: center;
}

.product-info h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.product-info p {
    color: var(--text-mid);
    line-height: 1.7;
    font-size: 0.95rem;
}

.product-image-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.product-package {
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    min-width: 200px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.pepper-package {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.gari-package {
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: white;
}

.pkg-top {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.pkg-label {
    font-size: 0.9rem;
    line-height: 1.4;
}

.pkg-label strong {
    font-size: 1rem;
    display: block;
}

.pkg-bottom-decor {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
}

/* --- HOW WE TOUCH LIVES --- */
.how-we-touch {
    background: var(--bg-cream);
    padding: 6rem 2rem;
    text-align: center;
}

.justify-center {
    justify-content: center;
}

.section-headline.centered,
.section-sub.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-sub.centered {
    max-width: 800px;
}

/* --- BRAND AMBASSADOR --- */
.brand-ambassador {
    position: relative;
    min-height: 500px;
    overflow: hidden;
}

.ambassador-image-wrap {
    position: relative;
    min-height: 500px;
    background: linear-gradient(135deg, #f0a500, #e07b00);
    display: flex;
    align-items: flex-end;
}

.ambassador-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 60% 30%, rgba(255, 165, 0, 0.3) 0%, transparent 60%),
        linear-gradient(135deg, #f0a500 0%, #c07800 100%);
}

.ambassador-caption {
    position: relative;
    z-index: 2;
    padding: 3rem 6rem;
    max-width: 700px;
}

.ambassador-caption h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.ambassador-caption p {
    color: rgba(0, 0, 0, 0.75);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.ambassador-link {
    color: var(--green-dark);
    font-weight: 700;
    font-size: 0.95rem;
    transition: gap 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.ambassador-link:hover {
    text-decoration: underline;
}

/* --- PACKAGING --- */
.packaging-section {
    background: var(--bg-light);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.packaging-inner {
    align-items: center;
}

.packaging-visual {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: wrap;
}

.pkg-float {
    border-radius: 12px;
    padding: 1.2rem 1rem;
    text-align: center;
    min-width: 120px;
    color: white;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s;
}

.pkg-float:hover {
    transform: translateY(-8px);
}

.pkg-creamer {
    background: linear-gradient(135deg, #8B4513, #a0522d);
    transform: rotate(-3deg);
}

.pkg-ginger {
    background: linear-gradient(135deg, #795548, #6d4c41);
    transform: translateY(-20px);
}

.pkg-4in1 {
    background: linear-gradient(135deg, #e67e22, #d35400);
    transform: rotate(3deg);
}

/* --- HAPPY CUSTOMERS --- */
.happy-customers {
    background: var(--bg-cream);
    padding: 6rem 2rem;
}

.happy-customers .section-tag,
.happy-customers .section-headline {
    text-align: center;
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.happy-customers .section-headline {
    display: block;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.testimonial-card:last-child {
    grid-column: 1;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.t-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.t-avatar svg {
    width: 36px;
    height: 36px;
}

.fb-avatar {
    color: #1877F2;
}

.testimonial-author span {
    font-weight: 600;
    font-size: 0.95rem;
}

.testimonial-card p {
    color: var(--text-mid);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ====================================
   RESPONSIVE - HOME
   ==================================== */
@media (max-width: 1024px) {
    .hero-content {
        padding-left: 4rem;
    }

    .ambassador-caption {
        padding: 2rem 4rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 0 1.5rem;
        max-width: 100%;
    }

    .hero-badge {
        display: none;
    }

    .two-col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card:last-child {
        grid-column: 1;
    }

    .ambassador-caption {
        padding: 2rem;
    }
}