/* Renk ve Işık Düzenleme Page CSS */
:root {
    --studio-orange: #FF6A00;
    --studio-orange-dark: #e65f00;
    --studio-dark: #1a1a1a;
    --studio-gray: #f4f4f4;
}

/* Hero Section */
.studio-hero {
    position: relative;
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    color: #fff;
    overflow: hidden;
}

.studio-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 106, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.studio-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.studio-hero h1 span {
    color: var(--studio-orange);
    background: linear-gradient(90deg, #FF6A00, #ff9e56);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.studio-hero p {
    font-size: 1.25rem;
    color: #ccc;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-badge-studio {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 106, 0, 0.1);
    border: 1px solid rgba(255, 106, 0, 0.3);
    color: var(--studio-orange);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn-studio-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--studio-orange);
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 106, 0, 0.3);
}

.btn-studio-primary:hover {
    background: var(--studio-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 106, 0, 0.4);
    color: #fff;
}

/* Before/After Section */
.comparison-sec {
    padding: 80px 0;
    background: #fff;
}

.comparison-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.comparison-card img {
    width: 100%;
    display: block;
}

.comparison-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Features */
.feature-box-studio {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-box-studio:hover {
    border-color: var(--studio-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feat-icon-studio {
    width: 60px;
    height: 60px;
    background: rgba(255, 106, 0, 0.1);
    color: var(--studio-orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}