body {
    overflow-x: hidden;
}
/* ===== RESET / BASE ===== */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* ===== LAYOUT ===== */
.section {
    width: 100%;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== HERO ===== */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    color: #fff;
}

/* BACKGROUND */
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('/wp-content/themes/black-theme/assets/images/hero.png') center/cover no-repeat;
    filter: brightness(0.4) contrast(1.1);
    z-index: 1;
}

/* CONTENT */
.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* TEXT */
.hero-sub {
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 20px;
    opacity: 0.7;
}

.hero-title {
    font-size: 70px;
    letter-spacing: 12px;
    margin-bottom: 15px;
}

.hero-desc {
    font-size: 12px;
    letter-spacing: 2px;
    opacity: 0.6;
}

/* SCROLL ICON */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 40px;
    color: #fff;
    opacity: 0.7;
    animation: bounce 1.5s infinite;
    cursor: pointer;
}

/* ANIMATION */
@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 10px); }
}

.scroll-down {
    overflow: visible;
}
/* SCROLL ICON PARTİCLE */
.particle-down {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.7;

    animation: floatDown 0.8s ease-out forwards;
}

@keyframes floatDown {
    0% {
        transform: translate(0, 0);
        opacity: 0.8;
    }
    100% {
        transform: translate(0, -20px);
        opacity: 0;
    }
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;

    background: transparent;
    transition: all 0.3s ease;
}

/* SCROLL STATE */
.site-header.scrolled {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* HEADER INNER */
.header-inner {
    display: grid;
    grid-template-columns: 180px 1fr 180px;
    align-items: center;
    padding: 25px 40px;
}
.nav {
    justify-self: center;
    transform: translateX(-70px);
}

.nav ul {
    justify-content: center;
    margin: 0;
    padding: 0;
}

/* LOGO */
.logo a {
    color: #fff;
    font-weight: 600;
    letter-spacing: 3px;
    text-decoration: none;
}

/* MENU */
.nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav a {
    color: #aaa;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    transition: 0.3s;
}

.nav a:hover {
    color: #fff;
}

/* BUTTON */
.header-btn a {
    border: 1px solid #fff;
    padding: 10px 18px;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    transition: 0.3s;
}

.header-btn a:hover {
    background: #fff;
    color: #000;
}

/* ===== OTHER SECTIONS ===== */
.light-section {
    height: 100vh;
    background: #f5f5f5;
    color: #000;
}

.footer-section {
    background: #000;
    color: #fff;
    padding: 100px 0;
}
.site-header.scrolled {
    background: rgba(0,0,0,0.9) !important;
}
.menu-toggle {
    width: 24px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 2px;
    background: #fff;
    width: 100%;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* sağ grup */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.nav {
    margin-left: 160px;
}
/* ===== SIDE PANEL ===== */

.side-panel {
    position: fixed;
    top: 0;
    right: -400px; /* başlangıçta gizli */
    width: 400px;
    height: 100vh;
    background: #111;
    color: #fff;
    padding: 60px 30px;
    box-sizing: border-box;
    transition: 0.4s ease;
    z-index: 9999;
}

/* AÇILINCA */
.side-panel.active {
    right: 0;
}

/* KAPAT BUTONU */
.close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 22px;
    cursor: pointer;
}
.menu-toggle span {
    transition: 0.3s ease;
}

/* AKTİF HAL (X şekli) */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}
body {
    font-family: 'Inter', sans-serif;
}
/* PANEL İÇ TASARIM */

.panel-content {
    margin-top: 60px;
}

.panel-logo {
    font-size: 32px;
    letter-spacing: 6px;
    margin-bottom: 20px;
}

.panel-desc {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.7;
    margin-bottom: 40px;
}

.panel-contact p {
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.8;
}
/* ===== PANEL SOSYAL İKON (YENİ) ===== */

.panel-social {
    margin-top: 50px;
    display: flex;
    gap: 20px;
}

/* ikon kutusu */
.social-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    text-decoration: none;

    border-radius: 50%;
    transition: all 0.3s ease;
}

/* ikon */
.social-icon i {
    font-size: 18px; /* 🔥 büyüttük */
    transition: 0.3s;
}

/* 🔥 HOVER */
.social-icon:hover {
    background: #fff;
}

.social-icon:hover i {
    color: #000;
}
/* =========================
   MINIMAL PREMIUM TOUCH
========================= */

/* panel sol kenar ince çizgi */
.side-panel {
    border-left: 1px solid rgba(255,255,255,0.06);
}

.panel-logo {
    margin-bottom: 18px;
}

.panel-desc {
    padding-bottom: 20px;
    margin-bottom: 26px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* açıklama biraz net */
.panel-desc {
    opacity: 0.75;
}

/* iletişim üst boşluk */
.panel-contact {
    margin-top: 20px;
}

/* sosyal alan üst çizgi */
.panel-social {
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* ikonlara hafif çerçeve */
.social-icon {
    border: 1px solid rgba(255,255,255,0.08);
}
/* ===== HERO TITLE SLIDE FINAL STABLE ===== */

.hero-title {
    position: relative;
    display: grid;
    place-items: center;
    text-align: center;
    font-size: 64px;
    font-weight: 600;
    line-height: 1.1;
    margin: 0 0 20px;
    color: #fff;
    min-height: 90px;
    overflow: hidden;
    z-index: 2;
}

.hero-title .hero-text {
    grid-area: 1 / 1;
    display: block;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: transform 0.6s ease, opacity 0.6s ease, visibility 0.6s ease;
    will-change: transform, opacity;
}

/* görünen yazı */
.hero-title .hero-text.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* yukarı çıkan yazı */
.hero-title .hero-text.exit {
    opacity: 0;
    visibility: visible;
    transform: translateY(-100%);
}

/* alttan gelen yazı */
.hero-title .hero-text.enter {
    opacity: 1;
    visibility: visible;
    transform: translateY(100%);
}
/* ===== SECOND SECTION / TOP TEXT BLOCK FINAL ===== */

.second-section {
    display: flex;
    align-items: flex-start; /* ORTADAN YUKARI ALDIK */
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 160px 20px 60px; /* üst boşluk arttı */
    background: #f3f3f1;
}

.second-top {
    max-width: 980px;
    width: 100%;
    margin: 0 auto;
}

/* ÇİZGİYİ KALDIRDIK */
.second-line {
    display: none;
}

.second-sub {
    margin: 0 0 26px;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 8px;
    line-height: 1.6;
    color: #111;
    text-transform: uppercase;
}

.second-sub span {
    position: relative;
    display: inline-block;
    padding: 0 6px;
    letter-spacing: 6px;
}

.second-sub span::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 2px;
    width: 112%;
    height: 28px;
    border: 1px solid rgba(0, 0, 0, 0.35);
    border-radius: 50%;
    transform: translateX(-50%) rotate(-6deg);
    pointer-events: none;
}

.second-title {
    margin: 0;
    font-size: 72px;
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: 6px;
    color: #111;
    text-transform: uppercase;
}
/* ===== SECOND SECTION FINAL ===== */

.second-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    padding: 170px 20px 80px;
    text-align: center;
    background: #f3f3f1;
    overflow: hidden;
}

.second-top {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.second-line {
    display: none;
}

.second-sub {
    margin: 0 0 18px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 9px;
    text-transform: uppercase;
    color: #111;
}

.second-sub span {
    position: relative;
    display: inline-block;
    padding: 0 6px;
    letter-spacing: 7px;
}

.second-sub span::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 118%;
    height: 24px;
    border: 1px solid rgba(0, 0, 0, 0.35);
    border-radius: 50%;
    transform: translateX(-50%) rotate(-6deg);
    pointer-events: none;
}

.second-title {
    margin: 0;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    font-size: 66px;
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #111;
}

.second-gallery {
    width: 100%;
    max-width: 1250px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 42px;
    margin-top: 78px;
}

.second-gallery .img {
    position: relative;
    display: inline-block;
    overflow: visible;
    border-radius: 10px;
    flex-shrink: 0;
    z-index: 1;
}

.second-gallery .img::after {
    content: "";
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(0, 0, 0, 0.28);
    border-radius: 10px;
    z-index: 1;
    pointer-events: none;
}

.second-gallery .img img {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 10px;
    z-index: 2;
    filter: grayscale(100%) brightness(0.8) contrast(0.9);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.second-gallery .img:hover img {
    filter: grayscale(0%) brightness(1) contrast(1);
    transform: scale(1.03);
}

/* sol küçük */
.second-gallery .img-1 {
    width: 155px;
    height: 205px;
    opacity: 0.8;
    margin-bottom: 42px;
}

/* orta büyük */
.second-gallery .img-2 {
    width: 245px;
    height: 345px;
}

/* sağ yatay */
.second-gallery .img-3 {
    width: 230px;
    height: 150px;
    margin-bottom: 30px;
}

/* en sağ dik */
.second-gallery .img-4 {
    width: 175px;
    height: 220px;
    margin-bottom: 18px;
}
/* ===== THIRD SECTION DARK UX ===== */

.third-section {
    min-height: 100vh;
    background: #0c0c0c;
    padding: 140px 20px 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.third-section-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== HEADER ===== */

.third-heading {
    margin-bottom: 80px;
}

.third-sub {
    margin: 0 0 18px;
    font-size: 14px;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

.third-title {
    margin: 0;
    font-size: 64px;
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
}

/* ===== SERVICES ===== */

.third-services {
    display: flex;
    flex-direction: column;
}

/* satır */
.third-service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 34px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    transition: 0.35s ease;
}

/* son çizgi */
.third-service-item:last-child {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* numara */
.third-service-number {
    font-size: 18px;
    color: rgba(255,255,255,0.3);
    min-width: 60px;
}

/* içerik */
.third-service-content {
    flex: 1;
}

.third-service-content h3 {
    margin: 0 0 6px;
    font-size: 26px;
    font-weight: 500;
    color: #fff;
}

.third-service-content p {
    margin: 0;
    font-size: 15px;
    color: rgba(255,255,255,0.5);
}

/* ok */
.third-service-arrow {
    font-size: 20px;
    color: rgba(255,255,255,0.4);
    transition: 0.3s ease;
}

/* ===== HOVER EFFECT ===== */

.third-service-item:hover {
    transform: translateX(10px);
    border-color: rgba(255,255,255,0.25);
}

.third-service-item:hover .third-service-arrow {
    color: #fff;
    transform: translateX(6px);
}

.third-service-item:hover .third-service-number {
    color: #fff;
}
/* ===== CLEAN ARROW ===== */

.third-service-arrow {
    width: 18px;
    height: 18px;
    position: relative;
    flex-shrink: 0;
}

/* çizgi */
.third-service-arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: rgba(255,255,255,0.4);
    transform: translateY(-50%);
    transition: 0.3s ease;
}

/* ok ucu */
.third-service-arrow::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    border-top: 1.5px solid rgba(255,255,255,0.4);
    border-right: 1.5px solid rgba(255,255,255,0.4);
    transform: translateY(-50%) rotate(45deg);
    transition: 0.3s ease;
}

/* hover efekti */
.third-service-item:hover .third-service-arrow::before,
.third-service-item:hover .third-service-arrow::after {
    background: #fff;
    border-color: #fff;
}

.third-service-item:hover .third-service-arrow {
    transform: translateX(6px);
}
/* ===== FOURTH SECTION BASE ===== */

.fourth-section {
    position: relative;
    padding: 110px 20px 70px;
    background: url("../images/cta4sectiounbackground.png") center/cover no-repeat;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

/* ===== OVERLAY ===== */

.fourth-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

/* ===== CONTENT ===== */

.fourth-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
}

.fourth-sub {
    font-size: 13px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 18px;
}

.fourth-title {
    font-size: 52px;
    font-weight: 500;
    line-height: 1.1;
    margin: 0 0 18px;
    color: #fff;
}

.fourth-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 30px;
}

/* ===== BUTTON ===== */

.fourth-btn {
    display: inline-block;
    padding: 14px 28px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
    transition: 0.3s ease;
}

.fourth-btn:hover {
    background: #fff;
    color: #000;
}

/* ===== TRUST TEXT ===== */

.fourth-trusted {
    margin: 55px 0 22px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
}

/* ===== BRANDS ===== */

.fourth-brands {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== BRAND BOX ===== */

.fourth-brands img {
    display: block;
    width: 118px;
    height: 52px;
    object-fit: contain;
    background: #ffffff;
    padding: 12px 18px;
    border-radius: 10px;
    box-sizing: border-box;
    flex-shrink: 0;

    opacity: 0;
    transform: translateY(28px);
    transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.35s ease;
}

/* section görünce animasyon aktif */
.fourth-section.in-view .fourth-brands img {
    opacity: 1;
    transform: translateY(0);
}

/* sırayla gelsin */
.fourth-section.in-view .fourth-brands img:nth-child(1) { transition-delay: 0.08s; }
.fourth-section.in-view .fourth-brands img:nth-child(2) { transition-delay: 0.16s; }
.fourth-section.in-view .fourth-brands img:nth-child(3) { transition-delay: 0.24s; }
.fourth-section.in-view .fourth-brands img:nth-child(4) { transition-delay: 0.32s; }
.fourth-section.in-view .fourth-brands img:nth-child(5) { transition-delay: 0.40s; }
.fourth-section.in-view .fourth-brands img:nth-child(6) { transition-delay: 0.48s; }
.fourth-section.in-view .fourth-brands img:nth-child(7) { transition-delay: 0.56s; }
.fourth-section.in-view .fourth-brands img:nth-child(8) { transition-delay: 0.64s; }

/* hover geri geldi */
.fourth-brands img:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}
/* ===== FIFTH SECTION (PROJECT SHOWCASE) ===== */

.fifth-section {
    background: #ffffff;
    padding: 140px 20px 120px;
}

.fifth-section-inner {
    max-width: 1280px;
    margin: 0 auto;
}

/* ===== HEADER ===== */

.fifth-heading {
    text-align: center;
    margin-bottom: 80px;
}

.fifth-sub {
    font-size: 13px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgba(0,0,0,0.5);
    margin-bottom: 18px;
}

.fifth-title {
    font-size: 58px;
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: 2px;
    color: #111;
}

/* ===== PROJECT GRID ===== */

.fifth-projects {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* ===== PROJECT CARD ===== */

.fifth-project-item {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* ===== IMAGE ===== */

.fifth-project-image {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
}

.fifth-project-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

/* hover zoom */
.fifth-project-item:hover img {
    transform: scale(1.06);
}

/* ===== CONTENT ===== */

.fifth-project-content {
    margin-top: 18px;
}

.fifth-project-content h3 {
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 6px;
    color: #111;
}

.fifth-project-content p {
    font-size: 14px;
    color: rgba(0,0,0,0.55);
    margin: 0;
}

/* ===== HOVER EFFECT (LINE) ===== */

.fifth-project-content h3 {
    position: relative;
    display: inline-block;
}

.fifth-project-content h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 1px;
    background: #111;
    transition: 0.3s ease;
}

.fifth-project-item:hover h3::after {
    width: 100%;
}
/* ===== FIFTH SECTION STAGGER ANIMATION ===== */

.fifth-project-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fifth-section.in-view .fifth-project-item {
    opacity: 1;
    transform: translateY(0);
}

.fifth-section.in-view .fifth-project-item:nth-child(1) {
    transition-delay: 0.08s;
}

.fifth-section.in-view .fifth-project-item:nth-child(2) {
    transition-delay: 0.18s;
}

.fifth-section.in-view .fifth-project-item:nth-child(3) {
    transition-delay: 0.28s;
}
/* ===== FOOTER SECTION ===== */

.site-footer {
    background: #0c0c0c;
    color: #fff;
    padding: 90px 20px 40px;
}

/* ===== INNER ===== */

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
}

/* ===== BRAND ===== */

.footer-logo {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.footer-text {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
}

/* ===== HEADINGS ===== */

.footer-heading {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
    color: rgba(255,255,255,0.7);
}

/* ===== LINKS ===== */

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    position: relative;
    transition: 0.3s ease;
}

/* underline animasyonu */
.footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 1px;
    background: #fff;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-links a:hover::after {
    width: 100%;
}

/* ===== BOTTOM ===== */

.footer-bottom {
    margin-top: 28px;
    padding: 8px 0 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    line-height: 1;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin: 6px 0 0;
    line-height: 1.2;
}

/* ===== FOOTER SOCIAL FINAL ===== */

.footer-socials {
    display: flex;
    gap: 14px;
    margin-top: 15px;
}

/* ikon kutusu */
.footer-social {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,0.06);
    border-radius: 50%;

    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* ikon */
.footer-social svg {
    width: 20px;
    height: 20px;
    color: #fff;

    transition: all 0.3s ease;
}

/* ===== HOVER EFFECT ===== */

.footer-social:hover {
    background: #fff;
    transform: translateY(-4px) scale(1.05);

    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* ikon hoverda siyah */
.footer-social:hover svg {
    color: #000;
}

/* ===== SUBTLE GLOW (premium hissiyat) ===== */

.footer-social::after {
    content: "";
    position: absolute;
    inset: 0;

    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.25), transparent 70%);

    opacity: 0;
    transition: 0.4s ease;
}

.footer-social:hover::after {
    opacity: 1;
}

/* ===== MOBILE ===== */

@media (max-width: 768px) {
    .footer-socials {
        justify-content: center;
    }
}
/* ===== SCROLL TOP BUTTON ===== */
.scroll-top {
    position: fixed;
    right: 28px;
    bottom: 30px;
    z-index: 999;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;

    cursor: pointer;
    opacity: 0;
    pointer-events: none;

    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s ease;

    color: #000;
}

.scroll-top.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-top.in-footer {
    color: #fff;
}

/* ok üstte */
.scroll-top .arrow {
    width: 10px;
    height: 10px;
    border-left: 1.5px solid currentColor;
    border-top: 1.5px solid currentColor;
    transform: rotate(45deg);
    flex-shrink: 0;
}

/* yazı altta ve dikey */
.scroll-top span {
    font-size: 10px;
    letter-spacing: 2px;
    line-height: 1;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    white-space: nowrap;
}

.scroll-top:hover {
    transform: translateY(-4px);
}
.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: currentColor;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.8;

    animation: floatParticle 0.8s ease-out forwards;
}

@keyframes floatParticle {
    0% {
        transform: translate(0, 0);
        opacity: 0.9;
    }
    100% {
        transform: translate(0, -25px);
        opacity: 0;
    }
}

.scroll-top {
    overflow: visible;
}
/* ===== CUSTOM SCROLLBAR ===== */

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0b0b0b; /* arka zemin */
}

::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 10px;
    transition: 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #2a2a2a #0b0b0b;
}
/* =========================
   MOBİLDE HEADER GİZLEME
========================= */
@media (max-width: 768px) {
  .nav,
  .header-btn,
  .menu-toggle {
    display: none !important;
  }
}
/* =========================
   MOBILE MENU / PREMIUM SIDE PANEL
========================= */

.mobile-menu-toggle {
  display: none;
  width: 32px;
  height: 22px;
  position: relative;
  cursor: pointer;
  z-index: 10002;
}

.mobile-menu-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: transform 0.35s ease, opacity 0.25s ease, top 0.35s ease;
}

.mobile-menu-toggle span:nth-child(1) {
  top: 0;
}

.mobile-menu-toggle span:nth-child(2) {
  top: 10px;
}

.mobile-menu-toggle span:nth-child(3) {
  top: 20px;
}

/* hamburger -> x */
body.menu-open .mobile-menu-toggle span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}

body.menu-open .mobile-menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .mobile-menu-toggle span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
}

/* overlay */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background: #000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 10000;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* sağ panel */
.mobile-menu-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: min(86vw, 360px);
  height: 100vh;
  background: #050505;
  border-left: 1px solid rgba(255,255,255,0.08);
  box-shadow: -20px 0 50px rgba(0,0,0,0.45);
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}

.mobile-menu-overlay.active::before {
  transform: translateX(0);
}

/* içerik */
.mobile-menu-nav,
.mobile-menu-socials {
  position: relative;
  z-index: 2;
  width: min(86vw, 360px);
  margin-left: auto;
  box-sizing: border-box;
}

/* üst başlık */
.mobile-menu-nav {
  padding: 100px 24px 110px;
}

.mobile-menu-nav::before {
  content: "MENÜ";
  display: block;
  font-size: 11px;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.42);
  margin-bottom: 26px;
}

/* liste */
.mobile-menu-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu-nav ul li {
  margin: 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
  transform: translateX(26px);
  transition: opacity 0.35s ease, transform 0.45s ease;
}

.mobile-menu-nav ul li:first-child {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu-overlay.active .mobile-menu-nav ul li {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu-overlay.active .mobile-menu-nav ul li:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu-overlay.active .mobile-menu-nav ul li:nth-child(2) { transition-delay: 0.12s; }
.mobile-menu-overlay.active .mobile-menu-nav ul li:nth-child(3) { transition-delay: 0.16s; }
.mobile-menu-overlay.active .mobile-menu-nav ul li:nth-child(4) { transition-delay: 0.20s; }
.mobile-menu-overlay.active .mobile-menu-nav ul li:nth-child(5) { transition-delay: 0.24s; }
.mobile-menu-overlay.active .mobile-menu-nav ul li:nth-child(6) { transition-delay: 0.28s; }

.mobile-menu-nav ul li a {
  display: block;
  width: 100%;
  padding: 18px 0;
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 1.2px;
  box-sizing: border-box;
  transition: color 0.25s ease, padding-left 0.25s ease, opacity 0.25s ease;
}

.mobile-menu-nav ul li a:hover {
  color: #d8d8d8;
  padding-left: 8px;
}

.mobile-menu-nav ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu-nav ul li a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1.5px solid rgba(255,255,255,0.6);
  border-right: 1.5px solid rgba(255,255,255,0.6);
  transform: rotate(45deg);
  transition: transform 0.25s ease, opacity 0.25s ease;
  opacity: 0.7;
}

/* hover efekti */
.mobile-menu-nav ul li a:hover::after {
  transform: translateX(4px) rotate(45deg);
  opacity: 1;
}

/* sosyal medya */
.mobile-menu-socials {
  position: relative;
  right: auto;
  bottom: auto;
  width: 100%;
  padding: 0 24px;
  margin-top: 30px;

  display: flex;
  gap: 14px;
  justify-content: center;
}

/* ikonlar */
.mobile-menu-socials a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: rgba(255,255,255,0.85);
  font-size: 16px;
  text-decoration: none;

  transition: all 0.25s ease;
}

/* hover */
.mobile-menu-socials a:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.3);
  color: #fff;
  background: rgba(255,255,255,0.05);
}
.mobile-menu-socials a {
  opacity: 0;
  transform: translateX(30px);
}

/* açılınca */
.mobile-menu-overlay.active .mobile-menu-socials a {
  opacity: 1;
  transform: translateX(0);
}

/* gecikmeler */
.mobile-menu-overlay.active .mobile-menu-socials a:nth-child(1) {
  transition: all 0.4s ease 0.2s;
}
.mobile-menu-overlay.active .mobile-menu-socials a:nth-child(2) {
  transition: all 0.4s ease 0.3s;
}
.mobile-menu-overlay.active .mobile-menu-socials a:nth-child(3) {
  transition: all 0.4s ease 0.4s;
}

/* mobil görünüm */
@media (max-width: 768px) {
  .nav,
  .header-btn,
  .menu-toggle {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

/* küçük ekran */
@media (max-width: 480px) {
  .mobile-menu-overlay::before,
  .mobile-menu-nav,
  .mobile-menu-socials {
    width: min(88vw, 340px);
  }

  .mobile-menu-nav {
    padding: 92px 20px 105px;
  }

  .mobile-menu-socials {
    padding: 0 20px;
    bottom: 26px;
  }

  .mobile-menu-nav ul li a {
    font-size: 15px;
    padding: 16px 0;
    letter-spacing: 1px;
  }
}
/* =========================
   HERO MOBILE RESPONSIVE (FINAL)
========================= */
@media (max-width: 768px) {
  .hero-content {
    width: 100%;
    max-width: 100%;
    padding: 0 32px;
    box-sizing: border-box;
    text-align: center;
    overflow: hidden;
  }

  .hero-sub {
    font-size: 13px;
    line-height: 1.7;
    letter-spacing: 2px;
    margin-bottom: 18px;
  }

  .hero-title {
    font-size: 56px;
    line-height: 1.05;
    letter-spacing: 2px;
    margin-bottom: 22px;
  }

  .hero-title .hero-text {
    display: block;
    width: 100%;
    text-align: center;
  }

  .hero-desc {
    display: block;
    width: 100%;
    max-width: 340px;
    margin: 0 auto 24px;
    font-size: 12px;
    line-height: 1.7;
    letter-spacing: 1px;
    text-align: center;
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .scroll-down {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 0 28px;
  }

  .hero-sub {
    font-size: 11px;
    line-height: 1.7;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
  }

  .hero-title {
    font-size: 42px;
    line-height: 1.05;
    letter-spacing: 1px;
    margin-bottom: 16px;
  }

  .hero-desc {
    max-width: 280px;
    font-size: 11px;
    line-height: 1.6;
    letter-spacing: 0.5px;
    margin: 0 auto 22px;
  }

  .scroll-down {
    bottom: 90px;
    transform: translateX(-50%) scale(0.7);
  }
}
/* =========================
   SECOND SECTION MOBILE FINAL
========================= */
@media (max-width: 768px) {
  .second-section {
    min-height: auto;
    padding: 90px 20px 70px;
    overflow: hidden;
  }

  .second-top {
    max-width: 100%;
    margin: 0 auto 30px;
  }

  .second-sub {
    margin: 70px 0 14px;
    font-size: 10px;
    line-height: 1.7;
    letter-spacing: 4px;
  }

  .second-sub span {
    padding: 0 4px;
    letter-spacing: 3px;
  }

  .second-sub span::after {
    width: 112%;
    height: 18px;
    bottom: 1px;
  }

  .second-title {
    max-width: 100%;
    font-size: 38px;
    line-height: 1.02;
    letter-spacing: 1px;
  }

  .second-gallery {
    width: 100%;
    max-width: 360px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 14px;
    margin: 42px auto 0;
    flex-wrap: wrap;
  }

  .second-gallery .img {
    border-radius: 8px;
  }

  .second-gallery .img::after {
    top: -6px;
    right: -6px;
    border-width: 1.5px;
    border-radius: 8px;
  }

  .second-gallery .img img {
    border-radius: 8px;
  }

  /* kontrollü dağınık mobil */
  .second-gallery .img-1 {
    width: 108px;
    height: 145px;
    margin-bottom: 22px;
  }

  .second-gallery .img-2 {
    width: 158px;
    height: 220px;
    margin-bottom: 0;
  }

  .second-gallery .img-3 {
    width: 150px;
    height: 98px;
    margin-bottom: 18px;
    margin-top: -6px;
  }

  .second-gallery .img-4 {
    width: 118px;
    height: 152px;
    margin-bottom: 0;
  }
}

@media (max-width: 480px) {
  .second-section {
    padding: 72px 16px 60px;
  }

  .second-sub {
    font-size: 9px;
    letter-spacing: 3px;
    margin-bottom: 12px;
  }

  .second-sub span {
    letter-spacing: 2px;
  }

  .second-sub span::after {
    height: 16px;
  }

  .second-title {
    font-size: 30px;
    line-height: 1.03;
    letter-spacing: 0.5px;
  }

  .second-gallery {
    max-width: 320px;
    gap: 12px;
    margin-top: 34px;
  }

  .second-gallery .img-1 {
    width: 96px;
    height: 132px;
    margin-bottom: 18px;
  }

  .second-gallery .img-2 {
    width: 142px;
    height: 198px;
  }

  .second-gallery .img-3 {
    width: 136px;
    height: 90px;
    margin-bottom: 14px;
  }

  .second-gallery .img-4 {
    width: 108px;
    height: 140px;
  }
}
@media (max-width: 768px) {
  .second-gallery .img-2 img {
    transform: translateY(4px);
  }
}

@media (max-width: 480px) {
  .second-gallery .img-2 img {
    transform: translateY(4px);
  }
}
/* =========================
   FIFTH SECTION MOBILE FINAL
========================= */
@media (max-width: 768px) {
  .fifth-section {
    padding: 90px 16px 70px;
    overflow: hidden;
  }

  .fifth-section-inner {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .fifth-heading {
    margin-bottom: 40px;
    padding: 0 6px;
  }

  .fifth-sub {
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 12px;
    line-height: 1.6;
  }

  .fifth-title {
    font-size: 32px;
    line-height: 1.08;
    letter-spacing: 0.5px;
    margin: 0;
  }

  .fifth-projects {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    width: 100%;
  }

  .fifth-project-item {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .fifth-project-image {
    width: 100%;
    border-radius: 12px;
  }

  .fifth-project-image img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
  }

  .fifth-project-content {
    width: 100%;
    min-width: 0;
    margin-top: 12px;
  }

  .fifth-project-content h3 {
    display: block;
    width: 100%;
    font-size: 20px;
    line-height: 1.25;
    margin: 0 0 6px;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .fifth-project-content p {
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
    word-break: break-word;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .fifth-section {
    padding: 72px 14px 56px;
  }

  .fifth-heading {
    margin-bottom: 32px;
    padding: 0 4px;
  }

  .fifth-sub {
    font-size: 10px;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
  }

  .fifth-title {
    font-size: 26px;
    line-height: 1.08;
  }

  .fifth-projects {
    gap: 18px;
  }

  .fifth-project-image img {
    height: 220px;
  }

  .fifth-project-content h3 {
    font-size: 18px;
  }

  .fifth-project-content p {
    font-size: 12px;
  }
}
/* =========================
   FIFTH SECTION MOBILE FIX
========================= */
@media (max-width: 768px) {
  .fifth-section {
    padding: 90px 14px 70px;
    overflow: hidden;
  }

  .fifth-section-inner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden;
  }

  .fifth-heading {
    margin-bottom: 36px;
    padding: 0 6px;
    box-sizing: border-box;
  }

  .fifth-sub {
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 12px;
    line-height: 1.5;
  }

  .fifth-title {
    font-size: 32px;
    line-height: 1.08;
    letter-spacing: 0.5px;
    margin: 0;
    word-break: break-word;
  }

  .fifth-projects {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .fifth-project-item {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .fifth-project-image {
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow: hidden;
    border-radius: 12px;
    box-sizing: border-box;
  }

  .fifth-project-image img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 220px;
    object-fit: cover;
    margin: 0;
    border-radius: 12px;
  }

  .fifth-project-content {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-top: 12px;
    box-sizing: border-box;
  }

  .fifth-project-content h3 {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 0 6px;
    font-size: 20px;
    line-height: 1.2;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .fifth-project-content p {
    width: 100%;
    max-width: 100%;
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    word-break: break-word;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .fifth-section {
    padding: 72px 12px 56px;
  }

  .fifth-heading {
    margin-bottom: 30px;
    padding: 0 4px;
  }

  .fifth-sub {
    font-size: 10px;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
  }

  .fifth-title {
    font-size: 26px;
  }

  .fifth-projects {
    gap: 18px;
  }

  .fifth-project-image {
    border-radius: 10px;
  }

  .fifth-project-image img {
    height: 200px;
    border-radius: 10px;
  }

  .fifth-project-content h3 {
    font-size: 18px;
  }

  .fifth-project-content p {
    font-size: 12px;
  }
}
* {
  box-sizing: border-box;
}
/* =========================
   FOURTH SECTION MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {
  .fourth-section {
    padding: 90px 16px 60px;
    background-position: center center;
    overflow: hidden;
  }

  .fourth-content {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 8px;
    box-sizing: border-box;
  }

  .fourth-sub {
    font-size: 10px;
    line-height: 1.6;
    letter-spacing: 4px;
    margin: 0 0 14px;
  }

  .fourth-title {
    font-size: 32px;
    line-height: 1.08;
    letter-spacing: 1px;
    margin: 0 0 16px;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .fourth-title br {
    display: block;
  }

  .fourth-desc {
    max-width: 520px;
    margin: 0 auto 24px;
    font-size: 14px;
    line-height: 1.6;
    overflow-wrap: break-word;
  }

  .fourth-btn {
    display: inline-block;
    width: 100%;
    max-width: 280px;
    padding: 14px 18px;
    font-size: 12px;
    letter-spacing: 1.5px;
    box-sizing: border-box;
  }

  .fourth-trusted {
    margin: 34px 0 18px;
    font-size: 12px;
    line-height: 1.5;
  }

  .fourth-brands {
    gap: 12px;
    margin-top: 20px;
    max-width: 100%;
  }

  .fourth-brands img {
    width: 108px;
    height: 50px;
    padding: 10px 12px;
    border-radius: 10px;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .fourth-section {
    padding: 76px 12px 52px;
  }

  .fourth-content {
    padding: 0 4px;
  }

  .fourth-sub {
    font-size: 9px;
    letter-spacing: 3px;
    margin: 0 0 12px;
  }

  .fourth-title {
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: 0.5px;
    margin: 0 0 14px;
  }

  .fourth-desc {
    max-width: 300px;
    font-size: 13px;
    line-height: 1.6;
    margin: 0 auto 20px;
  }

  .fourth-btn {
    max-width: 250px;
    font-size: 11px;
    padding: 13px 16px;
  }

  .fourth-trusted {
    font-size: 11px;
    margin: 28px 0 14px;
  }

  .fourth-brands {
    gap: 10px;
  }

  .fourth-brands img {
    width: 96px;
    height: 44px;
    padding: 8px 10px;
    border-radius: 8px;
  }
}
/* =========================
   THIRD SECTION MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {
  .third-section {
    min-height: auto;
    padding: 90px 16px 70px;
    align-items: flex-start;
  }

  .third-section-inner {
    width: 100%;
    max-width: 100%;
  }

  .third-heading {
    margin-bottom: 42px;
    text-align: center;
  }

  .third-sub {
    margin: 0 0 14px;
    font-size: 10px;
    line-height: 1.6;
    letter-spacing: 4px;
  }

  .third-title {
    margin: 0;
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: 1px;
    text-align: center;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .third-title br {
    display: block;
  }

  .third-services {
    width: 100%;
  }

  .third-service-item {
    display: grid;
    grid-template-columns: 44px 1fr 20px;
    align-items: center;
    gap: 12px;
    padding: 24px 0;
  }

  .third-service-number {
    min-width: auto;
    font-size: 14px;
  }

  .third-service-content h3 {
    font-size: 18px;
    line-height: 1.25;
    margin: 0 0 6px;
  }

  .third-service-content p {
    font-size: 13px;
    line-height: 1.6;
  }

  .third-service-arrow {
    width: 16px;
    height: 16px;
  }

  .third-service-item:hover,
  .third-service-item:hover .third-service-arrow {
    transform: none;
  }
}

@media (max-width: 480px) {
  .third-section {
    padding: 76px 12px 56px;
  }

  .third-heading {
    margin-bottom: 34px;
  }

  .third-sub {
    font-size: 9px;
    letter-spacing: 3px;
    margin: 0 0 12px;
  }

  .third-title {
    font-size: 26px;
    line-height: 1.1;
    letter-spacing: 0.5px;
  }

  .third-service-item {
    grid-template-columns: 34px 1fr 16px;
    gap: 10px;
    padding: 20px 0;
  }

  .third-service-number {
    font-size: 12px;
  }

  .third-service-content h3 {
    font-size: 16px;
  }

  .third-service-content p {
    font-size: 12px;
    line-height: 1.55;
  }

  .third-service-arrow {
    width: 14px;
    height: 14px;
  }
}
/* =========================
   FOOTER MOBILE PREMIUM
========================= */
@media (max-width: 768px) {
  .site-footer {
    padding: 72px 20px 34px;
    overflow: hidden;
  }

  .footer-inner {
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  /* ilk alan */
  .footer-brand {
    max-width: 340px;
    margin: 0 auto;
  }

  .footer-logo {
    font-size: 28px;
    letter-spacing: 3px;
    margin-bottom: 14px;
  }

  .footer-text {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.62);
    max-width: 280px;
    margin: 0 auto;
  }

  /* diğer kolonlar kart gibi */
  .footer-col {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    padding: 20px 18px;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 18px;
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .footer-heading {
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.78);
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .footer-links li {
    margin-bottom: 0;
  }

  .footer-links a {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255,255,255,0.72);
  }

  .footer-links a::after {
    left: 50%;
    transform: translateX(-50%);
    bottom: -4px;
  }

  /* sosyal medya alanı */
  .footer-socials {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
  }

  .footer-social {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.06);
  }

  .footer-social svg {
    width: 18px;
    height: 18px;
  }

  .footer-bottom {
    margin-top: 34px;
    padding-top: 18px;
    text-align: center;
  }

  .footer-bottom p {
    font-size: 12px;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 60px 14px 28px;
  }

  .footer-inner {
    gap: 14px;
  }

  .footer-brand,
  .footer-col {
    max-width: 100%;
  }

  .footer-logo {
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }

  .footer-text {
    font-size: 13px;
    line-height: 1.75;
    max-width: 240px;
  }

  .footer-col {
    padding: 18px 14px;
    border-radius: 12px;
  }

  .footer-heading {
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 14px;
  }

  .footer-links {
    gap: 10px;
  }

  .footer-links a {
    font-size: 15px;
  }

  .footer-social {
    width: 40px;
    height: 40px;
  }

  .footer-social svg {
    width: 17px;
    height: 17px;
  }

  .footer-bottom {
    margin-top: 28px;
    padding-top: 16px;
  }

  .footer-bottom p {
    font-size: 11px;
  }
}
@media (max-width: 768px) {
  .footer-col {
    box-shadow: 0 0 0 1px rgba(255,255,255,0.04),
                0 10px 30px rgba(0,0,0,0.4);
  }

  .footer-brand {
    box-shadow: 0 0 0 1px rgba(255,255,255,0.04),
                0 10px 30px rgba(0,0,0,0.4);
    padding: 24px 20px;
    border-radius: 20px;
    background: rgba(255,255,255,0.02);
  }
}
.footer-links a:hover {
  transform: translateX(3px);
}
@media (max-width: 768px) {
  .footer-col,
  .footer-brand {
    background: linear-gradient(
      145deg,
      rgba(255,255,255,0.03),
      rgba(255,255,255,0.01)
    );
  }
}
.footer-col::after,
.footer-brand::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  pointer-events: none;

}
/* =========================
   HEADER LOGO + PANEL LOGO
========================= */

/* Sol üst header logo */
.logo a {
  display: flex;
  align-items: center;
}

.logo img {
  display: block;
  height: 66px;
  width: auto;
}

/* Sağ panel logo */
.panel-logo {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
}

.panel-logo img {
  display: block;
  height: 50px;
  width: auto;
}

/* =========================
   LOGO FINAL (BÜYÜTÜLMÜŞ)
========================= */

/* Masaüstü */
.logo img {
  display: block;
  height: 60px;
  width: auto;
}

/* Tablet */
@media (max-width: 768px) {
  .logo img {
    height: 42px;
  }
}

/* Mobil */
@media (max-width: 480px) {
  .logo img {
    height: 54px;
  }
}

/* ===== GLOBAL RESET / FIX ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
/* =========================
   HAKKIMDA PAGE - MINIMAL
========================= */
.about-page {
    background: #050505;
    color: #fff;
    padding-top: 110px;
}

.about-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
    box-sizing: border-box;
}

.about-hero-minimal {
    padding: 70px 0 50px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.about-mini-badge {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 11px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.58);
}

.about-hero-minimal h1 {
    margin: 0 0 14px;
    font-size: 46px;
    line-height: 1.08;
    font-weight: 600;
    letter-spacing: -1px;
    color: #fff;
}

.about-hero-minimal p {
    max-width: 680px;
    margin: 0;
    font-size: 16px;
    line-height: 1.85;
    color: rgba(255,255,255,0.68);
}

.about-main-section {
    padding: 70px 0 60px;
}

.about-box {
    display: grid;
    grid-template-columns: 1.2fr 0.85fr;
    gap: 42px;
    align-items: center;
    padding: 36px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 26px;
    background: rgba(255,255,255,0.015);
}

.about-section-label {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.56);
}

.about-text h2 {
    margin: 0 0 22px;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.7px;
    color: #fff;
}

.about-text p {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.95;
    color: rgba(255,255,255,0.72);
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-image-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-frame {
    width: 100%;
    max-width: 390px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 24px;
    background: rgba(255,255,255,0.02);
}

.about-image-frame img {
    display: block;
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
}

.about-cta-minimal {
    padding: 0 0 40px;
}

.about-cta-box {
    display: grid;
    grid-template-columns: 1.3fr auto;
    gap: 28px;
    align-items: center;
    padding: 34px 36px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    background: rgba(255,255,255,0.015);
}

.about-cta-content h3 {
    margin: 0 0 14px;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.6px;
    color: #fff;
}

.about-cta-content p {
    margin: 0;
    max-width: 760px;
    font-size: 15px;
    line-height: 1.85;
    color: rgba(255,255,255,0.68);
}

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    height: 56px;
    padding: 0 26px;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-size: 13px;
    transition: all 0.3s ease;
}

.about-cta-btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

@media (max-width: 1024px) {
    .about-box,
    .about-cta-box {
        grid-template-columns: 1fr;
    }

    .about-image-frame {
        max-width: 420px;
    }
}

@media (max-width: 767px) {
    .about-page {
        padding-top: 95px;
    }

    .about-container {
        padding: 0 20px;
    }

    .about-hero-minimal {
        padding: 50px 0 36px;
    }

    .about-hero-minimal h1 {
        font-size: 34px;
    }

    .about-hero-minimal p {
        font-size: 15px;
        line-height: 1.8;
    }

    .about-main-section {
        padding: 42px 0 42px;
    }

    .about-box {
        gap: 26px;
        padding: 22px;
        border-radius: 20px;
    }

    .about-text h2 {
        font-size: 26px;
    }

    .about-text p {
        font-size: 14px;
        line-height: 1.85;
    }

    .about-image-frame {
        padding: 10px;
        border-radius: 18px;
    }

    .about-image-frame img {
        height: 360px;
        border-radius: 12px;
    }

    .about-cta-box {
        padding: 24px 22px;
        border-radius: 20px;
    }

    .about-cta-content h3 {
        font-size: 24px;
    }

    .about-cta-content p {
        font-size: 14px;
        line-height: 1.8;
    }

    .about-cta-btn {
        width: 100%;
    }
}
/* =========================
   KARİYER YOLCULUĞU
========================= */

.career-section {
    position: relative;
    padding: 110px 0 120px;
    background: #f3f3f3;
    overflow: hidden;
}

.career-heading {
    max-width: 760px;
    margin: 0 auto 80px;
    text-align: center;
}

.career-mini-title {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 12px;
    letter-spacing: 2.6px;
    text-transform: uppercase;
    color: rgba(0,0,0,0.48);
}

.career-title {
    margin: 0 0 18px;
    font-size: 54px;
    line-height: 1.08;
    font-weight: 600;
    letter-spacing: -1.2px;
    color: #111;
}

.career-desc {
    margin: 0 auto;
    max-width: 700px;
    font-size: 17px;
    line-height: 1.9;
    color: rgba(0,0,0,0.62);
}

.career-timeline {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    padding: 20px 0;
}

/* ortadaki sabit ince çizgi */
.career-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.08);
}

/* scroll ile dolan çizgi */
.career-line::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: var(--line-progress, 0%);
    background: rgba(0,0,0,0.35);
    transition: height 0.15s linear;
}

.career-item {
    position: relative;
    width: 50%;
    margin-bottom: 70px;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.career-item.show {
    opacity: 1;
    transform: translateY(0);
}

.career-item.left {
    left: 0;
    padding-right: 72px;
}

.career-item.right {
    left: 50%;
    padding-left: 72px;
}

/* hafif ritim bozukluğu = daha premium */
.career-item.left:nth-child(odd) {
    margin-top: 10px;
}

.career-item.right:nth-child(even) {
    margin-top: 55px;
}

.career-dot {
    position: absolute;
    top: 34px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #111;
    box-shadow: 0 0 0 8px rgba(0,0,0,0.06);
    z-index: 3;
}

.career-item.left .career-dot {
    right: -7px;
}

.career-item.right .career-dot {
    left: -7px;
}

.career-card {
    position: relative;
    padding: 30px 30px 28px;
    background: rgba(255,255,255,0.62);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 18px 50px rgba(0,0,0,0.04);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.career-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.07);
    border-color: rgba(0,0,0,0.14);
}

.career-year {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(0,0,0,0.48);
}

.career-card h3 {
    margin: 0 0 8px;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 600;
    color: #111;
    letter-spacing: -0.6px;
}

.career-card h4 {
    margin: 0 0 14px;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 500;
    color: rgba(0,0,0,0.72);
}

.career-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-bottom: 18px;
}

.career-meta span {
    position: relative;
    font-size: 13px;
    color: rgba(0,0,0,0.48);
}

.career-meta span:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(0,0,0,0.18);
    transform: translateY(-50%);
}

.career-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.9;
    color: rgba(0,0,0,0.68);
}

.career-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.career-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.06);
    font-size: 12px;
    letter-spacing: 0.4px;
    color: rgba(0,0,0,0.72);
    white-space: nowrap;
}

/* tablet */
@media (max-width: 1024px) {
    .career-title {
        font-size: 44px;
    }

    .career-item.left,
    .career-item.right {
        width: 100%;
        left: 0;
        padding-left: 72px;
        padding-right: 0;
        margin-top: 0 !important;
    }

    .career-line {
        left: 24px;
        transform: none;
    }

    .career-dot,
    .career-item.left .career-dot,
    .career-item.right .career-dot {
        left: 17px;
        right: auto;
    }
}

/* mobil */
@media (max-width: 767px) {
    .career-section {
        padding: 80px 0 85px;
    }

    .career-heading {
        margin-bottom: 56px;
        padding: 0 10px;
    }

    .career-title {
        font-size: 34px;
        letter-spacing: -0.8px;
    }

    .career-desc {
        font-size: 15px;
        line-height: 1.8;
    }

    .career-timeline {
        padding: 8px 0;
    }

    .career-item {
        margin-bottom: 42px;
    }

    .career-item.left,
    .career-item.right {
        padding-left: 44px;
    }

    .career-line {
        left: 12px;
    }

    .career-dot,
    .career-item.left .career-dot,
    .career-item.right .career-dot {
        left: 5px;
        width: 12px;
        height: 12px;
        box-shadow: 0 0 0 6px rgba(0,0,0,0.06);
    }

    .career-card {
        padding: 22px 20px 20px;
        border-radius: 18px;
    }

    .career-card h3 {
        font-size: 24px;
    }

    .career-card h4 {
        font-size: 16px;
    }

    .career-card p {
        font-size: 14px;
        line-height: 1.8;
    }

    .career-meta {
        gap: 8px 14px;
    }

    .career-meta span {
        font-size: 12px;
    }

    .career-tags {
        gap: 8px;
        margin-top: 18px;
    }

    .career-tags span {
        min-height: 30px;
        padding: 0 12px;
        font-size: 11px;
    }
}
/* =========================
   EĞİTİM
========================= */

.education-section {
    position: relative;
    padding: 30px 0 110px;
    background: #f3f3f3;
    overflow: hidden;
}

.education-heading {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.education-mini-title {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 12px;
    letter-spacing: 2.6px;
    text-transform: uppercase;
    color: rgba(0,0,0,0.48);
}

.education-title {
    margin: 0 0 18px;
    font-size: 46px;
    line-height: 1.08;
    font-weight: 600;
    letter-spacing: -1px;
    color: #111;
}

.education-desc {
    margin: 0 auto;
    max-width: 700px;
    font-size: 17px;
    line-height: 1.9;
    color: rgba(0,0,0,0.62);
}

.education-wrap {
    max-width: 820px;
    margin: 0 auto;
}

.education-card {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;

    padding: 34px 34px 30px;
    background: rgba(255,255,255,0.62);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 18px 50px rgba(0,0,0,0.04);
}

.education-card.show {
    opacity: 1;
    transform: translateY(0);
}

.education-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.07);
    border-color: rgba(0,0,0,0.14);
}

.education-year {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(0,0,0,0.48);
}

.education-card h3 {
    margin: 0 0 10px;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 600;
    color: #111;
    letter-spacing: -0.6px;
}

.education-card h4 {
    margin: 0 0 14px;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 500;
    color: rgba(0,0,0,0.72);
}

.education-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-bottom: 18px;
}

.education-meta span {
    position: relative;
    font-size: 13px;
    color: rgba(0,0,0,0.48);
}

.education-meta span:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(0,0,0,0.18);
    transform: translateY(-50%);
}

.education-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.9;
    color: rgba(0,0,0,0.68);
}

.education-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.education-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.06);
    font-size: 12px;
    letter-spacing: 0.4px;
    color: rgba(0,0,0,0.72);
    white-space: nowrap;
}

@media (max-width: 767px) {
    .education-section {
        padding: 10px 0 80px;
    }

    .education-heading {
        margin-bottom: 42px;
        padding: 0 10px;
    }

    .education-title {
        font-size: 34px;
        letter-spacing: -0.8px;
    }

    .education-desc {
        font-size: 15px;
        line-height: 1.8;
    }

    .education-card {
        padding: 22px 20px 20px;
        border-radius: 18px;
    }

    .education-card h3 {
        font-size: 24px;
    }

    .education-card h4 {
        font-size: 16px;
    }

    .education-card p {
        font-size: 14px;
        line-height: 1.8;
    }

    .education-meta {
        gap: 8px 14px;
    }

    .education-meta span {
        font-size: 12px;
    }

    .education-tags {
        gap: 8px;
        margin-top: 18px;
    }

    .education-tags span {
        min-height: 30px;
        padding: 0 12px;
        font-size: 11px;
    }
}
/* =========================================================
   İLETİŞİM SAYFASI / FULL CSS
========================================================= */

.contact-page {
    position: relative;
    background: #050505;
    color: #fff;
}

/* container */
.contact-page .container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
}

/* =========================================================
   HERO
========================================================= */

/* ===== CONTACT HERO ===== */
.contact-hero {
    position: relative;
    overflow: hidden;
    padding: 150px 0 90px;
    z-index: 2;
}

.contact-hero .container {
    position: relative;
    z-index: 3;
}


.contact-hero-badge {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.46);
    position: relative;
    z-index: 3;
}

.contact-title {
    position: relative;
    z-index: 3;
    max-width: 980px;
    margin: 0;
    font-size: clamp(52px, 9vw, 118px);
    line-height: 0.94;
    font-weight: 600;
    letter-spacing: -0.05em;
    color: #fff;
}

.contact-subtitle {
    position: relative;
    z-index: 3;
    max-width: 560px;
    margin: 26px 0 0;
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255,255,255,0.70);
}
/* =========================================================
   HERO LINES
========================================================= */

/* ===== CONTACT LINES (FULL SCREEN DIAGONAL) ===== */

.contact-lines {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.contact-line {
    position: absolute;
    display: block;
    width: 1px;
    height: 320vh;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(255,255,255,0.10) 18%,
        rgba(255,255,255,0.55) 50%,
        rgba(255,255,255,0.10) 82%,
        transparent 100%
    );
    transform-origin: top center;
    filter: drop-shadow(0 0 4px rgba(255,255,255,0.08));
     will-change: transform, opacity;
}


/* ===== LINE POSITIONS ===== */

.contact-line.line-1 {
    top: -64vh;
    right: 13%;
    transform: rotate(30deg);
    opacity: 0.40;
}

.contact-line.line-2 {
    top: -64vh;
    right: 13.8%;
    transform: rotate(22deg);
    opacity: 0.78;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0,255,120,0.12) 20%,
        rgba(0,255,120,0.78) 50%,
        rgba(0,255,120,0.12) 80%,
        transparent 100%
    );
    filter: drop-shadow(0 0 6px rgba(0,255,120,0.22));
}

.contact-line.line-3 {
    top: -64vh;
    right: 14.6%;
    transform: rotate(14deg);
    opacity: 0.22;
}

/* =========================================================
   CONTENT
========================================================= */

.contact-content {
    position: relative;
    padding: 50px 0 120px;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1.05fr);
    gap: 90px;
    align-items: start;
}

/* =========================================================
   SOL ALAN
========================================================= */

.contact-copy {
    padding-top: 18px;
}

.contact-copy-mini {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.42);
}

.contact-copy-title {
    margin: 0 0 22px;
    max-width: 560px;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: #fff;
}

.contact-copy-text {
    max-width: 520px;
    margin: 0;
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255,255,255,0.68);
}

.contact-direct {
    margin-top: 38px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-direct a {
    display: inline-block;
    width: fit-content;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.5;
    position: relative;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.contact-direct a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.22);
    transition: background 0.3s ease, transform 0.3s ease;
}

.contact-direct a:hover {
    opacity: 0.75;
    transform: translateX(4px);
}

.contact-direct a:hover::after {
    background: rgba(255,255,255,0.8);
}

/* =========================================================
   FORM ALANI
========================================================= */

.contact-form-area {
    position: relative;
    padding: 36px 0 0;
}

.contact-chat-head {
    margin-bottom: 34px;
}

.contact-chat-label {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 12px;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.42);
}

.contact-chat-head p {
    margin: 0;
    max-width: 480px;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.65);
}

/* =========================================================
   CONTACT FORM 7 RESET + CUSTOM
========================================================= */

.contact-form-wrap,
.contact-form-wrap .wpcf7 {
    width: 100%;
}

.contact-form-wrap .wpcf7 form {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin: 0;
}

.contact-form-wrap .wpcf7-form-control-wrap {
    display: block;
    margin-top: 10px;
}

.contact-form-wrap label {
    display: block;
    margin: 0;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.02em;
}

/* input / textarea */
.contact-form-wrap input[type="text"],
.contact-form-wrap input[type="email"],
.contact-form-wrap textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.18);
    background: transparent;
    padding: 0 0 14px;
    border-radius: 0;
    outline: none;
    box-shadow: none;
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
    transition: border-color 0.3s ease, opacity 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
}

.contact-form-wrap textarea {
    min-height: 140px;
    resize: vertical;
    padding-top: 4px;
}

.contact-form-wrap input[type="text"]::placeholder,
.contact-form-wrap input[type="email"]::placeholder,
.contact-form-wrap textarea::placeholder {
    color: rgba(255,255,255,0.32);
}

.contact-form-wrap input[type="text"]:focus,
.contact-form-wrap input[type="email"]:focus,
.contact-form-wrap textarea:focus {
    border-bottom-color: rgba(255,255,255,0.95);
}

/* submit */
.contact-form-wrap .wpcf7-submit {
    border: none;
    background: transparent;
    color: #fff;
    padding: 0;
    margin-top: 8px;
    width: auto;
    min-width: auto;
    font-size: 19px;
    font-weight: 500;
    letter-spacing: -0.02em;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.contact-form-wrap .wpcf7-submit:hover {
    opacity: 0.72;
    transform: translateX(8px);
}

/* spinner */
.contact-form-wrap .wpcf7-spinner {
    margin: 0 0 0 12px;
    vertical-align: middle;
}

/* validation */
.contact-form-wrap .wpcf7-not-valid-tip {
    margin-top: 10px;
    font-size: 13px;
    color: #ff7a7a;
}

.contact-form-wrap .wpcf7-not-valid {
    border-bottom-color: #ff7a7a !important;
}

/* response */
.contact-form-wrap .wpcf7-response-output {
    margin: 8px 0 0 !important;
    padding: 0 !important;
    border: none !important;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.62);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {
    .contact-layout {
        gap: 56px;
    }

    .contact-copy-title {
        max-width: 100%;
    }
}

@media (max-width: 991px) {
    .contact-hero {
        padding: 130px 0 70px;
    }

    .contact-content {
        padding: 30px 0 100px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .contact-form-area {
        padding-top: 0;
    }

    .contact-line.line-1 {
        right: 10%;
        transform: rotate(20deg);
    }

    .contact-line.line-2 {
        right: 18%;
        transform: rotate(9deg);
    }

    .contact-line.line-3 {
        right: -1%;
        transform: rotate(30deg);
    }
}

@media (max-width: 767px) {
    .contact-page .container {
        padding: 0 20px;
    }

    .contact-hero {
        padding: 110px 0 56px;
    }

    .contact-subtitle {
        margin-top: 18px;
        font-size: 15px;
        line-height: 1.75;
    }

    .contact-copy-title {
        font-size: 28px;
    }

    .contact-copy-text,
    .contact-chat-head p {
        font-size: 15px;
    }

    .contact-form-wrap label {
        font-size: 18px;
    }

    .contact-form-wrap input[type="text"],
    .contact-form-wrap input[type="email"],
    .contact-form-wrap textarea {
        font-size: 16px;
    }

    .contact-form-wrap .wpcf7-submit {
        font-size: 17px;
    }
}

@media (max-width: 575px) {
    .contact-line {
        opacity: 0.35;
    }

    .contact-line.line-3 {
        display: none;
    }
}
/* ===== CONTACT LINE DRAW ANIMATION ===== */
.contact-line.is-animating {
    opacity: 0;
}

.contact-line.line-ready {
    opacity: 1;
}
/* ===== MOBILE: CONTACT LINES OFF ===== */
@media (max-width: 768px) {
    .contact-lines {
        display: none !important;
    }
}
/* ===== HERO MOUSE DEPTH EFFECT ===== */
.hero-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    will-change: transform;
    transform: translate3d(0, 0, 0) scale(1.08);
    transition: transform 0.18s ease-out;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        radial-gradient(circle at 50% 45%, rgba(255,255,255,0.04), transparent 42%),
        linear-gradient(to bottom, rgba(0,0,0,0.16), rgba(0,0,0,0.38));
}

/* mobilde kapat */
@media (max-width: 991px) {
    .hero-bg {
        transform: translate3d(0, 0, 0) scale(1.02) !important;
        transition: none;
    }
}
/* ===== CURSOR ===== */
.cursor {
    margin-left: 4px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%,100% { opacity: 1; }
    50% { opacity: 0; }
}
/* =========================================================
   FOTO MODU PAGE / GENEL ALAN
========================================================= */

.foto-modu-page {
  position: relative;
  background: #050505;
  color: #fff;
  overflow: hidden;
}

.foto-modu-page * {
  box-sizing: border-box;
}

.foto-modu-page img {
  display: block;
  width: 100%;
  height: auto;
}

.foto-modu-page a {
  text-decoration: none;
}

.foto-modu-page .container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}


/* =========================================================
   ARKA PLAN DOKU / ATMOSFER
========================================================= */

.foto-modu-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.05), transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(255, 0, 60, 0.08), transparent 25%),
    radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.03), transparent 35%);
  opacity: 0.9;
}

.foto-modu-page::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.05;
  background-image:
    linear-gradient(rgba(255,255,255,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle at center, black 45%, transparent 100%);
}


/* =========================================================
   ORTAK YAZI / BAŞLIK / BUTTON
========================================================= */

.fm-section-heading {
  max-width: 760px;
  margin: 0 0 48px;
}

.fm-section-kicker,
.fm-break-kicker,
.fm-cta-kicker,
.fm-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin: 0 0 18px;
}

.fm-section-kicker::before,
.fm-break-kicker::before,
.fm-cta-kicker::before,
.fm-hero-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, #ff304f, rgba(255,255,255,0.35));
}

.fm-section-title,
.fm-break-title,
.fm-cta-title {
  margin: 0;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: #fff;
}

.fm-section-text,
.fm-hero-text {
  margin: 18px 0 0;
  max-width: 700px;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255,255,255,0.72);
}

.fm-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease, color 0.35s ease;
  overflow: hidden;
  will-change: transform;
}

.fm-btn:hover {
  transform: translateY(-3px);
}

.fm-btn-primary {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.14);
  background:
    linear-gradient(135deg, rgba(255,50,80,0.18), rgba(255,255,255,0.03)),
    rgba(255,255,255,0.04);
  box-shadow:
    0 14px 34px rgba(255, 35, 75, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
}

.fm-btn-primary:hover {
  border-color: rgba(255,255,255,0.25);
  box-shadow:
    0 20px 40px rgba(255, 35, 75, 0.22),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

.fm-btn-secondary {
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
}

.fm-btn-secondary:hover {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
}


/* =========================================================
   HERO ALANI
========================================================= */

.fm-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
}

.fm-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.05), transparent 22%),
    radial-gradient(circle at 80% 25%, rgba(255,50,80,0.12), transparent 20%),
    radial-gradient(circle at 50% 60%, rgba(255,255,255,0.04), transparent 30%),
    linear-gradient(180deg, #060606 0%, #090909 50%, #040404 100%);
  transform: scale(1.1);
}

.fm-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.16) 0%, rgba(0,0,0,0.52) 100%);
}

.fm-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
}

.fm-hero-title {
  margin: 0;
  font-size: clamp(58px, 12vw, 170px);
  line-height: 0.92;
  letter-spacing: -0.06em;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
}

.fm-hero-title span {
  display: inline-block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.85);
  text-stroke: 1px rgba(255,255,255,0.85);
  margin-left: 10px;
}

.fm-hero-text {
  max-width: 700px;
  font-size: 18px;
}

.fm-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.fm-hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 56px;
  color: rgba(255,255,255,0.55);
}

.fm-hero-scroll span {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
}

.fm-hero-scroll span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 11px;
  transform: translateX(-50%);
  width: 2px;
  height: 12px;
  border-radius: 2px;
  background: rgba(255,255,255,0.75);
  animation: fmScroll 1.7s infinite ease-in-out;
}

.fm-hero-scroll small {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@keyframes fmScroll {
  0% { opacity: 0; transform: translateX(-50%) translateY(0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}


/* =========================================================
   ÖNE ÇIKAN KARELER
========================================================= */

.fm-featured {
  position: relative;
  padding: 120px 0 40px;
}

.fm-featured-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}

.fm-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  min-height: 340px;
  box-shadow:
    0 30px 70px rgba(0,0,0,0.30),
    inset 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
}

.fm-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, transparent 28%),
    linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.62) 100%);
  z-index: 1;
  pointer-events: none;
}

.fm-card-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.fm-card-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.fm-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.02);
  transform: scale(1.01);
  transition: transform 0.8s ease, filter 0.6s ease;
}

.fm-card-content {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  z-index: 2;
  transform: translateY(0);
  transition: transform 0.45s ease;
}

.fm-card-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  margin: 0 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  backdrop-filter: blur(8px);
}

.fm-card-title {
  margin: 0;
  font-size: clamp(24px, 2.5vw, 38px);
  line-height: 1.08;
  font-weight: 700;
  color: #fff;
}

.fm-card-meta {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.64);
}

.fm-card:hover .fm-card-media img {
  transform: scale(1.08);
  filter: saturate(1.02) contrast(1.05) brightness(0.9);
}

.fm-card:hover .fm-card-content {
  transform: translateY(-6px);
}

.fm-card-large {
  grid-column: span 5;
  min-height: 720px;
}

.fm-card-wide {
  grid-column: span 7;
  min-height: 340px;
}

.fm-card-vertical {
  grid-column: span 4;
  min-height: 520px;
}

.fm-card-square {
  grid-column: span 4;
  min-height: 420px;
}


/* =========================================================
   ARA BLOK / BAKIŞ AÇISI
========================================================= */

.fm-break {
  position: relative;
  padding: 120px 0;
}

.fm-break-inner {
  position: relative;
  padding: 56px 46px;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at top right, rgba(255,50,80,0.10), transparent 28%),
    rgba(255,255,255,0.03);
  box-shadow:
    0 28px 60px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.fm-break-inner::after {
  content: "";
  position: absolute;
  right: -90px;
  top: 50%;
  transform: translateY(-50%);
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  opacity: 0.4;
}

.fm-break-title span {
  color: rgba(255,255,255,0.5);
}


/* =========================================================
   TOPLULUKTAN GELENLER
========================================================= */

.fm-community {
  position: relative;
  padding: 20px 0 120px;
}

.fm-community-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.fm-community-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  box-shadow:
    0 25px 60px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.06);
  transition: transform 0.45s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.fm-community-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.14);
  box-shadow:
    0 34px 70px rgba(0,0,0,0.34),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.fm-community-media {
  position: relative;
  aspect-ratio: 0.9 / 1.1;
  overflow: hidden;
}

.fm-community-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease, filter 0.5s ease;
}

.fm-community-card:hover .fm-community-media img {
  transform: scale(1.08);
  filter: brightness(0.9);
}

.fm-community-content {
  padding: 18px 18px 20px;
}

.fm-community-title {
  margin: 0;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 700;
  color: #fff;
}

.fm-community-user {
  margin: 10px 0 0;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}


/* =========================================================
   FOTOĞRAF GÖNDERME ALANI
========================================================= */

.fm-submit {
  position: relative;
  padding: 0 0 120px;
}

.fm-submit-wrap {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 34px;
  align-items: stretch;
}

.fm-submit-intro,
.fm-submit-form-area {
  min-width: 0;
}

.fm-submit-intro {
  position: relative;
  padding: 46px 38px;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.05), transparent 30%),
    rgba(255,255,255,0.03);
  box-shadow:
    0 28px 60px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
}

.fm-submit-notes {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.fm-note-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.fm-note-line {
  display: inline-block;
  width: 28px;
  height: 1px;
  margin-top: 12px;
  flex: 0 0 28px;
  background: linear-gradient(90deg, #ff304f, rgba(255,255,255,0.18));
}

.fm-note-item p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
}

.fm-form-shell {
  position: relative;
  height: 100%;
  min-height: 100%;
  padding: 30px;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.09);
  background:
    radial-gradient(circle at top right, rgba(255,50,80,0.10), transparent 26%),
    rgba(255,255,255,0.035);
  box-shadow:
    0 28px 60px rgba(0,0,0,0.30),
    inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
}

.fm-upload-box {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 250px;
  padding: 28px;
  text-align: center;
  border-radius: 28px;
  border: 1px dashed rgba(255,255,255,0.20);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,50,80,0.05));
  overflow: hidden;
}

.fm-upload-box::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.05);
  pointer-events: none;
}

.fm-upload-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

.fm-upload-text {
  margin: 16px auto 0;
  max-width: 380px;
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255,255,255,0.68);
}

.fm-form-placeholder {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.fm-placeholder-line {
  width: 100%;
  height: 54px;
  border-radius: 18px;
  background:
    linear-gradient(90deg,
      rgba(255,255,255,0.05) 0%,
      rgba(255,255,255,0.09) 50%,
      rgba(255,255,255,0.05) 100%);
  background-size: 200% 100%;
  animation: fmShimmer 2.3s linear infinite;
}

.fm-placeholder-line.short {
  width: 62%;
}

.fm-placeholder-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 54px;
  margin-top: 6px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255,50,80,0.20), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

@keyframes fmShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}


/* =========================================================
   CTA / KAPANIŞ
========================================================= */

.fm-cta {
  position: relative;
  padding: 0 0 140px;
}

.fm-cta-inner {
  position: relative;
  text-align: center;
  padding: 70px 28px;
  border-radius: 38px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at top center, rgba(255,50,80,0.12), transparent 30%),
    rgba(255,255,255,0.03);
  box-shadow:
    0 30px 70px rgba(0,0,0,0.30),
    inset 0 1px 0 rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.fm-cta-title {
  max-width: 760px;
  margin: 0 auto;
}

.fm-cta-inner .fm-btn {
  margin-top: 28px;
}


/* =========================================================
   LIGHTBOX / POPUP
========================================================= */

.fm-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.fm-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.fm-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3,3,3,0.86);
  backdrop-filter: blur(14px);
}

.fm-lightbox-dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(1180px, calc(100% - 40px));
  max-height: calc(100vh - 40px);
  transform: translate(-50%, -50%) scale(0.94);
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(10,10,10,0.92);
  box-shadow:
    0 40px 100px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.06);
  transition: transform 0.45s ease;
}

.fm-lightbox.active .fm-lightbox-dialog {
  transform: translate(-50%, -50%) scale(1);
}

.fm-lightbox-close {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 5;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.35s ease, background 0.35s ease;
}

.fm-lightbox-close:hover {
  transform: rotate(90deg);
  background: rgba(255,50,80,0.22);
}

.fm-lightbox-media {
  min-height: 620px;
  background: #0c0c0c;

  display: flex;
  align-items: center;
  justify-content: center;
}

.fm-lightbox-media img {
  width: 100%;
  height: 100%;
  max-height: 80vh;
  object-fit: contain;
}
.fm-lightbox-content {
  padding: 42px 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.fm-lightbox-tag {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.fm-lightbox-title {
  margin: 0;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.05;
  color: #fff;
}

.fm-lightbox-text {
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255,255,255,0.7);
}


/* =========================================================
   CONTACT FORM 7 UYUM / ŞİMDİDEN HAZIR
========================================================= */

.fm-form-shell .wpcf7 {
  margin-top: 24px;
}

.fm-form-shell .wpcf7 form {
  display: grid;
  gap: 14px;
}

.fm-form-shell .wpcf7-form-control-wrap {
  display: block;
}

.fm-form-shell input[type="text"],
.fm-form-shell input[type="email"],
.fm-form-shell input[type="url"],
.fm-form-shell input[type="tel"],
.fm-form-shell input[type="file"],
.fm-form-shell textarea,
.fm-form-shell select {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  color: #fff;
  outline: none;
  box-shadow: none;
  transition: border-color 0.35s ease, background 0.35s ease, transform 0.35s ease;
}

.fm-form-shell textarea {
  min-height: 140px;
  padding: 16px 18px;
  resize: vertical;
}

.fm-form-shell input::placeholder,
.fm-form-shell textarea::placeholder {
  color: rgba(255,255,255,0.42);
}

.fm-form-shell input:focus,
.fm-form-shell textarea:focus,
.fm-form-shell select:focus {
  border-color: rgba(255,255,255,0.20);
  background: rgba(255,255,255,0.06);
  transform: translateY(-1px);
}

.fm-form-shell input[type="submit"],
.fm-form-shell button,
.fm-form-shell .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 180px;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    linear-gradient(135deg, rgba(255,50,80,0.20), rgba(255,255,255,0.04));
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.fm-form-shell input[type="submit"]:hover,
.fm-form-shell button:hover,
.fm-form-shell .wpcf7-submit:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.22);
  box-shadow: 0 18px 40px rgba(255, 35, 75, 0.18);
}

.fm-form-shell .wpcf7-spinner {
  margin: 10px 0 0 10px;
}

.fm-form-shell .wpcf7-response-output {
  margin: 10px 0 0 !important;
  padding: 14px 16px !important;
  border-radius: 16px;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.10) !important;
  background: rgba(255,255,255,0.04);
}


/* =========================================================
   SCROLL REVEAL İÇİN HAZIR SINIFLAR
========================================================= */

.fm-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fm-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1180px) {
  .fm-card-large {
    grid-column: span 6;
    min-height: 620px;
  }

  .fm-card-wide {
    grid-column: span 6;
  }

  .fm-card-vertical,
  .fm-card-square {
    grid-column: span 6;
  }

  .fm-community-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fm-submit-wrap {
    grid-template-columns: 1fr;
  }

  .fm-lightbox-dialog {
    grid-template-columns: 1fr;
  }

  .fm-lightbox-media {
    min-height: 420px;
  }
}

@media (max-width: 767px) {
  .foto-modu-page .container {
    width: min(100%, calc(100% - 24px));
  }

  .fm-hero {
    min-height: auto;
    padding: 120px 0 80px;
  }

  .fm-hero-title {
    font-size: clamp(52px, 16vw, 86px);
    line-height: 0.95;
  }

  .fm-hero-title span {
    display: block;
    margin-left: 0;
    margin-top: 4px;
  }

  .fm-hero-text {
    font-size: 15px;
    line-height: 1.8;
  }

  .fm-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .fm-btn {
    width: 100%;
  }

  .fm-featured {
    padding: 90px 0 24px;
  }

  .fm-featured-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .fm-card-large,
  .fm-card-wide,
  .fm-card-vertical,
  .fm-card-square {
    grid-column: span 1;
    min-height: 380px;
    border-radius: 24px;
  }

  .fm-card-content {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .fm-break {
    padding: 90px 0;
  }

  .fm-break-inner,
  .fm-submit-intro,
  .fm-form-shell,
  .fm-cta-inner {
    padding: 30px 20px;
    border-radius: 24px;
  }

  .fm-community {
    padding: 0 0 90px;
  }

  .fm-community-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .fm-submit {
    padding: 0 0 90px;
  }

  .fm-upload-box {
    min-height: 200px;
    border-radius: 22px;
  }

  .fm-placeholder-line.short {
    width: 100%;
  }

  .fm-placeholder-button {
    width: 100%;
  }

  .fm-cta {
    padding: 0 0 100px;
  }

  .fm-lightbox-dialog {
    width: calc(100% - 20px);
    max-height: calc(100vh - 20px);
    border-radius: 22px;
  }

  .fm-lightbox-content {
    padding: 24px 18px 24px;
  }

  .fm-lightbox-close {
    right: 12px;
    top: 12px;
    width: 46px;
    height: 46px;
  }
}
/* =========================================================
   MOUSE GLOW
========================================================= */

.fm-mouse-glow {
  position: fixed;
  left: 0;
  top: 0;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.55;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(255, 50, 80, 0.10) 0%,
    rgba(255, 255, 255, 0.04) 28%,
    transparent 72%
  );
  filter: blur(18px);
  transition: opacity 0.3s ease;
}
/* =========================================================
   FOTO MODU / USER SUBMITTED POSTS FORM OVERRIDE
========================================================= */

.fm-form-shell .usp_form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.fm-form-shell .usp-field {
  margin: 0;
}

.fm-form-shell .usp-field label {
  display: block;
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.92);
}

.fm-form-shell .usp-input,
.fm-form-shell .usp-textarea,
.fm-form-shell input[type="text"],
.fm-form-shell input[type="email"],
.fm-form-shell input[type="url"],
.fm-form-shell textarea {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  color: #fff;
  outline: none;
  box-shadow: none;
  transition: border-color 0.35s ease, background 0.35s ease, transform 0.35s ease;
}

.fm-form-shell textarea,
.fm-form-shell .usp-textarea {
  min-height: 130px;
  padding: 16px 18px;
  resize: vertical;
}

.fm-form-shell .usp-input::placeholder,
.fm-form-shell .usp-textarea::placeholder,
.fm-form-shell input::placeholder,
.fm-form-shell textarea::placeholder {
  color: rgba(255,255,255,0.42);
}

.fm-form-shell .usp-input:focus,
.fm-form-shell .usp-textarea:focus,
.fm-form-shell input:focus,
.fm-form-shell textarea:focus {
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.06);
  transform: translateY(-1px);
}

.fm-form-shell .usp-field-image {
  position: relative;
  padding: 22px;
  border-radius: 24px;
  border: 1px dashed rgba(255,255,255,0.18);
  background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,50,80,0.05));
}

.fm-form-shell .usp-field-image label {
  margin-bottom: 8px;
}

.fm-form-shell .usp-field-image .usp-input,
.fm-form-shell .usp-field-image input[type="file"] {
  width: 100%;
  min-height: auto;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.78);
}

.fm-form-shell input[type="file"]::file-selector-button {
  margin-right: 12px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.fm-form-shell input[type="file"]::file-selector-button:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.22);
}

.fm-form-shell .usp-submit,
.fm-form-shell input[type="submit"],
.fm-form-shell button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 190px;
  min-height: 56px;
  margin-top: 6px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    linear-gradient(135deg, rgba(255,50,80,0.20), rgba(255,255,255,0.04));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.fm-form-shell .usp-submit:hover,
.fm-form-shell input[type="submit"]:hover,
.fm-form-shell button[type="submit"]:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.22);
  box-shadow: 0 18px 40px rgba(255, 35, 75, 0.18);
}

.fm-form-shell .usp-notice,
.fm-form-shell .usp-errors,
.fm-form-shell .usp-success {
  margin: 0 0 10px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  color: #fff;
}

.fm-form-shell .usp-errors ul {
  margin: 0;
  padding-left: 18px;
}

.fm-form-shell .usp-field p,
.fm-form-shell .usp-field small,
.fm-form-shell .usp-field .usp-message {
  color: rgba(255,255,255,0.58);
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .fm-form-shell .usp-submit,
  .fm-form-shell input[type="submit"],
  .fm-form-shell button[type="submit"] {
    width: 100%;
  }

  .fm-form-shell .usp-field-image {
    padding: 18px;
    border-radius: 20px;
  }
}
.fm-community-card a.fm-community-popup-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.fm-community-empty {
  grid-column: 1 / -1;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.7);
  text-align: center;
}
/* TOPLULUK ALANI ALT BOŞLUK FIX */
.fm-community {
  padding-bottom: 140px;
}

.fm-community-grid {
  margin-bottom: 40px;
}
/* =========================================================
   MOBILE GRID FIX (2'li yapı)
========================================================= */

@media (max-width: 768px) {

  .fm-community-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .fm-community-card {
    border-radius: 18px;
  }

  .fm-community-media {
    aspect-ratio: 1 / 1; /* kare yapıyoruz mobilde */
  }

  .fm-community-title {
    font-size: 14px;
  }

  .fm-community-user {
    font-size: 10px;
  }

}
