/* ========================================
   UGC PAGE STYLES
   influencer360.co Style - Birebir Aynı
   ======================================== */

/* ===== HERO SECTION ===== */
.ugc-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.ugc-hero__content {
    text-align: left;
    padding: 40px 0;
}

.ugc-hero__subtitle {
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 16px;
    font-style: italic;
}

.ugc-hero__title {
    font-size: 72px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
    line-height: 1.1;
    text-transform: uppercase;
}

.ugc-hero__image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.ugc-hero__circle {
    width: 450px;
    height: 450px;
    background: rgb(255 255 255);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.ugc-hero__phone {
    max-width: 350px;
    height: auto;
    position: relative;
    z-index: 2;
}

.ugc-hero__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ffffff;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-width: 180px;
}

.ugc-hero__badge-text {
    font-size: 11px;
    font-weight: 600;
    color: #1d1d1f;
    line-height: 1.4;
    margin: 0;
}

.ugc-hero__highlight {
    background: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== UGC NEDIR SECTION ===== */
.ugc-nedir {
    padding: 80px 0;
    background: #ffffff;
}

.ugc-nedir__content {
    text-align: center;
}

.ugc-nedir__title {
    font-size: 36px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 32px;
    line-height: 1.3;
}

.ugc-nedir__text {
    font-size: 17px;
    color: #6b7280;
    line-height: 1.8;
}

.ugc-nedir__text p {
    margin-bottom: 20px;
}

.ugc-nedir__text p:last-child {
    margin-bottom: 0;
}

/* ===== MARKALAR SECTION ===== */
.ugc-markalar {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.ugc-markalar__header {
    text-align: center;
    margin-bottom: 60px;
}

.ugc-markalar__title {
    font-size: 36px;
    font-weight: 700;
    color: #1d1d1f;
    margin: 0;
    line-height: 1.3;
}

/* ===== CARDS CONTAINER ===== */
.ugc-markalar__container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.ugc-markalar__scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar but keep functionality */
.ugc-markalar__scroll::-webkit-scrollbar {
    height: 8px;
}

.ugc-markalar__scroll::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.ugc-markalar__scroll::-webkit-scrollbar-thumb {
    background: rgba(233, 30, 99, 0.5);
    border-radius: 10px;
}

.ugc-markalar__scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(233, 30, 99, 0.7);
}

/* ===== STORY CARD ===== */
.ugc-markalar__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;
}

.ugc-markalar__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(233, 30, 99, 0.3);
}

/* ===== CARD IMAGE ===== */
.ugc-markalar__card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ugc-markalar__card:hover .ugc-markalar__card-image {
    transform: scale(1.05);
}

/* ===== CARD OVERLAY ===== */
.ugc-markalar__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;
}

.ugc-markalar__card:hover .ugc-markalar__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 ===== */
.ugc-markalar__card-brand {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ugc-markalar__card-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* ===== NASIL YAPIYORUZ SECTION ===== */
.ugc-nasil {
    padding: 80px 0;
    background: #ffffff;
}

.ugc-nasil__content {
    text-align: center;
}

.ugc-nasil__title {
    font-size: 36px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 32px;
    line-height: 1.3;
}

.ugc-nasil__text {
    font-size: 17px;
    color: #6b7280;
    line-height: 1.8;
}

.ugc-nasil__text p {
    margin-bottom: 20px;
}

.ugc-nasil__text p:last-child {
    margin-bottom: 0;
}

/* ===== CTA SECTION ===== */
.ugc-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
    text-align: center;
}

.ugc-cta__content {
    max-width: 800px;
    margin: 0 auto;
}

.ugc-cta__title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 24px;
    line-height: 1.3;
    opacity: 1 !important;
}

.ugc-cta__description {
    font-size: 18px;
    color: #ffffff !important;
    line-height: 1.8;
    margin: 0;
    opacity: 1 !important;
}

/* ===== FORM SECTION ===== */
.ugc-form-section {
    padding: 80px 0 100px;
    background: #ffffff;
}

.ugc-form {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.ugc-form__title {
    font-size: 24px;
    font-weight: 700;
    color: #1d1d1f;
    text-align: center;
    margin-bottom: 32px;
    line-height: 1.4;
}

.ugc-form__form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ugc-form__group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ugc-form__label {
    font-size: 14px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 0;
}

.ugc-form__input,
.ugc-form__textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    color: #1d1d1f;
    background: #ffffff;
    transition: all 0.3s ease;
    font-family: 'Nunito', sans-serif;
}

.ugc-form__input:focus,
.ugc-form__textarea:focus {
    outline: none;
    border-color: #E91E63;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.ugc-form__textarea {
    resize: vertical;
    min-height: 120px;
}

.ugc-form__submit {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
    color: #ffffff;
    border: none;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.ugc-form__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(233, 30, 99, 0.3);
}

/* ===== RESPONSIVE ===== */

/* Tablet (768px - 1199px) */
@media (max-width: 1199px) {
    .ugc-hero {
        padding: 80px 0;
        min-height: 500px;
    }
    
    .ugc-hero__title {
        font-size: 56px;
    }
    
    .ugc-hero__subtitle {
        font-size: 20px;
    }
    
    .ugc-hero__circle {
        width: 380px;
        height: 380px;
    }
    
    .ugc-hero__phone {
        max-width: 200px;
    }
    
    .ugc-hero__badge {
        max-width: 160px;
        padding: 10px 14px;
    }
    
    .ugc-hero__badge-text {
        font-size: 10px;
    }
    
    .ugc-nedir,
    .ugc-markalar,
    .ugc-nasil,
    .ugc-cta {
        padding: 60px 0;
    }
    
    .ugc-nedir__title,
    .ugc-markalar__title,
    .ugc-nasil__title {
        font-size: 32px;
    }
    
    .ugc-cta__title {
        font-size: 36px;
    }
    
    .ugc-markalar__card {
        min-width: 240px;
        height: 360px;
    }
    
    .ugc-markalar__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    
    .ugc-form-section {
        padding: 60px 0 80px;
    }
    
    .ugc-form {
        padding: 40px 32px;
    }
}

/* Mobile (< 768px) */
@media (max-width: 767px) {
    .ugc-hero {
        padding: 80px 0 60px;
        min-height: auto;
    }
    
    .ugc-hero__content {
        padding: 0 20px;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .ugc-hero__subtitle {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .ugc-hero__title {
        font-size: 42px;
    }
    
    .ugc-hero__image {
        padding: 20px 0;
    }
    
    .ugc-hero__circle {
        width: 300px;
        height: 300px;
    }
    
    .ugc-hero__phone {
        max-width: 200px;
    }
    
    .ugc-hero__badge {
        top: 10px;
        right: 10px;
        max-width: 140px;
        padding: 8px 12px;
    }
    
    .ugc-hero__badge-text {
        font-size: 9px;
    }
    
    .ugc-nedir,
    .ugc-markalar,
    .ugc-nasil,
    .ugc-cta {
        padding: 50px 0;
    }
    
    .ugc-nedir__title,
    .ugc-markalar__title,
    .ugc-nasil__title {
        font-size: 26px;
        margin-bottom: 24px;
    }
    
    .ugc-nedir__text,
    .ugc-nasil__text {
        font-size: 16px;
    }
    
    .ugc-cta__title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .ugc-cta__description {
        font-size: 16px;
    }
    
    .ugc-markalar__container {
        padding: 0 10px;
    }
    
    .ugc-markalar__scroll {
        gap: 16px;
    }
    
    .ugc-markalar__card {
        min-width: 220px;
        height: 340px;
    }
    
    .ugc-markalar__card-overlay {
        padding: 20px;
    }
    
    .ugc-markalar__card-brand {
        font-size: 18px;
    }
    
    .ugc-markalar__card-description {
        font-size: 13px;
    }
    
    .ugc-markalar__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .ugc-markalar__item {
        padding: 24px 16px;
        min-height: 100px;
    }
    
    .ugc-markalar__logo {
        max-height: 50px;
    }
    
    .ugc-form-section {
        padding: 50px 0 60px;
    }
    
    .ugc-form {
        padding: 32px 24px;
    }
    
    .ugc-form__title {
        font-size: 20px;
        margin-bottom: 24px;
    }
    
    .ugc-form__form {
        gap: 20px;
    }
}

/* ===== ANIMATIONS ===== */
.ugc-markalar__item {
    animation: fadeInUp 0.6s ease-out backwards;
}

.ugc-markalar__item:nth-child(1) { animation-delay: 0s; }
.ugc-markalar__item:nth-child(2) { animation-delay: 0.1s; }
.ugc-markalar__item:nth-child(3) { animation-delay: 0.2s; }
.ugc-markalar__item:nth-child(4) { animation-delay: 0.3s; }
.ugc-markalar__item:nth-child(5) { animation-delay: 0.4s; }
.ugc-markalar__item:nth-child(6) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== ACCESSIBILITY ===== */
.ugc-form__input:focus,
.ugc-form__textarea:focus {
    outline: 2px solid #E91E63;
    outline-offset: 2px;
}

.ugc-form__submit:focus {
    outline: 2px solid #E91E63;
    outline-offset: 2px;
}

.ugc-markalar__item:focus-within {
    outline: 2px solid #E91E63;
    outline-offset: 4px;
}
