/* ========================================
   MARKALAR PAGE STYLES
   Markalar Sayfası - 100% Responsive
   ======================================== */

/* ===== HERO SECTION ===== */
.markalar-hero {
    padding: 120px 0 100px;
    background: #ffffff;
    position: relative;
}

/* UGC Hero Override for Markalar Page */
.ugc-hero .ugc-hero__subtitle,
.ugc-hero .ugc-hero__title {
    color: #ffffff !important;
}

.markalar-hero__content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.markalar-hero__title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    color: #1d1d1f;
    margin-bottom: 20px;
}

.markalar-hero__highlight {
    background: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.markalar-hero__subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 16px;
    line-height: 1.5;
}

.markalar-hero__description {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 60px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== SINGLE IMAGE ===== */
.markalar-hero__image-wrapper {
    max-width: 800px;
    margin: 0 auto 60px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.markalar-hero__image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.markalar-hero__image-wrapper:hover .markalar-hero__image {
    transform: scale(1.05);
}

/* ===== BUTTON ===== */
.markalar-hero__btn {
    padding: 18px 48px;
    border-radius: 100px;
    background: #1d1d1f;
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.markalar-hero__btn:hover {
    background: #2d2d2f;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.markalar-hero__footer-text {
    font-size: 14px;
    color: #6b7280;
    margin-top: 24px;
    margin-bottom: 0;
}

/* ===== VIDEOS SECTION ===== */
.markalar-videos {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.markalar-videos__header {
    text-align: center;
    margin-bottom: 60px;
}

.markalar-videos__title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #1d1d1f;
}

.markalar-videos__highlight {
    background: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== CARDS CONTAINER ===== */
.markalar-videos__container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.markalar-videos__scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
}

/* Custom scrollbar */
.markalar-videos__scroll::-webkit-scrollbar {
    height: 8px;
}

.markalar-videos__scroll::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.markalar-videos__scroll::-webkit-scrollbar-thumb {
    background: rgba(233, 30, 99, 0.5);
    border-radius: 10px;
}

.markalar-videos__scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(233, 30, 99, 0.7);
}

/* ===== VIDEO CARD ===== */
.markalar-videos__card {
    position: relative;
    min-width: 280px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.markalar-videos__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(233, 30, 99, 0.3);
}

/* ===== CARD IMAGE ===== */
.markalar-videos__card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.markalar-videos__card:hover .markalar-videos__card-image {
    transform: scale(1.05);
}

/* ===== CARD OVERLAY ===== */
.markalar-videos__card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    transition: background 0.3s ease;
}

.markalar-videos__card:hover .markalar-videos__card-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.9) 100%
    );
}

/* ===== CARD CONTENT ===== */
.markalar-videos__card-brand {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.markalar-videos__card-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* ===== BRANDS SECTION ===== */
.markalar-brands {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.markalar-brands__header {
    text-align: center;
    margin-bottom: 60px;
}

.markalar-brands__title {
    font-size: 36px;
    font-weight: 700;
    color: #1d1d1f;
    margin: 0;
    line-height: 1.3;
}

/* ===== CARDS CONTAINER ===== */
.markalar-brands__container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.markalar-brands__scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
}

/* Custom scrollbar */
.markalar-brands__scroll::-webkit-scrollbar {
    height: 8px;
}

.markalar-brands__scroll::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.markalar-brands__scroll::-webkit-scrollbar-thumb {
    background: rgba(233, 30, 99, 0.5);
    border-radius: 10px;
}

.markalar-brands__scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(233, 30, 99, 0.7);
}

/* ===== BRAND CARD ===== */
.markalar-brands__card {
    position: relative;
    min-width: 200px;
    height: 140px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.markalar-brands__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(233, 30, 99, 0.2);
    border-color: rgba(233, 30, 99, 0.3);
}

/* ===== CARD IMAGE ===== */
.markalar-brands__card-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.4s ease;
}

.markalar-brands__card:hover .markalar-brands__card-image {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}






/* ===== STATS SECTION ===== */
.markalar-stats {
    padding: 100px 0;
}

.markalar-stats__title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    color: #ffffff;
    margin-bottom: 60px;
}

.markalar-stats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

/* ===== STAT CARD ===== */
.markalar-stat {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 48px 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.markalar-stat:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(233, 30, 99, 0.3);
    box-shadow: 0 12px 40px rgba(233, 30, 99, 0.2);
}

.markalar-stat__icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1) 0%, rgba(194, 24, 91, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.markalar-stat:hover .markalar-stat__icon {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.2) 0%, rgba(194, 24, 91, 0.2) 100%);
    transform: scale(1.1);
}

.markalar-stat__icon i {
    font-size: 36px;
    color: #E91E63;
}

.markalar-stat__number {
    font-size: 56px;
    font-weight: 700;
    color: #E91E63;
    margin-bottom: 12px;
    line-height: 1;
}

.markalar-stat__label {
    font-size: 18px;
    font-weight: 500;
    color: #9ca3af;
}

/* ===== SERVICES SECTION ===== */
.markalar-services {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.01);
}

.markalar-services__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* ===== SERVICE CARD ===== */
.markalar-service {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.markalar-service:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(233, 30, 99, 0.3);
    box-shadow: 0 12px 40px rgba(233, 30, 99, 0.15);
}

.markalar-service__icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1) 0%, rgba(194, 24, 91, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.markalar-service:hover .markalar-service__icon {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.2) 0%, rgba(194, 24, 91, 0.2) 100%);
    transform: scale(1.1) rotate(5deg);
}

.markalar-service__icon i {
    font-size: 28px;
    color: #E91E63;
}

.markalar-service__title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
}

/* ===== LIGHT MODE ===== */
body.light-mode {
    background: #ffffff;
}

body.light-mode .markalar-hero {
    background: #ffffff;
}

body.light-mode .markalar-hero__title {
    color: #1d1d1f;
}

body.light-mode .markalar-hero__subtitle {
    color: #1d1d1f;
}

body.light-mode .markalar-hero__description {
    color: #6b7280;
}

body.light-mode .markalar-hero__footer-text {
    color: #6b7280;
}

body.light-mode .markalar-videos {
    background: #ffffff;
}

body.light-mode .markalar-videos__title {
    color: #1d1d1f;
}

body.light-mode .markalar-videos__card {
    background: #ffffff;
    border-color: #e5e7eb;
}

body.light-mode .markalar-videos__name {
    color: #1d1d1f;
}

body.light-mode .markalar-videos__category {
    color: #6b7280;
}

body.light-mode .markalar-videos__feature-box {
    background: #ffffff;
    border-color: #e5e7eb;
}

body.light-mode .markalar-videos__feature-text {
    color: #4b5563;
}

body.light-mode .markalar-brands {
    background: #f8f9fa;
}





body.light-mode .markalar-stats {
    background: #ffffff;
}

body.light-mode .markalar-stats__title {
    color: #1d1d1f;
}

body.light-mode .markalar-stat {
    background: #ffffff;
    border-color: #e5e7eb;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

body.light-mode .markalar-stat:hover {
    border-color: rgba(233, 30, 99, 0.3);
    box-shadow: 0 12px 40px rgba(233, 30, 99, 0.15);
}

body.light-mode .markalar-stat__icon {
    background: rgba(233, 30, 99, 0.08);
}

body.light-mode .markalar-stat:hover .markalar-stat__icon {
    background: rgba(233, 30, 99, 0.12);
}

body.light-mode .markalar-stat__label {
    color: #4b5563;
}

body.light-mode .markalar-services {
    background: #f8f9fa;
}

body.light-mode .markalar-service {
    background: #ffffff;
    border-color: #e5e7eb;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

body.light-mode .markalar-service:hover {
    border-color: rgba(233, 30, 99, 0.3);
    box-shadow: 0 12px 40px rgba(233, 30, 99, 0.15);
}

body.light-mode .markalar-service__icon {
    background: rgba(233, 30, 99, 0.08);
}

body.light-mode .markalar-service:hover .markalar-service__icon {
    background: rgba(233, 30, 99, 0.12);
}

body.light-mode .markalar-service__title {
    color: #1d1d1f;
}

/* ===== RESPONSIVE ===== */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
    .markalar-services__grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Desktop (1200px - 1399px) */
@media (max-width: 1399px) {
    .markalar-services__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Tablet (768px - 1199px) */
@media (max-width: 1199px) {
    .markalar-hero {
        padding: 100px 0 80px;
    }
    
    .markalar-hero__title {
        font-size: 36px;
    }
    
    .markalar-hero__subtitle {
        font-size: 18px;
    }
    
    .markalar-hero__description {
        font-size: 15px;
        margin-bottom: 50px;
    }
    
    .markalar-hero__image-wrapper {
        max-width: 700px;
        margin-bottom: 50px;
    }
    
    .markalar-videos {
        padding: 80px 0;
    }
    
    .markalar-videos__title {
        font-size: 32px;
    }
    
    .markalar-videos__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .markalar-videos__feature-box {
        grid-column: span 3;
    }
    
    .markalar-videos__features {
        flex-direction: row;
        gap: 16px;
    }
    
    .markalar-videos__feature {
        flex: 1;
    }
    
    .markalar-videos__btn {
        width: auto;
        padding: 14px 40px;
    }
    
    .markalar-brands {
        padding: 60px 0;
    }
    
    .markalar-brands__header {
        padding: 0 20px;
        margin-bottom: 40px;
    }
    
    .markalar-brands__title {
        font-size: 28px;
    }
    
    .markalar-brands__container {
        padding: 0 10px;
    }
    
    .markalar-brands__scroll {
        gap: 16px;
    }
    
    .markalar-brands__card {
        min-width: 180px;
        height: 120px;
        padding: 16px;
    }
    
    .markalar-stats {
        padding: 80px 0;
    }
    
    .markalar-stats__title {
        font-size: 32px;
    }
    
    .markalar-stats__grid {
        gap: 30px;
    }
    
    .markalar-services {
        padding: 80px 0;
    }
    
    .markalar-services__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile (< 768px) */
@media (max-width: 767px) {
    .markalar-hero {
        padding: 80px 0 60px;
    }
    
    .markalar-hero__content {
        padding: 0 20px;
    }
    
    .markalar-hero__title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .markalar-hero__subtitle {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .markalar-hero__description {
        font-size: 14px;
        margin-bottom: 40px;
    }
    
    .markalar-hero__image-wrapper {
        max-width: 100%;
        margin-bottom: 40px;
        border-radius: 16px;
    }
    
    .markalar-hero__btn {
        width: 100%;
        justify-content: center;
        padding: 16px 40px;
        font-size: 15px;
    }
    
    .markalar-hero__footer-text {
        font-size: 13px;
        margin-top: 20px;
    }
    
    .markalar-videos {
        padding: 60px 0;
    }
    
    .markalar-videos__header {
        padding: 0 20px;
        margin-bottom: 40px;
    }
    
    .markalar-videos__title {
        font-size: 26px;
    }
    
    .markalar-videos__grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 20px;
    }
    
    .markalar-videos__feature-box {
        grid-column: 1;
        order: 5;
    }
    
    .markalar-videos__features {
        flex-direction: column;
        gap: 16px;
    }
    
    .markalar-videos__video {
        height: 280px;
    }
    
    .markalar-videos__btn {
        width: 100%;
    }
    
    .markalar-brands {
        padding: 50px 0;
    }
    
    .markalar-brands__header {
        padding: 0 20px;
        margin-bottom: 30px;
    }
    
    .markalar-brands__title {
        font-size: 24px;
    }
    
    .markalar-brands__container {
        padding: 0 10px;
    }
    
    .markalar-brands__scroll {
        gap: 12px;
    }
    
    .markalar-brands__card {
        min-width: 160px;
        height: 100px;
        padding: 12px;
    }
    
    .markalar-stats {
        padding: 60px 0;
    }
    
    .markalar-stats__title {
        font-size: 26px;
        padding: 0 20px;
        margin-bottom: 40px;
    }
    
    .markalar-stats__grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .markalar-stat {
        padding: 40px 28px;
    }
    
    .markalar-stat__icon {
        width: 70px;
        height: 70px;
    }
    
    .markalar-stat__icon i {
        font-size: 32px;
    }
    
    .markalar-stat__number {
        font-size: 48px;
    }
    
    .markalar-stat__label {
        font-size: 16px;
    }
    
    .markalar-services {
        padding: 60px 0;
    }
    
    .markalar-services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 0 20px;
    }
    
    .markalar-service {
        padding: 28px 20px;
    }
    
    .markalar-service__icon {
        width: 56px;
        height: 56px;
    }
    
    .markalar-service__icon i {
        font-size: 24px;
    }
    
    .markalar-service__title {
        font-size: 14px;
    }
}

/* Small Mobile (< 576px) */
@media (max-width: 575px) {
    .markalar-hero__title {
        font-size: 24px;
    }
    
    .markalar-hero__subtitle {
        font-size: 15px;
    }
    
    .markalar-videos__title {
        font-size: 24px;
    }
    
    .markalar-videos__video {
        height: 240px;
    }
    
    .markalar-brands__title {
        font-size: 22px;
    }
    
    .markalar-brands__card {
        min-width: 140px;
        height: 90px;
    }
    
    .markalar-stats__title {
        font-size: 24px;
    }
    
    .markalar-services__grid {
        grid-template-columns: 1fr;
    }
}

/* ===== ANIMATIONS ===== */
.markalar-stat,
.markalar-service {
    animation: fadeInUp 0.6s ease-out backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== ACCESSIBILITY ===== */
.markalar-hero__btn:focus,
.markalar-stat:focus,
.markalar-service:focus {
    outline: 2px solid #E91E63;
    outline-offset: 2px;
}
