/* ===== Variables ===== */
:root {
    --primary: #ff6b35;
    --secondary: #ff8c42;
    --accent: #ffa552;
    --dark: #1a1a1a;
    --light: #fff5f0;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #ff6b35 0%, #ff8c42 50%, #ffa552 100%);
    --gradient-soft: linear-gradient(135deg, #fff5f0 0%, #ffe8dc 100%);
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
    background: var(--white);
}

html {
    scroll-behavior: smooth;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1050;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 85px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    height: 100%;
}

.navbar-brand img {
    height: calc(85px * 0.98);
    width: auto;
}

/* Desktop Menu */
.navbar-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-menu li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.navbar-menu li a:hover {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary);
}

.navbar-menu li a.qr-btn {
    background: var(--gradient);
    color: var(--white);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
    margin-left: 1rem;
}

.navbar-menu li a.qr-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

/* Mobile Right */
.navbar-mobile-right {
    display: none;
    align-items: center;
    gap: 1rem;
}

.mobile-qr-btn {
    background: var(--gradient);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 3px 15px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
}

.mobile-qr-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.5);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1070;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #fff8f4 100%);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    z-index: 1060;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: var(--gradient);
}

.mobile-menu-header img {
    height: 50px;
    filter: brightness(0) invert(1);
}

.mobile-menu-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.mobile-menu-list {
    list-style: none;
    padding: 1rem 0;
    margin: 0;
}

.mobile-menu-list li {
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.mobile-menu-list li a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.mobile-menu-list li a i {
    font-size: 1.3rem;
    color: var(--primary);
}

.mobile-menu-list li a:hover {
    background: rgba(255, 107, 53, 0.1);
    padding-left: 2rem;
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1055;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1810 50%, #1a1a1a 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../resimler/vitamin-bufe.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.15), transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
    animation: fadeInUp 1s ease;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(255, 165, 82, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 0.7rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 165, 82, 0.4);
    box-shadow: 0 8px 30px rgba(255, 165, 82, 0.3);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-title {
    font-size: 6rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1;
    text-shadow: 0 10px 50px rgba(0, 0, 0, 0.7);
    letter-spacing: -3px;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-text {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    line-height: 1.8;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--gradient);
    color: var(--white);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.5);
    transition: all 0.4s ease;
    animation: fadeInUp 1s ease 0.8s both;
}

.hero-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.7);
    color: var(--white);
}

.hero-btn i {
    font-size: 1.3rem;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.hero-scroll:hover {
    transform: translateX(-50%) translateY(-5px);
}

.mouse {
    width: 28px;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 3px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    50% {
        opacity: 0.5;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Section Styles ===== */
.products-section,
.press-section,
.testimonials-section {
    padding: 100px 0;
}

.video-section {
    padding: 100px 0;
    background: var(--gradient);
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
}

.video-section .section-title {
    color: var(--white);
}

.video-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

/* ===== Category Filter ===== */
.category-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 50px;
}

.filter-btn {
    background: var(--white);
    border: 2px solid #e0e0e0;
    color: var(--dark);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

/* ===== Products Grid ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.product-body {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.8rem;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Video Section ===== */
.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* ===== Blog Detail Page ===== */
.blog-detail-section {
    padding-top: 120px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff5f0 100%);
    min-height: 100vh;
    position: relative;
}

.blog-detail-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ff6b35" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23ff8c42" opacity="0.02"/><circle cx="50" cy="10" r="0.5" fill="%23ffa552" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
    z-index: 0;
}

.blog-detail-section > .container {
    position: relative;
    z-index: 1;
}

/* Breadcrumbs Styling */
.breadcrumb {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.breadcrumb-item a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--secondary);
    text-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

.breadcrumb-item.active {
    color: #6c757d;
    font-weight: 600;
    max-width: 250px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Back Button */
.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 700;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.btn-outline-primary:hover {
    background: var(--gradient);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Blog Header */
.blog-header {
    margin-bottom: 3rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.blog-meta .badge {
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.blog-meta .badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.bg-primary.bg-opacity-10 {
    background: rgba(255, 107, 53, 0.1) !important;
    color: var(--primary) !important;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.bg-secondary.bg-opacity-10 {
    background: rgba(108, 117, 125, 0.1) !important;
    color: #6c757d !important;
    border: 1px solid rgba(108, 117, 125, 0.2);
}

.bg-info.bg-opacity-10 {
    background: rgba(13, 202, 240, 0.1) !important;
    color: #0dcaf0 !important;
    border: 1px solid rgba(13, 202, 240, 0.2);
}

.blog-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, var(--dark) 0%, #333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lead {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #666;
    font-weight: 400;
    margin-bottom: 2rem;
}

/* Featured Image */
.blog-featured-image {
    margin-bottom: 3rem;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    position: relative;
}

.blog-featured-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.blog-featured-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.blog-featured-image:hover img {
    transform: scale(1.05);
}

/* Content Box */
.blog-content-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 3.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.blog-content-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
}

.blog-content-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #333;
    font-weight: 400;
}

.blog-content-text p {
    margin-bottom: 2rem;
    text-align: justify;
}

.blog-content-text p:first-child::first-letter {
    font-size: 4rem;
    font-weight: 800;
    float: left;
    line-height: 1;
    margin: 0.1rem 0.8rem 0 0;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Share Buttons */
.bg-white.rounded-4.shadow-sm {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1) !important;
}

.btn-primary.rounded-circle,
.btn-info.rounded-circle,
.btn-success.rounded-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary.rounded-circle:hover,
.btn-info.rounded-circle:hover,
.btn-success.rounded-circle:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-primary.rounded-pill,
.btn-info.rounded-pill,
.btn-success.rounded-pill,
.btn-outline-secondary.rounded-pill {
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary.rounded-pill:hover,
.btn-info.rounded-pill:hover,
.btn-success.rounded-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-outline-secondary.rounded-pill {
    border: 2px solid #6c757d;
    color: #6c757d;
}

.btn-outline-secondary.rounded-pill:hover {
    background: #6c757d;
    border-color: #6c757d;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.3);
}

/* Related Articles */
.hover-shadow {
    transition: all 0.4s ease;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hover-shadow:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
    background: rgba(255, 255, 255, 0.95) !important;
}

.hover-shadow img {
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.hover-shadow:hover img {
    transform: scale(1.05);
}

.fw-semibold {
    font-weight: 600 !important;
    line-height: 1.4;
    color: var(--dark) !important;
}

.text-muted {
    color: #666 !important;
    font-size: 0.9rem;
}

/* Animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-header,
.blog-featured-image,
.blog-content-box,
.bg-white.rounded-4.shadow-sm {
    animation: fadeInUp 0.6s ease forwards;
}

.blog-featured-image {
    animation-delay: 0.1s;
}

.blog-content-box {
    animation-delay: 0.2s;
}

.bg-white.rounded-4.shadow-sm {
    animation-delay: 0.3s;
}

/* Print Styles */
@media print {
    .breadcrumb,
    .btn,
    .bg-white.rounded-4.shadow-sm:has(.d-grid),
    .d-lg-none:has(.d-flex.gap-2),
    .d-none.d-lg-block:has(.d-grid.gap-2) {
        display: none !important;
    }
    
    .blog-detail-section {
        padding-top: 20px;
        background: white !important;
    }
    
    .blog-detail-section::before {
        display: none;
    }
    
    .blog-content-box {
        box-shadow: none !important;
        border: 1px solid #ddd;
        background: white !important;
    }
    
    .blog-title {
        font-size: 2rem;
        color: black !important;
        background: none !important;
        -webkit-text-fill-color: black !important;
    }
    
    .blog-content-text {
        color: black !important;
        font-size: 12pt;
        line-height: 1.6;
    }
    
    .blog-meta .badge {
        background: white !important;
        color: black !important;
        border: 1px solid #ddd;
        box-shadow: none !important;
    }
}

/* ===== Press Section ===== */
.press-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.press-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.press-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.press-card:hover .press-image img {
    transform: scale(1.1);
}

.press-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.95), rgba(255, 140, 66, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.press-card:hover .press-overlay {
    opacity: 1;
}

.press-overlay i {
    font-size: 3rem;
    color: var(--white);
}

.press-body {
    padding: 1.5rem;
}

.press-date {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.press-body h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.press-body p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.press-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.press-link:hover {
    gap: 1rem;
}

/* ===== Testimonials ===== */
.testimonials-section {
    background: var(--gradient-soft);
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-stars {
    margin-bottom: 1.5rem;
}

.testimonial-stars i {
    color: #ffc107;
    font-size: 1.2rem;
    margin-right: 0.2rem;
}

.testimonial-text {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.testimonial-author strong {
    display: block;
    color: var(--dark);
    font-size: 1.1rem;
}

.testimonial-author span {
    display: block;
    color: #999;
    font-size: 0.9rem;
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(135deg, #2d1810 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-brand img {
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
    height: 60px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--primary);
    font-size: 1.2rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient);
    transform: translateY(-5px);
}

.footer-hours h6 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-hours p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

/* ===== Scroll to Top ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.5);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.7);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .navbar-menu {
        display: none;
    }
    
    .navbar-mobile-right {
        display: flex;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 4.5rem;
        letter-spacing: -2px;
    }
    
    .hero-text {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .navbar .container {
        padding: 0.3rem 1.5rem;
        min-height: 70px;
    }
    
    .navbar-brand img {
        height: calc(70px * 0.98);
    }
    
    .mobile-menu {
        width: 85%;
        max-width: 320px;
    }
    
    .hero-content {
        padding: 2rem 1.5rem;
    }
    
    .hero-badge {
        font-size: 0.9rem;
        padding: 0.6rem 1.5rem;
    }
    
    .hero-title {
        font-size: 5rem;
        letter-spacing: -1.5px;
        margin-bottom: 1.5rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-btn {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .category-filter {
        gap: 0.6rem;
    }
    
    .filter-btn {
        padding: 0.7rem 1.3rem;
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    /* Blog Detail Responsive */
    .blog-detail-section {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .blog-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .blog-meta {
        gap: 0.8rem;
        font-size: 0.85rem;
    }
    
    .blog-meta .badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .blog-featured-image img {
        height: 280px;
    }
    
    .blog-content-box {
        padding: 2rem;
        border-radius: 20px;
    }
    
    .blog-content-text {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .blog-content-text p:first-child::first-letter {
        font-size: 3rem;
        margin: 0.05rem 0.6rem 0 0;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    .breadcrumb-item.active {
        max-width: 150px;
    }
    
    .btn-outline-primary {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .mobile-qr-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    /* Blog Detail Mobile */
    .blog-detail-section {
        padding-top: 90px;
        padding-bottom: 50px;
    }
    
    .blog-title {
        font-size: 1.6rem;
        line-height: 1.4;
    }
    
    .blog-content-box {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .blog-featured-image {
        border-radius: 15px;
        margin-bottom: 2rem;
    }
    
    .blog-featured-image img {
        height: 220px;
    }
    
    .blog-content-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .blog-content-text p:first-child::first-letter {
        font-size: 2.5rem;
        margin: 0.02rem 0.5rem 0 0;
    }
    
    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .blog-meta .badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .lead {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .breadcrumb {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .breadcrumb-item.active {
        max-width: 120px;
    }
    
    .btn-outline-primary {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .bg-white.rounded-4.shadow-sm {
        border-radius: 15px !important;
        padding: 1.5rem !important;
    }
    
    .hover-shadow {
        border-radius: 12px;
    }
    
    .hover-shadow img {
        border-radius: 8px;
    }
}

/* ===== ABOUT PAGE STYLES ===== */

/* About Hero Section */
.about-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1810 50%, #1a1a1a 100%);
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../resimler/vitamin-bufe.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 1;
}

.about-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.15), transparent 60%);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    animation: fadeInUp 1s ease;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 165, 82, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 165, 82, 0.4);
    box-shadow: 0 8px 30px rgba(255, 165, 82, 0.3);
    animation: fadeInUp 1s ease 0.2s both;
}

.about-hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 10px 50px rgba(0, 0, 0, 0.7);
    letter-spacing: -2px;
    animation: fadeInUp 1s ease 0.4s both;
}

.about-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    line-height: 1.6;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease 0.6s both;
}

/* About Content Section */
.about-content-section {
    padding: 100px 0;
    background: var(--white);
}

.about-story {
    margin-bottom: 120px;
}

.about-image-wrapper {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.about-image-wrapper:hover {
    transform: translateY(-10px);
}

.about-main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.about-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-story-content {
    padding-left: 2rem;
}

.about-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.title-accent {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text {
    margin-bottom: 2.5rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.about-text strong {
    color: var(--primary);
    font-weight: 700;
}

.btn-about-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--gradient);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
}

.btn-about-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.5);
    color: var(--white);
}

/* Values Section */
.about-values {
    margin-bottom: 120px;
}

.value-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.value-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: var(--gradient);
    transform: scale(1.1);
}

.value-icon i {
    font-size: 2rem;
    color: var(--primary);
    transition: color 0.3s ease;
}

.value-card:hover .value-icon i {
    color: var(--white);
}

.value-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

.value-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.value-card:hover .value-number {
    color: rgba(255, 107, 53, 0.2);
    transform: scale(1.1);
}

/* Features Section */
.about-features {
    margin-bottom: 120px;
}

.features-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

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

.feature-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: var(--gradient);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.features-content {
    padding-right: 2rem;
}

.features-list {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: var(--gradient-soft);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.feature-content h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* CTA Section */
.about-cta-section {
    background: var(--gradient);
    border-radius: 30px;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-cta-primary {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    color: var(--primary);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    color: var(--white);
}

/* Responsive Design for About Page */
@media (max-width: 991px) {
    .about-hero-title {
        font-size: 3rem;
    }
    
    .about-section-title {
        font-size: 2rem;
    }
    
    .about-story-content {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .features-content {
        padding-right: 0;
        margin-top: 2rem;
    }
    
    .about-stats {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .about-hero {
        min-height: 60vh;
        padding-top: 100px;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-content-section {
        padding: 60px 0;
    }
    
    .about-story,
    .about-values,
    .about-features {
        margin-bottom: 80px;
    }
    
    .about-main-image,
    .features-image img {
        height: 300px;
    }
    
    .about-image-overlay {
        padding: 1.5rem;
    }
    
    .about-stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .feature-icon {
        margin: 0 auto 1rem;
    }
    
    .about-cta-section {
        padding: 3rem 2rem;
        border-radius: 20px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-badge {
        font-size: 0.9rem;
        padding: 0.6rem 1.5rem;
    }
    
    .about-section-title {
        font-size: 1.8rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .value-card {
        padding: 2rem 1rem;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
    }
    
    .value-icon i {
        font-size: 1.5rem;
    }
    
    .feature-badge {
        position: static;
        margin-bottom: 1rem;
        display: inline-flex;
    }
}
/* ===== ANIMATION CLASSES ===== */
.value-card,
.feature-item,
.about-image-wrapper,
.features-image {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.value-card.animate-in,
.feature-item.animate-in,
.about-image-wrapper.animate-in,
.features-image.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.value-card.animate-in {
    animation: slideInUp 0.8s ease forwards;
}

.feature-item.animate-in {
    animation: slideInLeft 0.8s ease forwards;
}

.about-image-wrapper.animate-in,
.features-image.animate-in {
    animation: fadeInScale 0.8s ease forwards;
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Staggered animation delays */
.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }