/* =========================================================
   PAGE LAYOUTS
   SAYFAM.NET CMS SYSTEM
   ========================================================= */


/* ---------------------------------------------------------
   PAGE LAYOUT 1 — The Masterpiece Redesign
   --------------------------------------------------------- */
:root {
    --pl1-gold: #c5a059;
    --pl1-dark: #0f172a;
    --pl1-text: #334155;
    --pl1-bg: #ffffff;
    --pl1-card-bg: #f8fafc;
}

.pl1-section {
    padding: 160px 0;
    background-color: var(--pl1-bg);
    overflow: hidden;
}

.pl1-master-block {
    margin-bottom: 200px;
}

/* 1. H2 Grand Title - Centered */
.pl1-main-title {
    text-align: center;
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 900;
    color: var(--pl1-dark);
    letter-spacing: -0.05em;
    margin-bottom: 80px;
    position: relative;
    padding-bottom: 30px;
}

.pl1-main-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 8px;
    background: var(--pl1-gold);
    border-radius: 4px;
}

/* 2. Info Row: Centered Storytelling Layout */
.pl1-h2-info-row {
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 40px;
    text-align: center;
}

.pl1-main-content {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--pl1-text);
    max-width: 900px;
    margin: 0 auto 60px;
    opacity: 0.85;
}

.pl1-main-media-wrap {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 50px 120px rgba(0, 0, 0, 0.1);
    transition: all 0.6s ease;
    max-width: 1100px;
    margin: 0 auto;
}

.pl1-main-media-wrap:hover {
    transform: scale(1.02);
    box-shadow: 0 60px 140px rgba(197, 160, 89, 0.2);
}

.pl1-media-box {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.pl1-media-box img,
.pl1-media-box video {
    width: 100%;
    height: auto;
    display: block;
}

/* 3. Swiper & Card Slider Section */
.pl1-swiper-outer {
    position: relative;
    padding: 0 50px;
    margin-top: 80px;
}

/* GÜVENLİ TEMİZLİK: Hiçbir statik metin kalmasın */
.pl1-swiper-outer::before {
    content: none !important;
    display: none !important;
}

.pl1-h3-card {
    height: auto;
    display: flex;
}

.pl1-h3-card-inner {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
    height: 650px;
    /* Fixed height for consistency */
    display: flex;
    flex-direction: column;
    transition: all 0.5s ease;
    border-radius: 40px 4px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    position: relative;
}

.pl1-h3-img {
    height: 220px;
    flex-shrink: 0;
    overflow: hidden;
}

.pl1-h3-img img,
.pl1-h3-img video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Sweet Inner Scrollbar */
.pl1-h3-body-scrollable {
    flex: 1;
    overflow-y: auto;
    padding: 35px;
    scrollbar-width: thin;
    scrollbar-color: var(--pl1-gold) #f1f1f1;
}

.pl1-h3-body-scrollable::-webkit-scrollbar {
    width: 6px;
}

.pl1-h3-body-scrollable::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.pl1-h3-body-scrollable::-webkit-scrollbar-thumb {
    background: var(--pl1-gold);
    border-radius: 10px;
}

.pl1-h3-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--pl1-dark);
}

.pl1-h3-content {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--pl1-text);
}

/* Nested Reveal within Swiper */
.pl1-h3-nested-wrap {
    margin-top: 30px;
}

.pl1-nested-block {
    border-left: 2px solid var(--pl1-gold);
    padding-left: 20px;
    margin-bottom: 20px;
}

.pl1-nested-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pl1-dark);
}

/* Navigation Arrows */
.pl1-swiper-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.pl1-swiper-prev,
.pl1-swiper-next {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pl1-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pl1-swiper-prev:hover,
.pl1-swiper-next:hover {
    background: var(--pl1-gold);
    color: #fff;
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .pl1-main-title {
        font-size: 3rem;
    }

    .pl1-h2-info-row {
        flex-direction: column;
    }

    .pl1-main-content {
        padding-right: 0;
        order: 2;
        margin-top: 40px;
    }

    .pl1-main-media-wrap {
        order: 1;
    }

    .pl1-h3-card-inner {
        height: 550px;
    }

    .pl1-swiper-outer {
        padding: 0 10px;
    }

    .pl1-h3-card {
        min-width: 320px;
        width: 85vw;
    }
}



/* ---------------------------------------------------------
   PAGE LAYOUT 2 — THE INFINITE SHOWCASE (FIRE EDITION)
   --------------------------------------------------------- */
.pl2-section {
    background: #0a0a0a;
    /* Ultra Dark Premium */
    color: #ffffff;
    padding: 120px 0;
    overflow: hidden;
    position: relative;
    --pl2-gold: #c5a059;
    --pl2-accent: rgba(197, 160, 89, 0.15);
}

.pl2-bg-watermark {
    position: absolute;
    top: 5%;
    left: -5%;
    font-size: 20vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    pointer-events: none;
    line-height: 1;
    z-index: 0;
}

.pl2-header {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
    z-index: 2;
}

.pl2-main-title {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    line-height: 0.9;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.4) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pl2-main-content {
    max-width: 800px;
    margin: 30px auto 0;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

.pl2-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.pl2-panel {
    position: relative;
    height: 700px;
    border-radius: 40px;
    overflow: hidden;
    background: #111;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 992px) {
    .pl2-panel:nth-child(even) {
        margin-top: 80px;
    }
}

.pl2-panel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.pl2-panel-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    z-index: 2;
}

.pl2-panel-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px;
    z-index: 3;
    transition: all 0.6s ease;
}

.pl2-h3-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.pl2-h3-title::before {
    content: "";
    width: 40px;
    height: 2px;
    background: var(--pl2-gold);
}

.pl2-h3-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 450px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.2s;
}

.pl2-panel:hover {
    border-color: var(--pl2-gold);
    transform: translateY(-10px);
}

.pl2-panel:hover .pl2-panel-bg {
    transform: scale(1.1);
}

.pl2-panel:hover .pl2-h3-desc {
    opacity: 1;
    transform: translateY(0);
}

.pl2-nested-area {
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.3s;
}

.pl2-panel:hover .pl2-nested-area {
    opacity: 1;
    transform: translateY(0);
}

.pl2-nested-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--pl2-gold);
    margin-bottom: 10px;
}

.pl2-nested-content {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

.pl2-bg-video,
.pl2-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .pl2-main-title {
        font-size: 3rem;
    }

    .pl2-grid {
        grid-template-columns: 1fr;
    }

    .pl2-panel {
        height: 500px;
    }

    .pl2-panel-content {
        padding: 30px;
    }

    .pl2-h3-title {
        font-size: 2rem;
    }
}


/* ---------------------------------------------------------
   PAGE LAYOUT 3 — (tasarıma hazır)
   --------------------------------------------------------- */
/* ---------------------------------------------------------
   PAGE LAYOUT 3 — THE CINEMATIC STRIPS
   --------------------------------------------------------- */
.pl3-section {
    background: #000;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    padding: 0;
}

.pl3-sidebar {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: left bottom;
    white-space: nowrap;
    z-index: 10;
}

.pl3-main-title {
    font-size: 8rem;
    font-weight: 900;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
    letter-spacing: 0.1em;
}

.pl3-intro-container {
    padding-left: 160px;
    padding-top: 80px;
    padding-bottom: 40px;
    max-width: 900px;
    position: relative;
    z-index: 5;
}

.pl3-main-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    border-left: 2px solid #c5a059;
    padding-left: 30px;
}

.pl3-strips-container {
    display: flex;
    width: 100%;
    height: 100vh;
    padding-left: 120px;
}

.pl3-strip {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: flex 1s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.pl3-strip:hover {
    flex: 3;
}

.pl3-strip::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 2;
}

.pl3-strip-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.pl3-strip:hover .pl3-strip-bg {
    transform: scale(1.1);
}

.pl3-video,
.pl3-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pl3-strip-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px;
    z-index: 3;
    pointer-events: none;
}

.pl3-h3-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
    transform: rotate(-90deg);
    transform-origin: left bottom;
    position: absolute;
    bottom: 120px;
    left: 60px;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    opacity: 0.5;
}

.pl3-strip:hover .pl3-h3-title {
    transform: rotate(0deg);
    bottom: 240px;
    left: 60px;
    opacity: 1;
    font-size: 4rem;
    color: #c5a059;
}

.pl3-strip-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.pl3-strip:hover .pl3-strip-reveal {
    opacity: 1;
    transform: translateY(0);
}

.pl3-h3-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .pl3-strips-container {
        flex-direction: column;
        padding-left: 0;
        height: auto;
    }

    .pl3-sidebar {
        position: relative;
        transform: none;
        left: 0;
        top: 0;
        padding: 40px;
    }

    .pl3-main-title {
        font-size: 4rem;
        -webkit-text-stroke: 0;
        color: #fff;
    }

    .pl3-strip {
        height: 300px;
        flex: none !important;
    }

    .pl3-h3-title {
        transform: none;
        position: relative;
        bottom: 0;
        left: 0;
        opacity: 1;
        font-size: 2rem;
    }

    .pl3-strip-reveal {
        display: block;
        opacity: 1;
        transform: none;
    }
}


/* ---------------------------------------------------------
   PAGE LAYOUT 4 — (tasarıma hazır)
   --------------------------------------------------------- */
/* ---------------------------------------------------------
   PAGE LAYOUT 4 — THE GRAVITY ORBIT
   --------------------------------------------------------- */
.pl4-section {
    background: radial-gradient(circle at 50% 50%, #1a1a1a 0%, #000 100%);
    color: #fff;
    padding: 150px 0;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    perspective: 2000px;
}

.pl4-central-header {
    text-align: center;
    position: relative;
    z-index: 10;
    margin-bottom: 120px;
}

.pl4-main-title {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 900;
    text-transform: uppercase;
    background: linear-gradient(180deg, #fff 0%, #c5a059 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pl4-orbit-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
    position: relative;
    z-index: 5;
}

.pl4-card {
    width: 400px;
    min-height: 500px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 40px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transform-style: preserve-3d;
}

.pl4-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: #c5a059;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), 0 0 30px rgba(197, 160, 89, 0.2);
}

.pl4-media-wrap {
    width: 100%;
    height: 220px;
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 30px;
    transform: translateZ(30px);
}

.pl4-media-box,
.pl4-media-box img,
.pl4-media-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pl4-h3-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    transform: translateZ(50px);
}

.pl4-h3-content {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    transform: translateZ(20px);
}

@media (max-width: 768px) {
    .pl4-card {
        width: 100%;
    }
}


/* ---------------------------------------------------------
   PAGE LAYOUT 5 — (tasarıma hazır)
   --------------------------------------------------------- */
/* ---------------------------------------------------------
   PAGE LAYOUT 5 — THE ARCHITECTURAL NARRATIVE
   --------------------------------------------------------- */
.pl5-section {
    background: #fff;
    color: #1a1a1a;
    padding: 100px 0;
    position: relative;
}

.pl5-container {
    display: flex;
    gap: 80px;
}

.pl5-media-side {
    flex: 1;
    height: 600px;
    position: sticky;
    top: 150px;
    border-radius: 40px;
    overflow: hidden;
    background: #f4f4f4;
}

.pl5-media-box {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.pl5-media-box.active {
    opacity: 1;
    z-index: 2;
}

.pl5-media-box img,
.pl5-media-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pl5-content-side {
    flex: 1;
}

.pl5-h2-header {
    margin-bottom: 120px;
}

.pl5-main-title {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 30px;
}

.pl5-main-content {
    font-size: 1.3rem;
    color: #666;
    line-height: 1.8;
}

.pl5-h3-block {
    margin-bottom: 200px;
    padding-left: 40px;
    border-left: 2px solid #eee;
    transition: all 0.5s ease;
}

.pl5-h3-block.active {
    border-left-color: #c5a059;
}

.pl5-h3-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    transition: color 0.5s ease;
}

.pl5-h3-block.active .pl5-h3-title {
    color: #c5a059;
}

.pl5-h3-desc {
    font-size: 1.15rem;
    color: #444;
    line-height: 1.8;
}

.pl5-nested-wrap {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #f0f0f0;
}

@media (max-width: 991px) {
    .pl5-container {
        flex-direction: column;
    }

    .pl5-media-side {
        position: relative;
        top: 0;
        height: 400px;
        margin-bottom: 50px;
    }
}


/* ---------------------------------------------------------
   PAGE LAYOUT 6 — (tasarıma hazır)
   --------------------------------------------------------- */
/* ---------------------------------------------------------
   PAGE LAYOUT 6 — THE CINEMATIC PILLARS
   --------------------------------------------------------- */
.pl6-section {
    background: #000;
    color: #fff;
    padding: 100px 0 0;
    overflow: hidden;
}

.pl6-header {
    text-align: center;
    margin-bottom: 80px;
    padding: 0 40px;
}

.pl6-main-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    color: #fff;
    line-height: 1;
}

.pl6-main-content {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 800px;
    margin: 20px auto 0;
}

.pl6-grid {
    display: flex;
    width: 100%;
    height: 80vh;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pl6-pillar {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 60px 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: flex 1s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.pl6-pillar:hover {
    flex: 2.2;
}

.pl6-panel-media {
    position: absolute;
    inset: 0;
    z-index: 1;
    transform: scale(1);
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.pl6-pillar:hover .pl6-panel-media {
    transform: scale(1.1);
}

.pl6-panel-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
}

.pl6-panel-media img,
.pl6-panel-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pl6-info {
    position: relative;
    z-index: 3;
    pointer-events: none;
}

.pl6-num {
    font-size: 1rem;
    font-weight: 800;
    color: #c5a059;
    margin-bottom: 20px;
    display: block;
    opacity: 0.6;
}

.pl6-h3-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.pl6-reveal-box {
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.pl6-pillar:hover .pl6-reveal-box {
    height: auto;
    opacity: 1;
    margin-top: 20px;
}

.pl6-h3-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    max-width: 400px;
}

@media (max-width: 991px) {
    .pl6-grid {
        flex-direction: column;
        height: auto;
    }

    .pl6-pillar {
        height: 450px;
        flex: none !important;
    }
}


/* ---------------------------------------------------------
   PAGE LAYOUT 7 — (tasarıma hazır)
   --------------------------------------------------------- */
/* ---------------------------------------------------------
   PAGE LAYOUT 7 — THE KINETIC ACCORDION
   --------------------------------------------------------- */
.pl7-section {
    background: #000;
    color: #fff;
    padding: 120px 0;
    overflow: hidden;
}

.pl7-header {
    text-align: left;
    margin-bottom: 80px;
    padding: 0 40px;
}

.pl7-main-title {
    font-size: 5rem;
    font-weight: 900;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    color: transparent;
    line-height: 1;
}

.pl7-main-content {
    font-size: 1.25rem;
    color: #888;
    max-width: 600px;
    margin-top: 20px;
}

.pl7-main-media-wrap {
    width: 100%;
    height: 400px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pl7-main-media-wrap img,
.pl7-main-media-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pl7-accordion {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pl7-item {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    cursor: pointer;
    transition: background 0.5s ease;
}

.pl7-item-header {
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 5;
}

.pl7-h3-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.pl7-arrow {
    font-size: 2rem;
    color: #c5a059;
    transition: transform 0.6s ease;
}

.pl7-content-wrap {
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.pl7-item.active .pl7-content-wrap {
    height: auto;
    opacity: 1;
    padding-bottom: 80px;
}

.pl7-item.active .pl7-h3-title {
    transform: translateX(20px);
    color: #c5a059;
}

.pl7-item.active .pl7-arrow {
    transform: rotate(45deg);
}

.pl7-inner-flex {
    display: flex;
    gap: 60px;
    padding: 0 40px;
}

.pl7-media-box {
    flex: 1.2;
    height: 450px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.pl7-media-box img,
.pl7-media-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pl7-h3-desc {
    font-size: 1.3rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 40px;
}

.pl7-nested-title {
    font-size: 1.4rem;
    color: #c5a059;
    margin-bottom: 10px;
    font-weight: 700;
}

.pl7-nested-content {
    color: #888;
    margin-bottom: 25px;
}

.pl7-bg-reveal {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%) scale(0.8);
    width: 300px;
    height: 300px;
    opacity: 0;
    filter: blur(20px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
    pointer-events: none;
}

.pl7-item:hover .pl7-bg-reveal {
    opacity: 0.2;
    transform: translateY(-50%) scale(1);
    filter: blur(5px);
}

@media (max-width: 991px) {
    .pl7-h3-title {
        font-size: 2rem;
    }

    .pl7-inner-flex {
        flex-direction: column;
    }
}


/* ---------------------------------------------------------
   PAGE LAYOUT 8 — (tasarıma hazır)
   --------------------------------------------------------- */
/* ---------------------------------------------------------
   PAGE LAYOUT 8 — THE GLITCH-GLASS MASH (FINALE)
   --------------------------------------------------------- */
.pl8-section {
    background: #050505;
    color: #fff;
    padding: 150px 0;
    position: relative;
    overflow: hidden;
}

.pl8-mesh {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 20% 30%, #c5a059 0%, transparent 20%), radial-gradient(circle at 80% 70%, #c5a059 0%, transparent 20%);
    filter: blur(150px);
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

.pl8-header {
    text-align: center;
    margin-bottom: 120px;
    position: relative;
    z-index: 5;
}

.pl8-main-title {
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 900;
    line-height: 0.8;
    letter-spacing: -0.06em;
    margin-bottom: 40px;
}

.pl8-main-content {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.4);
    max-width: 700px;
    margin: 0 auto;
}

.pl8-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 100px;
    position: relative;
    z-index: 5;
}

.pl8-card-wrap {
    perspective: 1500px;
}

.pl8-card {
    width: 450px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform-style: preserve-3d;
}

.pl8-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #c5a059;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8), 0 0 40px rgba(197, 160, 89, 0.1);
}

.pl8-img-box {
    width: 100%;
    height: 280px;
    border-radius: 40px;
    overflow: hidden;
    margin-bottom: 40px;
    transform: translateZ(50px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.pl8-media img,
.pl8-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pl8-h3-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
    transform: translateZ(80px);
}

.pl8-h3-title::after {
    content: attr(data-text);
    position: absolute;
    top: 5px;
    left: 5px;
    color: #c5a059;
    z-index: -1;
    opacity: 0.2;
    filter: blur(10px);
}

.pl8-h3-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    transform: translateZ(40px);
}

@media (max-width: 768px) {
    .pl8-card {
        width: 100vw;
        height: auto;
    }
}


/* ---------------------------------------------------------
   PAGE LAYOUT GALLERY — Sayfa galerisi
   --------------------------------------------------------- */
.plg-section {
    padding: 80px 0;
}

.plg-section .section-title {
    margin-bottom: 2.5rem;
}

.plg-title {
    font-weight: 700;
}

.plg-h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: .75rem;
}

.plg-h2::after {
    content: "";
    display: block;
    width: 56px;
    height: 3px;
    background: var(--bs-primary, #ff6b35);
    margin-top: .75rem;
    border-radius: 2px;
}

.plg-h3 {
    font-size: 1.35rem;
    margin: 1.5rem 0 .5rem;
}

.plg-h4 {
    font-size: 1.15rem;
    margin: 1.25rem 0 .4rem;
}

.plg-h5 {
    font-size: 1.05rem;
    margin: 1rem 0 .35rem;
}

.plg-content {
    color: #555;
    line-height: 1.8;
}

.plg-block {
    margin-bottom: 2rem;
}

.plg-card {
    overflow: hidden;
    border-radius: 14px;
    position: relative;
}

.plg-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform .5s ease;
    display: block;
}

.plg-card:hover img {
    transform: scale(1.06);
}

.plg-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, .55) 100%);
    opacity: 0;
    transition: opacity .3s;
    color: #fff;
    font-size: 1.5rem;
}

.plg-card:hover .plg-overlay {
    opacity: 1;
}

/* ---------------------------------------------------------
   PAGE LAYOUT TESTIMONIALS — Müşteri Yorumları
   --------------------------------------------------------- */
.plt-section {
    padding: 80px 0;
}

.plt-title {
    font-weight: 700;
}

.plt-h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 1rem;
}

.plt-content {
    color: #555;
    line-height: 1.8;
}

.plt-card {
    background: #fff;
    border: 1px solid #e7eaf3;
    border-radius: 16px;
    padding: 28px;
    height: 100%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .04);
    transition: transform .3s, box-shadow .3s;
}

.plt-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .08);
}

.plt-photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
}

.plt-quote {
    font-style: italic;
    color: #444;
    line-height: 1.7;
    margin-bottom: 16px;
    padding-left: 18px;
    border-left: 3px solid var(--bs-primary, #ff6b35);
}

.plt-name {
    font-weight: 700;
    color: #1a1a2e;
}


/* ---------------------------------------------------------
   PAGE LAYOUT REFERENCES — Referanslar
   --------------------------------------------------------- */
.plr-section {
    padding: 80px 0;
}

.plr-title {
    font-weight: 700;
}

.plr-h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 1rem;
}

.plr-content {
    color: #555;
    line-height: 1.8;
}

.plr-card {
    background: #fff;
    border: 1px solid #eef1f6;
    border-radius: 12px;
    padding: 14px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s, box-shadow .3s;
}

.plr-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
}

.plr-card img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(.3);
    transition: filter .3s;
}

.plr-card:hover img {
    filter: grayscale(0);
}


/* ---------------------------------------------------------
   PAGE LAYOUT COUNTERS — Sayaçlar
   --------------------------------------------------------- */
.plc-section {
    padding: 80px 0;
    background: #0f172a;
    color: #fff;
}

.plc-title {
    font-weight: 700;
    color: #fff;
}

.plc-h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 1rem;
}

.plc-content {
    color: rgba(255, 255, 255, .75);
    line-height: 1.8;
}

.plc-card {
    text-align: center;
    padding: 24px;
}

.plc-icon img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    margin-bottom: 16px;
}

.plc-value {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--bs-primary, #ff6b35);
    line-height: 1;
}

.plc-unit {
    font-size: .6em;
    margin-left: 4px;
    opacity: .85;
}

.plc-desc {
    margin-top: 12px;
    opacity: .85;
}


/* ---------------------------------------------------------
   PAGE LAYOUT FAQ — SSS
   --------------------------------------------------------- */
.plf-section {
    padding: 80px 0;
}

.plf-title {
    font-weight: 700;
}

.plf-h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 1rem;
}

.plf-content {
    color: #555;
    line-height: 1.8;
}

.plf-accordion .plf-item {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
    border: 1px solid #e7eaf3;
}

.plf-accordion .accordion-header {
    margin: 0;
}

.plf-question {
    font-weight: 600;
    font-size: 1.05rem;
    padding: 18px 20px;
    background: #fff;
}

.plf-question:not(.collapsed) {
    background: #f8fafc;
    color: var(--bs-primary, #ff6b35);
    box-shadow: none;
}

.plf-answer {
    padding: 4px 20px 20px;
    color: #555;
    line-height: 1.8;
}

/* ---------------------------------------------------------
   PAGE LAYOUT 9 — THE MINIMALIST WHITE GRID
   --------------------------------------------------------- */
.pl9-section {
    background: #ffffff;
    color: #1a1a1a;
    padding: 120px 0;
    --pl9-accent: #c5a059;
}

.pl9-header {
    text-align: center;
    margin-bottom: 80px;
}

.pl9-main-title {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
}

.pl9-main-content {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.pl9-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1px;
    background: #eee;
    border: 1px solid #eee;
}

.pl9-item {
    background: #fff;
    padding: 60px 40px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.pl9-item:hover {
    background: #fafafa;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.pl9-item-media {
    width: 100%;
    height: 240px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
}

.pl9-item-media img,
.pl9-item-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pl9-h3-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.pl9-h3-desc {
    font-size: 1rem;
    color: #777;
    line-height: 1.6;
}

/* ---------------------------------------------------------
   PAGE LAYOUT 10 — THE SOFT LAYERING
   --------------------------------------------------------- */
.pl10-section {
    background: #fdfdfd;
    color: #1a1a1a;
    padding: 120px 0;
    overflow: hidden;
}

.pl10-header {
    margin-bottom: 100px;
}

.pl10-main-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    color: #111;
}

.pl10-stack {
    display: flex;
    flex-direction: column;
}

.pl10-card {
    background: #fff;
    border-radius: 60px;
    padding: 80px;
    display: flex;
    align-items: center;
    gap: 80px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    margin-bottom: 80px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.pl10-card:nth-child(even) {
    flex-direction: row-reverse;
    background: #fafafa;
}

.pl10-card:hover {
    transform: translateY(-15px) scale(1.01);
    box-shadow: 0 50px 120px rgba(0, 0, 0, 0.06);
}

.pl10-img-wrap {
    flex: 1.2;
    border-radius: 40px;
    overflow: hidden;
    height: 500px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.1);
}

.pl10-media img,
.pl10-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pl10-h3-title {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.1;
}

.pl10-h3-desc {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* ---------------------------------------------------------
   PAGE LAYOUT 11 — THE EDITORIAL MAGAZINE
   --------------------------------------------------------- */
.pl11-section {
    background: #fcfbf7;
    color: #1a1a1a;
    padding: 150px 0;
}

.pl11-header {
    margin-bottom: 120px;
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 60px;
}

.pl11-main-title {
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    font-weight: 400;
    line-height: 0.9;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.pl11-desc {
    font-size: 1.5rem;
    line-height: 1.6;
    opacity: 0.7;
    max-width: 600px;
}

.pl11-editorial-row {
    display: flex;
    gap: 100px;
    align-items: flex-start;
}

.pl11-col-left {
    flex: 1.5;
}

.pl11-col-right {
    flex: 1;
    position: sticky;
    top: 120px;
}

.pl11-editorial-block {
    margin-bottom: 150px;
}

.pl11-h3-title {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 30px;
    position: relative;
}

.pl11-h3-title::first-letter {
    font-size: 1.5em;
    color: #c5a059;
    line-height: 0;
}

.pl11-media-box {
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-bottom: 40px;
}

.pl11-media img,
.pl11-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 2s ease;
}

.pl11-content {
    font-size: 1.15rem;
    line-height: 2;
    color: #333;
    max-width: 550px;
    padding-left: 60px;
    border-left: 1px solid #ddd;
}

/* ---------------------------------------------------------
   PAGE LAYOUT 12 — THE ZEN MASTER
   --------------------------------------------------------- */
.pl12-section {
    background: #ffffff;
    color: #2c3e50;
    padding: 120px 0;
    position: relative;
}

.pl12-header {
    text-align: center;
    margin-bottom: 151px;
}

.pl12-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a1a;
}

.pl12-main-content {
    font-size: 1.2rem;
    opacity: 0.6;
    max-width: 750px;
    margin: 20px auto 0;
}

.pl12-path-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.pl12-path-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(180deg, #8fa18f 0%, #eee 100%);
    transform: translateX(-50%);
    z-index: 1;
}

.pl12-step {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 120px;
    position: relative;
    z-index: 2;
}

.pl12-step:nth-child(even) {
    flex-direction: row-reverse;
}

.pl12-step-content {
    flex: 1;
    padding: 0 60px;
    text-align: right;
}

.pl12-step:nth-child(even) .pl12-step-content {
    text-align: left;
}

.pl12-step-media {
    flex: 1;
    height: 350px;
    background: #f8f9fa;
    border-radius: 100px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.02);
    border: 8px solid #fff;
    transition: all 0.5s ease;
}

.pl12-step:hover .pl12-step-media {
    transform: scale(1.05);
    border-color: #8fa18f;
}

.pl12-media img,
.pl12-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pl12-h3-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.pl12-h3-desc {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

/* =========================================================
   PAGE MAIN LAYOUTS (PML SERIES)
   ========================================================= */

/* ---------------------------------------------------------
   PAGE MAIN LAYOUT 2 — THE CINEMATIC HERO (DARK)
   --------------------------------------------------------- */
.pml2-hero { background: #000; color: #fff; height: 80vh; min-height: 700px; display: flex; align-items: center; position: relative; overflow: hidden; }
.pml2-bg { position: absolute; inset: 0; z-index: 1; opacity: 0.5; }
.pml2-bg img, .pml2-bg video { width: 100%; height: 100%; object-fit: cover; }
.pml2-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, #000 0%, transparent 50%, rgba(0,0,0,0.8) 100%); }
.pml2-content { position: relative; z-index: 5; text-align: center; max-width: 1000px; margin: 0 auto; width: 100%; padding: 0 40px; }
.pml2-title { font-size: clamp(3.5rem, 10vw, 7.5rem); font-weight: 900; letter-spacing: -0.05em; line-height: 0.9; margin-bottom: 30px; text-transform: uppercase; }
.pml2-desc { font-size: 1.4rem; opacity: 0.7; max-width: 700px; margin: 0 auto 40px; }
.pml2-breadcrumb { display: flex; justify-content: center; gap: 20px; font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.5; list-style: none; }

/* ---------------------------------------------------------
   PAGE MAIN LAYOUT 3 — THE INDUSTRIAL SPLIT (DARK)
   --------------------------------------------------------- */
.pml3-section { background: #0a0a0a; color: #fff; min-height: 100vh; display: flex; }
.pml3-left { flex: 1; padding: 15vh 10% 10vh; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid rgba(255,255,255,0.1); }
.pml3-right { flex: 1; position: relative; overflow: hidden; }
.pml3-media { position: absolute; inset: 0; }
.pml3-media img, .pml3-media video { width: 100%; height: 100%; object-fit: cover; }
.pml3-title { font-size: clamp(3rem, 6vw, 5rem); font-weight: 900; color: #c5a059; margin-bottom: 40px; }
.pml3-desc { font-size: 1.25rem; line-height: 1.8; opacity: 0.6; margin-bottom: 50px; padding-left: 30px; border-left: 2px solid #c5a059; }

/* ---------------------------------------------------------
   PAGE MAIN LAYOUT 4 — THE MODERN EDGE (LIGHT)
   --------------------------------------------------------- */
.pml4-section { background: #fff; color: #1a1a1a; padding: 150px 0 100px; position: relative; }
.pml4-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 100px; align-items: center; }
.pml4-title { font-size: clamp(3rem, 7vw, 6rem); font-weight: 900; letter-spacing: -0.04em; line-height: 1; margin-bottom: 30px; }
.pml4-content { font-size: 1.25rem; line-height: 1.9; color: #555; }
.pml4-media-wrap { position: relative; padding-right: 40px; padding-bottom: 40px; }
.pml4-media { border-radius: 40px; overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,0.1); transform: rotate(2deg); transition: transform 0.8s ease; }
.pml4-media:hover { transform: rotate(0deg) scale(1.05); }
.pml4-media img, .pml4-media video { width: 100%; height: 100%; display: block; }
.pml4-accent { position: absolute; bottom: 0; right: 0; width: 300px; height: 300px; background: #c5a059; z-index: -1; border-radius: 40px; opacity: 0.1; }

/* ---------------------------------------------------------
   PAGE MAIN LAYOUT 5 — THE ZEN MINIMALIST (LIGHT)
   --------------------------------------------------------- */
.pml5-section { background: #fdfdfd; color: #2c3e50; padding: 120px 0; }
.pml5-hero-box { position: relative; height: 600px; border-radius: 50px; overflow: hidden; margin-bottom: 80px; }
.pml5-media { width: 100%; height: 100%; }
.pml5-media img, .pml5-media video { width: 100%; height: 100%; object-fit: cover; }
.pml5-overlay { position: absolute; inset: 0; background: rgba(255,255,255,0.2); backdrop-filter: blur(5px); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 1s ease; }
.pml5-hero-box:hover .pml5-overlay { opacity: 1; }
.pml5-text-wrap { text-align: center; max-width: 900px; margin: 0 auto; }
.pml5-title { font-size: 4rem; font-weight: 300; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 40px; color: #1a1a1a; }
.pml5-content { font-size: 1.15rem; opacity: 0.6; line-height: 2; }

@media (max-width: 991px) {
    .pml3-section { flex-direction: column; }
    .pml3-right { height: 400px; }
    .pml4-grid { grid-template-columns: 1fr; }
    .pml4-media-wrap { order: -1; }
}