/* Dikkat Edilecek Hususlar - Premium Redesign */

/* Override subpage-header for this page */
.subpage-header {
    padding: 140px 0 60px;
}

/* ========================================
   HERO SECTION
   ======================================== */

.dikkat-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 2rem 80px;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: brightness(0.3) saturate(1.2);
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(10, 10, 10, 0.3) 0%,
            rgba(10, 10, 10, 0.8) 70%,
            rgba(10, 10, 10, 1) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 700px;
    animation: heroFadeUp 1s cubic-bezier(0.23, 1, 0.32, 1) both;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-title {
    font-family: var(--font-heading-tech);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 550px;
    margin: 0 auto;
}

/* ========================================
   MAIN CONTENT
   ======================================== */

.dikkat-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 6rem;
}

/* ========================================
   SECTION HEADER
   ======================================== */

.section-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.section-number {
    width: 60px;
    height: 60px;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
    flex-shrink: 0;
    animation: numberPulse 3s ease-in-out infinite;
}

.section-number.warning {
    border-color: #ef4444;
    color: #ef4444;
}

@keyframes numberPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.3);
    }

    50% {
        box-shadow: 0 0 20px 5px rgba(245, 158, 11, 0.1);
    }
}

.section-header h2 {
    font-family: var(--font-heading-tech);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: #fff;
}

/* ========================================
   CHECKLIST CARDS
   ======================================== */

.checklist-section {
    margin-bottom: 5rem;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.check-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1),
        border-color 0.4s ease;
    animation: cardSlideIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.check-card[data-index="1"] {
    animation-delay: 0.1s;
}

.check-card[data-index="2"] {
    animation-delay: 0.2s;
}

.check-card[data-index="3"] {
    animation-delay: 0.3s;
}

.check-card[data-index="4"] {
    animation-delay: 0.4s;
}

@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.check-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(226, 220, 74, 0.15);
}

/* Card accent line animation */
.card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #E2DC4A, #b8b33a);
    transition: width 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.check-card:hover .card-accent {
    width: 100%;
}

.card-icon-wrap {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(226, 220, 74, 0.15), rgba(184, 179, 58, 0.08));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: transform 0.4s ease, background 0.4s ease;
}

.card-icon-wrap svg {
    width: 24px;
    height: 24px;
    color: #E2DC4A;
    transition: transform 0.4s ease;
}

.check-card:hover .card-icon-wrap {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(226, 220, 74, 0.3), rgba(184, 179, 58, 0.15));
}

.check-card:hover .card-icon-wrap svg {
    transform: scale(1.1);
}

.check-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
    transition: transform 0.4s ease;
}

.check-card:hover h3 {
    transform: translateX(5px);
}

.check-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* ========================================
   WARNING SECTION
   ======================================== */

.warning-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: rgba(239, 68, 68, 0.03);
    border: 1px solid rgba(239, 68, 68, 0.1);
    border-radius: 20px;
    padding: 3rem;
    animation: fadeInUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.5s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.warning-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.warning-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    transition: transform 0.4s ease, background 0.4s ease;
}

.warning-item:hover {
    transform: translateX(8px);
    background: rgba(239, 68, 68, 0.05);
}

.warning-icon {
    width: 36px;
    height: 36px;
    background: rgba(239, 68, 68, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: #ef4444;
    flex-shrink: 0;
}

.warning-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.25rem;
}

.warning-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.warning-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.warning-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.warning-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            transparent 50%,
            rgba(10, 10, 10, 0.6) 100%);
    pointer-events: none;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .checklist-grid {
        grid-template-columns: 1fr;
    }

    .warning-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .warning-image {
        order: -1;
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 768px) {
    .dikkat-hero {
        min-height: 50vh;
        padding: 100px 1.5rem 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .dikkat-main {
        padding: 3rem 1.5rem 4rem;
    }

    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .check-card {
        padding: 1.5rem;
    }

    .warning-section {
        padding: 2rem;
    }
}