/* ==========================================================================
   KARTON MEDYA - GLOBAL STYLES
   ========================================================================== */

/* Core Styles */
body { 
    background-color: #fafafa; 
    color: #111827; 
    overflow-x: hidden; 
    -webkit-font-smoothing: antialiased; 
}

::selection { 
    background-color: #fbcfe0; 
    color: #6e0d24; 
}

/* Nav & Header Components */
.glass-nav { 
    background: rgba(255, 255, 255, 0.7); 
    backdrop-filter: blur(20px); 
    border: 1px solid rgba(255, 255, 255, 0.8); 
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02); 
}

.text-gradient { 
    background: linear-gradient(135deg, #b9153f, #d61c4f); 
    -webkit-background-clip: text; 
    color: transparent; 
    background-clip: text; 
    display: inline-block; 
}

/* Background Gradients (Mesh) */
.mesh-bg { 
    position: absolute; 
    inset: 0; 
    z-index: -1; 
    pointer-events: none; 
    opacity: 0.8;
    background: 
        radial-gradient(ellipse at 10% 0%, rgba(252, 231, 235, 0.5) 0%, transparent 60%),
        radial-gradient(ellipse at 90% 10%, rgba(249, 168, 189, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 100%, rgba(253, 242, 244, 0.6) 0%, transparent 80%);
}

.mesh-bg-about { 
    position: absolute; 
    inset: 0; 
    z-index: -1; 
    pointer-events: none; 
    opacity: 0.5; 
    background: radial-gradient(ellipse at 50% 0%, rgba(252, 231, 235, 0.8) 0%, transparent 60%); 
}

/* UI Components */
.pill { 
    display: inline-flex; 
    align-items: center; 
    gap: 6px; 
    border-radius: 9999px; 
    padding: 6px 16px; 
    font-size: 0.875rem; 
    font-weight: 600; 
    background: #fdf2f4; 
    color: #b9153f; 
    border: 1px solid rgba(214, 28, 79, 0.1); 
}

.btn-primary { 
    transition: all 0.2s ease; 
}

.btn-primary:hover { 
    box-shadow: 0 10px 25px -5px rgba(214, 28, 79, 0.4); 
    transform: translateY(-2px); 
}

/* Bento Grid Cards */
.bento-card { 
    background: #ffffff; 
    border-radius: 28px; 
    border: 1px solid rgba(0, 0, 0, 0.04); 
    box-shadow: 0 1px 3px rgba(0,0,0,0.01); 
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); 
    position: relative; 
    overflow: hidden; 
}

.bento-card:hover { 
    transform: translateY(-4px); 
    box-shadow: 0 20px 40px -8px rgba(0, 0, 0, 0.05); 
    border-color: rgba(214, 28, 79, 0.15); 
}

/* Brand Trust Logo Marquee */
.marquee-wrapper { 
    display: flex; 
    white-space: nowrap; 
    overflow: hidden; 
    width: 100%; 
    padding: 1.5rem 0; 
}

.marquee-inner { 
    display: flex; 
    animation: marquee 18s linear infinite; 
    gap: 4rem; 
    padding-right: 4rem;
}

@keyframes marquee { 
    0% { transform: translateX(0); } 
    100% { transform: translateX(-50%); } 
}

.brand-text { 
    font-size: 1.25rem; 
    font-weight: 700; 
    color: #9ca3af; 
    text-transform: uppercase; 
    letter-spacing: 0.1em; 
}

/* Contact Page (iletisim.php) Specific Styles */
body.iletisim-page { 
    background-color: #ffffff; 
    color: #1f2937; 
    animation: pageLoad 0.6s ease-out; 
}

@keyframes pageLoad { 
    0% { opacity: 0; transform: translateY(15px); } 
    100% { opacity: 1; transform: translateY(0); } 
}

body.iletisim-page .glass-nav { 
    background: rgba(255, 255, 255, 0.85); 
    backdrop-filter: blur(12px); 
    border-bottom: 1px solid rgba(214, 28, 79, 0.08); 
}

.input-glass { 
    background: #fdf2f4; 
    border: 1px solid #fce7eb; 
    transition: all 0.3s; 
}

.input-glass:focus { 
    background: #fff; 
    border-color: #d61c4f; 
    box-shadow: 0 0 0 4px rgba(214, 28, 79, 0.1); 
    outline: none; 
}

/* Work Page (islerimiz.php) Specific Styles */
.testimonial-card { 
    background: #ffffff; 
    border-radius: 28px; 
    border: 1px solid rgba(0, 0, 0, 0.03); 
    box-shadow: 0 4px 25px -4px rgba(0, 0, 0, 0.02); 
    padding: 2.5rem 2rem 2rem 2rem; 
    position: relative; 
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card:hover { 
    transform: translateY(-6px); 
    box-shadow: 0 20px 40px -10px rgba(214, 28, 79, 0.05); 
    border-color: rgba(214, 28, 79, 0.15); 
}
