:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-purple: #a2249ab7;
    --accent-green: #25D366;
    --text-dark: #1a1a1a;
    --bg-light: #fdfdfd;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
}

.logo img {
    width: 150px;
    height: 60px;
}

.navbar {
    position: fixed;
    background-color: #ffffff;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -1px;
}

.logo span {
    font-weight: 400;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-outline {
    text-decoration: none;
    color: var(--text-dark);
    border: 1px solid #ccc;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    background: #fff;
}

.btn-outline:hover {
    border-color: var(--primary-color);
    background-color: var(--bg-light);
}

.lang-switch {
    font-size: 14px;
    margin: 0 10px;
    cursor: pointer;
}

.menu-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.hero {
 
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.side-badge {
    position: absolute;
    left: 20px;
    bottom: 20%;
    transform: rotate(-90deg);
    transform-origin: left bottom;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 2px;
}

.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
}

.title-container {
    position: relative;
}

.main-title {
    font-family: 'Poppins', sans-serif;
    font-size: 10vw;
    line-height: 0.9;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -3px;
    margin-bottom: 20px;
}

.outline-text {
    color: transparent;
    -webkit-text-stroke: 2px var(--primary-color);
}

.subtitle {
    position: absolute;
    top: -30px;
    right: -50px;
    font-size: 14px;
    text-align: left;
    font-weight: 400;
    max-width: 300px;
}

.subtitle strong {
    font-weight: 700;
}

.play-btn {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    border: none;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
    z-index: 20;
}

.play-btn:hover {
    transform: translateX(-50%) scale(1.1);
}

.marquee-container {
    margin-top: 50px;
    position: absolute;
    top: 60%;
    width: 120%;
    left: -10%;
    background-color: var(--accent-purple);
    transform: rotate(-3deg);
    padding: 15px 0;
    z-index: 5;
    box-shadow: 0 10px 30px rgba(155, 81, 224, 0.3);
}

.marquee-content {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 900;
    white-space: nowrap;
    text-transform: uppercase;
    animation: scrollText 20s linear infinite;
}

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

.floating-element {
    position: absolute;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-radius: 20px;
    background: #fff;
    z-index: 15;
}

.tablet-mockup {
    left: 10%;
    top: 40%;
    width: 200px;
    height: 280px;
    border: 8px solid var(--primary-color);
    border-radius: 10px;
    transform: rotate(-5deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #1a1a2e;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.mockup-logo {
    font-size: 60px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    margin-bottom: 20px;
    background: #fff;
    color: var(--primary-color);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    line-height: 80px;
}

.phone-mockup {
    right: 15%;
    bottom: 15%;
    width: 250px;
    border: 5px solid #333;
    border-radius: 25px;
    overflow: hidden;
    transform: rotate(5deg);
}

.phone-header {
    background-color: var(--accent-green);
    color: #fff;
    padding: 15px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.close-btn {
    font-size: 10px;
    opacity: 0.8;
    cursor: pointer;
}

.phone-body {
    padding: 20px;
    background: #e5ddd5;
    min-height: 120px;
}

.phone-body p {
    background: #fff;
    padding: 10px 15px;
    border-radius: 0 15px 15px 15px;
    font-size: 13px;
    line-height: 1.5;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    color: #ccc;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

.chat-widget {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.chat-widget .badge {
    position: absolute;
    top: 0;
    right: 0;
    background: red;
    color: white;
    font-size: 12px;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.marquee-back-container {
    margin-top: 120px;
    position: absolute;
    top: 55%; 
    width: 120vw;
    left: -10vw;
    transform: rotate(-5deg);
    background: linear-gradient(90deg, #e936cba0 0%, #f97316 100%);
    padding: 15px 0;
    z-index: 1; 
    overflow: hidden; 
    pointer-events: none; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.marquee-back-content {
    display: inline-block; 
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
    font-size: 60px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    animation: scrollLeftBack 35s linear infinite; 
}

.marquee-front-container {
    margin-top: 120px;
    position: absolute;
    top: 60%; 
    width: 120vw;
    left: -10vw;
    transform: rotate(6deg);
    background: linear-gradient(90deg, #e936cba0 0%, #f97316 100%);
    padding: 15px 0;
    z-index: 2; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
    overflow: hidden;
}

.marquee-front-content {
    display: inline-block;
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
    font-size: 30px; 
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    animation: scrollLeftFront 20s linear infinite; 
}

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

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

.creative-section {
    background-color: #ffffff;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #2c2c2c;
}

.creative-container {
    max-width: 1100px;
    margin: 0 auto;
}

.creative-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
}

.creative-title {
    flex: 1;
}

.creative-title h2 {
    font-size: 42px;
    line-height: 1.15;
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.highlight {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: -5px;
    right: -5px;
    height: 18px;
    background-color: #f97416b1;
    z-index: -1;
    border-radius: 2px;
}

.creative-circle-wrapper {
    flex: 0 0 200px;
    display: flex;
    justify-content: center;
}

.creative-circle {
    width: 170px;
    height: 170px;
    background-color: #2b2b2b;
    background-image: radial-gradient(#3a3a3a 1px, transparent 1px);
    background-size: 4px 4px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.creative-circle .number {
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
}

.creative-circle .plus {
    font-size: 32px;
    font-weight: 700;
    margin-top: -30px;
    margin-left: 2px;
}

.creative-desc {
    flex: 1;
}

.creative-desc h3 {
    font-size: 14px;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 700;
    color: #333;
}

.creative-desc p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
    margin: 0;
}

.creative-bottom {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.stat-box {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eaeaea;
}

.stat-box p {
    margin: 0;
    font-size: 15px;
    color: #666;
}

.stat-box strong {
    color: #111;
    font-size: 16px;
    font-weight: 700;
}

.stat-icon svg {
    width: 28px;
    height: 28px;
    stroke: #2c2c2c;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 992px) {
    .creative-top {
        flex-direction: column;
        text-align: center;
    }
    
    .creative-bottom {
        flex-direction: column;
        gap: 30px;
    }
}

.features-section {
    background-color: #ffffff;
    padding: 100px 20px;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #000;
}

.features-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.features-left {
    flex: 1;
}

.features-subtitle {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.features-title {
    font-size: 54px;
    font-weight: 900;
    letter-spacing: -2px;
    margin: 0 0 40px 0;
    line-height: 1.1;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-left: 60px;
}

.features-list li {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
    cursor: pointer;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.features-list li:hover {
    opacity: 0.7;
}

.features-list li.active {
    opacity: 1;
}

.list-num {
    font-size: 16px;
    font-weight: 800;
}

.list-text {
    font-size: 42px;
    font-weight: 300;
    letter-spacing: -1px;
    color: #111;
}

.features-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    padding-top: 40px;
}

.info-card {
    background-color: #f4f4f4;
    padding: 60px 50px;
    position: relative;
    max-width: 420px;
    transition: opacity 0.3s ease-in-out;
}

.info-card.fade-out {
    opacity: 0;
}

.card-big-number {
    position: absolute;
    top: -45px;
    right: 20px;
    font-size: 85px;
    font-weight: 900;
    letter-spacing: -4px;
    line-height: 1;
    color: #000;
}

.info-card h3 {
    font-size: 32px;
    font-weight: 300;
    margin: 0 0 25px 0;
    letter-spacing: -1px;
}

.info-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

@media (max-width: 992px) {
    .features-container {
        flex-direction: column;
    }
    
    .features-left {
        width: 100%;
        text-align: center;
    }

    .features-list {
        padding-left: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .features-right {
        width: 100%;
        justify-content: center;
        margin-top: 40px;
    }

    .info-card {
        max-width: 100%;
    }
}

.services-dark-section {
    background-color: #111111;
    padding: 100px 20px;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #ffffff;
}

.services-container {
    max-width: 1100px;
    margin: 0 auto;
}

.services-main-title {
    font-size: 46px;
    font-weight: 700;
    margin: 0 0 60px 0;
    letter-spacing: -1px;
}

.services-list {
    display: flex;
    flex-direction: column;
}

.service-item {
    display: flex;
    align-items: flex-start;
    padding: 40px 0;
    border-top: 1px solid #333333;
    gap: 30px;
}

.service-num {
    flex: 0 0 60px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    margin-top: 5px;
}

.service-title-box {
    flex: 0 0 300px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    stroke: #f97416b1;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-title {
    font-size: 26px;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.service-desc {
    flex: 1;
}

.service-desc p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #8c8c8c;
    font-weight: 400;
}

@media (max-width: 992px) {
    .service-item {
        flex-direction: column;
        gap: 20px;
        padding: 30px 0;
    }
    
    .service-num {
        flex: none;
        margin-top: 0;
    }

    .service-title-box {
        flex: none;
        width: 100%;
    }

    .services-main-title {
        font-size: 36px;
        text-align: center;
        margin-bottom: 40px;
    }
}

.load-more {
    text-align: center;
    margin: 50px 0;
}

.load-more button {
    background-color: #ffffff;
    color: #2c2c2c;
    border: 1px solid #d1d1d1;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more button:hover {
    background-color: #2c2c2c;
    color: #ffffff;
    border-color: #2c2c2c;
}

/* NOT: Bu kural eski, basit footer tasarimi icindi. Site genelindeki
   .site-footer'a uygulaninca footer'i flex kapsayiciya cevirip
   satirlarin genislikleri icerige gore hesaplanmasina, dolayisiyla
   ust ve alt satirlarin hizasinin kaymasina yol aciyordu. */
footer:not(.site-footer) {
    border-top: 1px solid #eaeaea;
    padding-top: 30px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #8e8e8e;
    font-size: 14px;
    flex-wrap: wrap;
    gap: 15px;
}

.social-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.social-links a {
    color: #8e8e8e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #2c2c2c;
}

@media (max-width: 600px) {
    footer:not(.site-footer) {
        flex-direction: column;
        text-align: center;
    }
}

.portfolio-section {
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.portfolio-header h2 {
    font-size: 2.5rem;
    color: #222;
}

.portfolio-filters {
    display: flex;
    gap: 20px;
    border-bottom: 2px solid #eaeaea;
}

.filter-btn {
    background: none;
    border: none;
    font-size: 1rem;
    color: #777;
    cursor: pointer;
    padding-bottom: 10px;
    position: relative;
    transition: color 0.3s ease;
}

.filter-btn:hover {
    color: #222;
}

.filter-btn.active {
    color: #222;
    font-weight: 600;
}

.filter-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #222;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.portfolio-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, opacity 0.4s ease;
    cursor: pointer;
    background: #fff;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.portfolio-card.hide {
    display: none;
}

.portfolio-card.show {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

@media (max-width: 768px) {
    .portfolio-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .portfolio-filters {
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 5px;
    }
}

.marquee-wrapper {
    display: flex;
    overflow: hidden;
    user-select: none;
    padding: 60px 0;
    background-color: #fcfcfc;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}

.marquee {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    min-width: 100%;
    animation: scroll-left 15s linear infinite;
}

.marquee span {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 6rem;
    font-weight: 800;
    margin: 0 30px;
    text-transform: lowercase;
    letter-spacing: -2px;
}

.filled {
    color: #222;
}

.outlined {
    color: transparent;
    -webkit-text-stroke: 2px #e0e0e0;
    text-stroke: 2px #e0e0e0;
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

@media (max-width: 768px) {
    .marquee span {
        font-size: 3.5rem;
        margin: 0 15px;
    }
}

.site-footer {
    margin-top: -20px;
    padding: 80px 20px 40px;
    background-color: #ffffff;
    color: #333;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr 1.2fr 1.5fr;
    gap: 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.col-logo {
    justify-content: space-between;
}

.footer-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 40px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.social-links a {
    text-decoration: none;
    color: #222;
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.2s;
}

.social-links a:hover {
    color: #777;
}

.info-block {
    margin-bottom: 35px;
}

.info-block:last-child {
    margin-bottom: 0;
}

.info-block h4 {
    font-size: 1.05rem;
    color: #222;
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.col-address .info-block h4 {
    text-transform: none;
    font-size: 1.1rem;
}

.info-block p {
    color: #707070;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.email-link {
    color: #222;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 1px;
    font-size: 0.95rem;
    display: inline-block;
    margin-top: 5px;
    transition: color 0.2s;
}

.email-link:hover {
    color: #666;
}

.col-newsletter h4 {
    font-size: 0.95rem;
    color: #222;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.newsletter-form {
    position: relative;
    margin-bottom: 20px;
}

.newsletter-form input {
    width: 100%;
    padding: 15px 45px 15px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 0.95rem;
    color: #333;
    outline: none;
    transition: border-color 0.3s;
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form input:focus {
    border-color: #aaa;
}

.newsletter-form button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form button:hover {
    color: #000;
}

.privacy-note {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #707070;
    font-size: 0.9rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 60px auto 0;
    border-top: 1px solid #eaeaea;
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .col-logo {
        grid-column: span 2;
        flex-direction: row;
        align-items: center;
    }

    .social-links {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .col-logo {
        grid-column: span 1;
        flex-direction: column;
        align-items: flex-start;
    }

    .social-links {
        margin-top: 20px;
    }
}

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

.page-enter {
    animation: fadeSlideUp 0.8s ease-out forwards;
}

.scroll-anim {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

.scroll-anim.show {
    opacity: 1;
    transform: translateY(0);
}

.proje-vitrini {
    display: flex;
    align-items: center; 
    justify-content: space-between; 
    max-width: 1200px; 
    margin: 0 auto; 
    min-height: 80vh; 
    padding: 40px 20px;
}

.vitrin-metin-alani {
    flex: 1; 
    max-width: 50%;
}

.vitrin-ana-baslik {
    font-family: 'Poppins', sans-serif;
    font-size: 5rem; 
    font-weight: 800; 
    color: #000000;
    line-height: 0.9; 
    letter-spacing: -3px; 
    margin: 0 0 10px 0;
}

.vitrin-slogan {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
    letter-spacing: -0.5px;
}

.vitrin-gorsel-alani {
    flex: 1;
    display: flex;
    justify-content: flex-end; 
}

.kutu-resmi {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .proje-vitrini {
        flex-direction: column; 
        text-align: center; 
        padding-top: 80px;
    }
    
    .vitrin-metin-alani {
        max-width: 100%;
        margin-bottom: 40px;
    }
    
    .vitrin-ana-baslik {
        font-size: 3.5rem; 
    }
    
    .vitrin-gorsel-alani {
        justify-content: center; 
    }
}

.karsilama-alani {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 80vh;
    padding: 40px 20px;
    box-sizing: border-box;
}

.yazi-icerigi {
    flex: 1;
    max-width: 50%;
}

.ana-baslik {
    font-size: 4.8rem;
    font-weight: 800;
    color: #000000;
    line-height: 0.95;
    letter-spacing: -2px;
    margin: 0 0 15px 0;
}

.alt-baslik {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

.gorsel-alani {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.kart-sahnesi {
    position: relative;
    width: 600px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.kart-golgesi {
    position: absolute;
    bottom: -40px;
    left: 50%;
    width: 400px;
    height: 50px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    z-index: 1;
    animation: golgeBuyupKuculme 7s ease-in-out infinite;
}

.hareketli-kart {
    width: 200%;
    height: 100%;
    background-color: #ffffff;
    border-radius: 20px; 
    overflow: hidden;
    border: 8px solid #ffffff; 
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 
                0 0 15px rgba(0, 0, 0, 0.05); 
    animation: sarkaHareketi 7s ease-in-out infinite;
    z-index: 2;
}

.hareketli-kart img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px; 
    display: block;
}

@keyframes sarkaHareketi {
    0%, 100% {
        transform: translateY(0px) rotate(-6deg);
    }
    50% {
        transform: translateY(-25px) rotate(6deg); 
    }
}

@keyframes golgeBuyupKuculme {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translateX(-50%) scale(0.7);
        opacity: 0.15;
    }
}

@media (max-width: 768px) {
    .karsilama-alani {
        flex-direction: column;
        text-align: center;
        padding-top: 50px;
    }
    
    .yazi-icerigi {
        max-width: 100%;
        margin-bottom: 60px;
    }

    .ana-baslik {
        font-size: 3.2rem;
    }

    .kart-sahnesi {
        width: 320px;
        height: 200px;
    }
}

.harita-alani {
    width: 100%;
    max-width: 1500px;
    margin: 40px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.harita-alani iframe {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
}

@media (max-width: 768px) {
    .harita-alani iframe {
        height: 350px;
    }
}

.form-bolumu {
    background-color: #ffffff;
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
}

.form-kapsayici {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.form-gorsel-alani {
    flex: 1.2;
    border-radius: 8px;
    overflow: hidden;
}

.form-gorsel {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.form-icerik-alani {
    flex: 1;
}

.ust-etiket {
    font-size: 0.85rem;
    font-weight: 700;
    color: #777777;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.ust-etiket::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 15px;
    height: 2px;
    background-color: #bbbbbb;
    transform: translateY(-50%);
}

.form-baslik {
    font-size: 3.2rem;
    font-weight: 700;
    color: #222222;
    margin: 0 0 40px 0;
    letter-spacing: -1px;
}

.iletisim-formu {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.input-grubu {
    position: relative;
    width: 100%;
}

.input-grubu input,
.input-grubu textarea {
    width: 100%;
    padding: 12px 35px 12px 0;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    outline: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #333333;
    background: transparent;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.input-grubu textarea {
    resize: none;
}

.input-grubu input:focus,
.input-grubu textarea:focus {
    border-bottom-color: #222222;
}

.input-ikon {
    position: absolute;
    right: 0;
    top: 15px;
    color: #444444;
    font-size: 1.1rem;
    pointer-events: none;
}

.gonder-buton {
    background-color: #282828;
    color: #ffffff;
    border: none;
    padding: 16px 30px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    transition: background-color 0.3s, transform 0.2s;
}

.gonder-buton:hover {
    background-color: #000000;
    transform: translateY(-2px);
}

.gizlilik-metni {
    font-size: 0.8rem;
    color: #888888;
    line-height: 1.6;
    margin-top: 35px;
}

@media (max-width: 992px) {
    .form-kapsayici {
        flex-direction: column;
        gap: 40px;
    }

    .form-gorsel-alani {
        width: 100%;
    }

    .form-baslik {
        font-size: 2.5rem;
    }
}

.iletisim-baslik-alani {
    margin-top: -30%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: #fdfdfd;
    background-image: radial-gradient(#cccccc 1px, transparent 1px);
    background-size: 20px 20px;
}

.iletisim-yan-yana {
    display: flex;
    align-items: center;
    gap: 20px;
}

.iletisim-yan-yana h1 {
    margin-left: 40%;
    margin-top: 400px;
}

.sabit-baslik {
    font-family: 'Poppins', sans-serif;
    margin-top: 200px;
    font-size: 9.5rem;
    font-weight: 900;
    color: #222222;
    margin: 0;
    letter-spacing: -2px;
}

.sallanan-ikon {
    width: 450px; 
    height: auto;
    margin-top: 250px;
    transform-origin: top center; 
    animation: sarkaHareketi 2s ease-in-out infinite;
}

@media (max-width: 768px) {
    .sabit-baslik {
        font-size: 3rem;
    }
    
    .sallanan-ikon {
        width: 45px;
    }
}

.ofis-lokasyonlari {
    background-color: #ffffff;
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
}

.lokasyon-kapsayici {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

.ofis-karti {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sehir-baslik {
    font-size: 1.8rem;
    font-weight: 700;
    color: #222222;
    margin: 0 0 15px 0;
}

.adres-metni {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    margin: 0 0 25px 0;
}

.ayirici-cizgi {
    width: 100%;
    height: 1px;
    background-color: #eeeeee;
    margin-bottom: 25px;
}

.iletisim-detaylari {
    margin-bottom: 25px;
}

.iletisim-detaylari p {
    margin: 0 0 10px 0;
    font-size: 1rem;
    color: #666666;
}

.iletisim-detaylari strong {
    color: #222222;
    font-weight: 600;
    margin-right: 5px;
}

.iletisim-detaylari a {
    color: #666666;
    text-decoration: none;
    transition: color 0.3s;
}

.iletisim-detaylari a:hover {
    color: #222222;
}

.harita-linki {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #222222;
    text-decoration: none;
    letter-spacing: 0.5px;
    margin-top: auto;
    transition: opacity 0.3s;
}

.harita-linki i {
    font-size: 1rem;
    font-weight: normal;
}

.harita-linki:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .lokasyon-kapsayici {
        flex-direction: column;
        gap: 60px;
    }
}

.dijital-hero-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px 40px 20px;
    border-bottom: 1px solid #ebebeb;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    box-sizing: border-box;
}

.baslik-satir-2 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.rozet-alani {
    position: relative;
    width: 130px;
    height: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.donen-metin-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: yavascaDon 12s linear infinite;
}

@keyframes yavascaDon {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.rozet-ikon {
    position: absolute;
    color: #f17c08;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-sag {
    max-width: 320px;
    padding-bottom: 15px;
}

.hero-sag p {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 900px) {
    .dijital-hero-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }
    
    .ana-baslik {
        font-size: 55px;
    }
    
    .rozet-alani {
        width: 100px;
        height: 100px;
    }
    
    .donen-metin-svg text {
        font-size: 13px;
    }
    
    .baslik-satir-2 {
        gap: 10px;
    }
}

.hizmet-bolumu-container {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #333333;
}

.hizmet-ust-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.baslik-sutunu {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.hizmet-numarasi {
    font-size: 85px;
    font-weight: 800;
    color: #e5e5e5;
    line-height: 0.8;
    letter-spacing: -3px;
}

.hizmet-baslik {
    font-size: 36px;
    font-weight: 700;
    color: #222222;
    margin: 0;
    line-height: 1.2;
}

.hizmet-aciklama {
    font-size: 16px;
    color: #666666;
    line-height: 1.7;
    margin-top: 0;
    margin-bottom: 30px;
}

.ozellikler-listesi {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 15px;
    column-gap: 20px;
}

.ozellik-ogesi {
    font-size: 15px;
    font-weight: 600;
    color: #333333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.arti-ikonu {
    font-weight: 400;
    color: #222222;
}

.hizmet-gorseller-grid {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.gorsel-kutusu {
    background-color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #888888;
    font-size: 50px;
    font-weight: 600;
    border-radius: 4px;
}

.gorsel-buyuk {
    flex: 1.73;
    aspect-ratio: 500 / 450;
}

.gorsel-kucuk {
    flex: 1; 
    aspect-ratio: 450 / 537;
}

.gorsel-kucuk span {
    font-size: 35px;
}

.yuzen-detay-butonu {
    position: fixed;
    bottom: 30px;
    left: 0;
    background-color: #3fd159;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px 10px 15px;
    border-radius: 0 30px 30px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(63, 209, 89, 0.3);
    z-index: 999;
    transition: transform 0.3s ease;
}

.yuzen-detay-butonu:hover {
    transform: translateX(5px);
}

.yuzen-detay-butonu svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 900px) {
    .hizmet-ust-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hizmet-gorseller-grid {
        flex-direction: column;
    }
    
    .gorsel-kutusu {
        width: 100%;
        flex: none;
    }
}

@media (max-width: 500px) {
    .ozellikler-listesi {
        grid-template-columns: 1fr;
    }
    
    .hizmet-numarasi {
        font-size: 60px;
    }
    
    .hizmet-baslik {
        font-size: 28px;
    }
}

.kart-kapsayici {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 40px 20px;
    flex-wrap: wrap;
}

.kart {
    width: 100%;
    max-width: 500px;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.kart img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .kart {
        max-width: 100%;
        height: 250px;
    }
}

@media screen and (max-width: 992px) {
    .navbar {
        flex-direction: column;
        padding: 15px;
        gap: 15px;
    }
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .services-list {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .footer-container {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    h1, h2 { font-size: 2rem !important; }
    h3 { font-size: 1.5rem !important; }
    p, a, span, div { font-size: 0.95rem; }
    
    section {
        padding: 40px 20px !important;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }
    .nav-links a {
        width: 100%;
        justify-content: center;
    }

    .main-title {
        font-size: 2.5rem !important;
        line-height: 1.2;
    }
    .creative-top {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .creative-bottom {
        flex-direction: column;
        gap: 15px;
    }
    .features-container {
        flex-direction: column;
        gap: 30px;
    }
    .features-left, .features-right {
        width: 100% !important;
    }
    .services-list {
        grid-template-columns: 1fr !important;
    }
    .marquee-front-content, .marquee-back-content {
        font-size: 1.5rem !important;
    }

    .karsilama-alani {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .yazi-icerigi, .gorsel-alani {
        width: 100% !important;
    }
    .portfolio-grid {
        grid-template-columns: 1fr !important;
    }
    .portfolio-filters {
        flex-direction: column;
        gap: 10px;
    }
    .portfolio-filters button {
        width: 100%;
    }

    .iletisim-yan-yana {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .lokasyon-kapsayici {
        flex-direction: column;
        gap: 30px;
    }
    .form-kapsayici {
        flex-direction: column;
        gap: 30px;
    }
    .form-gorsel-alani, .form-icerik-alani {
        width: 100% !important;
    }
    .form-gorsel {
        height: auto;
        max-height: 300px;
        object-fit: cover;
    }
    
    .dijital-hero-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 20px;
    }
    .hero-sol, .hero-sag {
        width: 100% !important;
        justify-content: center;
    }
    .baslik-satir-2 {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .rozet-alani {
        width: 100px;
        height: 100px;
    }
    .hizmet-ust-grid {
        flex-direction: column;
        gap: 20px;
    }
    .baslik-sutunu, .icerik-sutunu {
        width: 100% !important;
    }
    .ozellikler-listesi {
        grid-template-columns: 1fr !important; 
        gap: 10px;
    }
    .kart-kapsayici {
        flex-direction: column;
        gap: 20px;
    }
    .kart {
        width: 100% !important;
    }

    .footer-container {
        grid-template-columns: 1fr !important; 
        text-align: center;
    }
    .footer-col {
        align-items: center;
    }
    .newsletter-form {
        justify-content: center;
    }
    .privacy-note {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .main-title { font-size: 2rem !important; }
    .hero-sol .ana-baslik { font-size: 2rem !important; }
    
    .stat-box {
        padding: 15px;
    }
    .input-grubu input, .input-grubu textarea {
        font-size: 0.9rem;
    }
}

/* =========================================================
   GÜNCELLEME BLOĞU
   Bu bölüm mevcut stilleri bozmadan üzerine ekler.
   1) Genel düzeltmeler ve erişilebilirlik
   2) Sabit menü boşluğu + mobil hamburger menü
   3) IPTS (İnşaat Proje Tanıtım Sistemi) bölümü
   4) WhatsApp butonu, form bildirimleri, footer alt satırı
   ========================================================= */

/* ---------- 1) Genel ---------- */
:root {
    --nav-h: 100px;
    --accent-orange: #f97316;
    --accent-pink: #e936cb;
    --ipts-gradient: linear-gradient(120deg, #f97316 0%, #e936cb 100%);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-h) + 20px);
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

img { max-width: 100%; }

[hidden] { display: none !important; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
.tab-item:focus-visible {
    outline: 3px solid var(--accent-orange);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Klavye kullanıcıları için içeriğe atlama bağlantısı */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 200;
    background: #111;
    color: #fff;
    padding: 12px 20px;
    border-radius: 0 0 8px 0;
    text-decoration: none;
    font-size: 14px;
}
.skip-link:focus {
    left: 0;
}

/* ---------- 2) Sabit menü + mobil menü ---------- */
body {
    padding-top: var(--nav-h);
}

body.menu-open {
    overflow: hidden;
}

.navbar {
    height: var(--nav-h);
    padding: 0 50px;
    border-bottom: 1px solid #eee;
}

.logo img {
    display: block;
    object-fit: contain;
}

.nav-links > a.current {
    border-color: #111;
    background: #111;
    color: #fff;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid #ddd;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #111;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Ana içerik alanının menünün altında kalmasını engelle */
.hero {
    height: auto;
    min-height: calc(100vh - var(--nav-h));
    padding: 40px 20px;
}

@media screen and (max-width: 992px) {
    :root { --nav-h: 80px; }

    .navbar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
        gap: 0;
    }

    .logo img {
        width: 120px;
        height: 48px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 12px;
        padding: 24px 20px 40px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
        overflow-y: auto;
    }

    .nav-links.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links a {
        width: 100%;
        justify-content: space-between;
        padding: 16px 20px;
        font-size: 16px;
    }

    .lang-switch {
        margin: 10px 0 0;
        text-align: center;
    }
}

/* ---------- 3) IPTS bölümü ---------- */
.ipts-section {
    background: #0d0d0d;
    color: #fff;
    padding: 100px 20px;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    position: relative;
    overflow: hidden;
}

.ipts-section::before {
    content: "";
    position: absolute;
    inset: auto auto -180px -160px;
    width: 460px;
    height: 460px;
    background: var(--ipts-gradient);
    filter: blur(160px);
    opacity: 0.35;
    pointer-events: none;
}

.ipts-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.ipts-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    margin-bottom: 24px;
}

.ipts-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ipts-gradient);
}

.ipts-title {
    font-size: 44px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1px;
    margin: 0 0 8px;
}

.ipts-title .grad {
    background: var(--ipts-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ipts-sub {
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #9a9a9a;
    margin: 0 0 22px;
}

.ipts-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #b5b5b5;
    margin: 0 0 30px;
    max-width: 520px;
}

.ipts-features {
    list-style: none;
    padding: 0;
    margin: 0 0 34px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 20px;
}

.ipts-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: #d7d7d7;
    line-height: 1.5;
}

.ipts-features li::before {
    content: "+";
    color: var(--accent-orange);
    font-weight: 700;
    line-height: 1.4;
}

.ipts-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.ipts-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.ipts-btn.primary {
    background: var(--ipts-gradient);
    color: #fff;
}

.ipts-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(233, 54, 203, 0.28);
}

.ipts-btn.ghost {
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
}

.ipts-btn.ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

/* Sağdaki tarayıcı görseli */
.ipts-visual {
    position: relative;
}

.ipts-window {
    background: #171717;
    border: 1px solid #262626;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
}

.ipts-window-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #1f1f1f;
    border-bottom: 1px solid #2b2b2b;
}

.ipts-window-bar i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3a3a3a;
    display: block;
}

.ipts-window-bar .url {
    margin-left: 10px;
    font-size: 12px;
    color: #8a8a8a;
    letter-spacing: 0.4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ipts-window img {
    display: block;
    width: 100%;
    height: auto;
}

.ipts-window-body {
    padding: 26px 24px 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.ipts-stat {
    background: #202020;
    border: 1px solid #2c2c2c;
    border-radius: 12px;
    padding: 18px;
}

.ipts-stat strong {
    display: block;
    font-size: 26px;
    font-weight: 800;
    background: var(--ipts-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 4px;
}

.ipts-stat span {
    font-size: 13px;
    color: #9c9c9c;
    line-height: 1.4;
}

.ipts-note {
    margin: 14px 0 0;
    font-size: 13px;
    color: #7a7a7a;
    text-align: center;
}

@media (max-width: 992px) {
    .ipts-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .ipts-title { font-size: 34px; }
}

@media (max-width: 600px) {
    .ipts-section { padding: 60px 18px; }
    .ipts-features { grid-template-columns: 1fr; }
    .ipts-actions { flex-direction: column; align-items: stretch; }
    .ipts-btn { justify-content: center; }
    .ipts-window-body { grid-template-columns: 1fr; }
}

/* ---------- 4) WhatsApp butonu, form notu, footer alt satırı ---------- */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
    z-index: 90;
    transition: transform 0.25s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.form-note {
    margin-top: 12px;
    font-size: 14px;
    color: #2e7d32;
    line-height: 1.5;
}

.form-note.error {
    color: #c62828;
}

.footer-bottom {
    border-top: 1px solid #eaeaea;
    max-width: 1200px;
    margin: 50px auto 0;
    padding: 22px 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #777;
}

.footer-bottom a {
    color: inherit;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #111;
    text-decoration: underline;
}

@media (max-width: 600px) {
    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
}

.portfolio-empty {
    text-align: center;
    padding: 40px 20px;
    color: #777;
    font-size: 15px;
}

/* ---------- 5) Sayfa üstü boşluk düzeltmeleri (<br> yığınları kaldırıldı) ---------- */
.iletisim-baslik-alani {
    margin-top: 0;
    padding: 70px 20px 30px;
}

.karsilama-alani {
    padding-top: 60px;
}

.dijital-hero-container {
    margin-top: 70px;
}

/* ---------- 6) Hero düzeltmeleri ---------- */
/* Dekoratif kayan şeritler .hero içinde konumlansın (önce sayfanın ortasına düşüyordu) */
.hero {
    position: relative;
}


/* Alt başlık mobilde başlığın üzerine biniyordu */
@media (max-width: 992px) {
    .title-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }
    .subtitle {
        position: static;
        max-width: 90%;
        text-align: center;
        margin: 0 auto;
    }
    .main-title {
        margin-bottom: 0;
    }
}

/* Mobil genel font kuralının IPTS başlığını küçültmesini engelle */
@media screen and (max-width: 768px) {
    .ipts-title .grad,
    .ipts-stat strong {
        font-size: inherit;
    }
    .ipts-title {
        font-size: 30px !important;
        line-height: 1.15;
    }
    .ipts-stat strong {
        font-size: 22px;
    }
}

/* =========================================================
   GÜNCELLEME BLOĞU 2
   7) Hero konumlandırma (masaüstü + mobil)
   8) Bayraklı dil seçici (açılır menü)
   9) Mobil ince ayarlar
   ========================================================= */

/* ---------- 7) Hero ---------- */
/* Başlık bloğu alttaki renkli bantlardan uzaklaşsın */
.hero {
    align-items: center;
    padding: 40px 20px 220px;
}

@media (max-width: 1200px) {
    .hero { padding-bottom: 190px; }
}

/* ---------- 8) Dil seçici ---------- */
.lang-switch {
    position: relative;
    margin: 0 0 0 6px;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border: 1px solid #ccc;
    border-radius: 30px;
    background: #fff;
    color: var(--text-dark);
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.25s ease;
    line-height: 1;
}

.lang-current:hover {
    border-color: var(--primary-color);
}

.lang-flag {
    width: 22px;
    height: 15px;
    border-radius: 3px;
    display: block;
    flex: 0 0 auto;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.lang-caret {
    width: 10px;
    height: 10px;
    transition: transform 0.25s ease;
    flex: 0 0 auto;
}

.lang-switch.open .lang-caret {
    transform: rotate(180deg);
}

.lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 172px;
    list-style: none;
    margin: 0;
    padding: 6px;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 14px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 120;
}

.lang-switch.open .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.lang-menu a:hover {
    background: #f4f4f4;
}

.lang-menu a[aria-current="true"] {
    background: #111;
    color: #fff;
    font-weight: 600;
}

@media screen and (max-width: 992px) {
    .lang-switch {
        margin: 6px 0 0;
    }
    .lang-current {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
        font-size: 16px;
    }
    .lang-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 8px 0 0;
        min-width: 0;
        display: none;
    }
    .lang-switch.open .lang-menu {
        display: block;
    }
    .lang-menu a {
        padding: 14px 20px;
        border: 1px solid #eee;
        border-radius: 30px;
        margin-bottom: 8px;
        justify-content: center;
        font-size: 15px;
    }
}

/* ---------- 9) Mobil ince ayarlar ---------- */
@media (max-width: 992px) {
    .hero {
        min-height: auto;
        padding: 30px 18px 40px;
        justify-content: center;
    }

    .main-title {
        font-size: clamp(2.3rem, 12vw, 3.4rem) !important;
        letter-spacing: -1.5px;
        line-height: 0.95;
    }

    /* İnce kontur, küçük ekranda daha okunaklı */
    .outline-text {
        -webkit-text-stroke: 1.2px var(--primary-color);
    }

    .subtitle {
        font-size: 15px;
        line-height: 1.6;
        color: #555;
        max-width: 340px;
    }

    /* Dekoratif bantlar mobilde akışa girsin, boşluk bırakmasın */
    .marquee-back-container,
    .marquee-front-container {
        position: relative;
        top: auto;
        left: -10vw;
        margin: 0;
        width: 120vw;
    }

    .marquee-back-container {
        margin-top: 60px;
        transform: rotate(-4deg);
    }

    .marquee-front-container {
        margin-top: -14px;
        margin-bottom: 10px;
        transform: rotate(3deg);
    }

    .marquee-back-content,
    .marquee-front-content {
        font-size: 1.5rem !important;
    }

    .hero-content {
        order: -1;
    }

    .hero {
        flex-direction: column;
        overflow: hidden;
    }
}

@media (max-width: 992px) {
    .creative-section,
    .features-section,
    .portfolio-section {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    .creative-circle {
        width: 110px;
        height: 110px;
    }

    .stat-box {
        text-align: left;
    }

    .marquee span {
        font-size: 3rem !important;
        margin: 0 16px;
    }

    .footer-col {
        align-items: flex-start;
        text-align: left;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        right: 14px;
        bottom: 14px;
    }
    .whatsapp-float svg { width: 24px; height: 24px; }
}

@media (max-width: 600px) {
    .marquee span {
        font-size: 2.4rem !important;
    }
    .services-main-title {
        font-size: 28px !important;
    }
    .ipts-section { padding: 56px 18px; }
}

/* Mobil genel span/div font kuralı başlık içindeki span'ları küçültmesin */
@media screen and (max-width: 768px) {
    h1 span, h2 span, h3 span, h4 span {
        font-size: inherit;
    }
    .creative-circle .number { font-size: 3rem; }
    .creative-circle .plus { font-size: 1.4rem; }
}

/* Vurgu bandı yazı boyutuna göre ölçeklensin */
.highlight::after {
    height: 0.32em;
    bottom: 0.04em;
}

/* ---------- 10) İletişim sayfası başlık alanı (mobil) ---------- */
@media (max-width: 992px) {
    .iletisim-baslik-alani {
        padding: 40px 20px 10px;
    }

    .iletisim-yan-yana {
        flex-direction: row !important;
        justify-content: center;
        align-items: flex-start;
        gap: 12px;
    }

    .iletisim-yan-yana h1 {
        margin-left: 0;
        margin-top: 30px;
    }

    .sabit-baslik {
        font-size: 2.8rem !important;
        letter-spacing: -1px;
    }

    .sallanan-ikon {
        width: 84px;
        margin-top: 0;
    }

    .ofis-lokasyonlari {
        padding: 40px 20px;
    }

    .harita-alani iframe {
        height: 320px;
    }
}

/* ---------- 11) İcraatlar hero kartı + son rötuşlar ---------- */
/* Gölge animasyon dışında da ortalı kalsın */
.kart-golgesi {
    transform: translateX(-50%);
}

@media (max-width: 992px) {
    .kart-sahnesi {
        width: 100%;
        max-width: 330px;
        height: 240px;
    }
    .kart-golgesi {
        width: 75%;
        bottom: -26px;
    }
    .gorsel-alani {
        display: flex;
        justify-content: center;
    }
}

/* İçeriğe geç bağlantısı yatay taşma yaratmasın */
.skip-link {
    left: 0;
    top: -80px;
    transition: top 0.2s ease;
}
.skip-link:focus {
    left: 0;
    top: 0;
}

/* Başlık içindeki div'ler de mobil font kuralından etkilenmesin */
@media screen and (max-width: 768px) {
    h1 div, h2 div, h3 div {
        font-size: inherit;
    }
}

/* ---------- 12) "Neler Yapıyoruz" hero (mobil) ---------- */
@media (max-width: 992px) {
    .dijital-hero-container {
        margin-top: 40px;
        padding-bottom: 30px;
    }

    .ana-baslik {
        font-size: 2.6rem !important;
        line-height: 1.1;
        text-align: center;
    }

    .baslik-satir-2 {
        display: flex;
        flex-direction: row !important;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }

    .rozet-alani {
        width: 74px !important;
        height: 74px !important;
        flex: 0 0 auto;
    }

    .rozet-ikon svg {
        width: 18px;
        height: 18px;
    }

    .hero-sag p {
        font-size: 15px;
        line-height: 1.6;
    }
}

/* ---------- 13) İletişim başlığı hizası ---------- */
@media (max-width: 992px) {
    .iletisim-yan-yana {
        align-items: center;
        padding: 0 10px;
    }
    .iletisim-yan-yana h1 {
        margin-top: 0;
    }
    .sallanan-ikon {
        margin-top: -30px;
    }
}

/* =========================================================
   GÜNCELLEME BLOĞU 3
   14) "Katre Neler Yapar?" bölümü açık zemine alındı
   15) IPTS bölümü tek koyu blok olarak öne çıkarıldı
   16) Footer hizası
   ========================================================= */

/* ---------- 14) Hizmet listesi: açık zemin ---------- */
.services-dark-section {
    background-color: #f5f2ee;
    color: #1a1a1a;
    border-top: 1px solid #ece7e0;
}

.services-main-title {
    color: #111111;
}

.service-item {
    border-top: 1px solid #e2dbd1;
}

.service-item:first-child {
    border-top: none;
}

.service-num {
    color: #9a9186;
}

.service-title {
    color: #111111;
}

.service-icon svg {
    stroke: #f97316;
}

.service-desc p {
    color: #625b52;
}

/* ---------- 15) IPTS: sayfanın tek koyu bloğu ---------- */
.ipts-section {
    background: #0a0a0a;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}

.ipts-section::before {
    opacity: 0.28;
    width: 560px;
    height: 560px;
    inset: auto auto -240px -220px;
}

/* Sağ üstte ikinci bir renk lekesi: bloğun koyu alanı ölü durmasın */
.ipts-section::after {
    content: "";
    position: absolute;
    top: -200px;
    right: -140px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.30) 0%, rgba(249, 115, 22, 0) 70%);
    filter: blur(110px);
    pointer-events: none;
}

/* ---------- 16) Footer ---------- */
.site-footer {
    display: block;
}

.footer-container,
.footer-bottom {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom {
    margin-top: 50px;
}

/* Mobilde alt satır da sütunlarla aynı hizada (sola) dursun */
@media (max-width: 600px) {
    .footer-bottom {
        justify-content: flex-start;
        text-align: left;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}

/* =========================================================
   GÜNCELLEME BLOĞU 4
   17) İletişim sayfası başlık alanı yeniden kuruldu
       (eski hâlinde h1'e margin-left:40% / margin-top:400px,
        telefon görseline width:450px / margin-top:250px gibi
        sabit değerler verilmişti; geniş ekranlarda 40% çok
        büyük bir boşluğa dönüşüp başlığı sayfanın altına
        itiyordu.)
   ========================================================= */

.iletisim-baslik-alani {
    margin-top: 0;
    padding: 0 20px;
    min-height: 460px;
    display: flex;
    align-items: stretch;
}

.iletisim-yan-yana {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    gap: 40px;
}

.iletisim-yan-yana h1 {
    margin: 0;
    align-self: flex-end;
    padding-bottom: 70px;
}

.sabit-baslik {
    font-size: clamp(3rem, 7.5vw, 8rem);
    line-height: 1;
    margin: 0;
}

.sallanan-ikon {
    width: clamp(130px, 15vw, 220px);
    height: auto;
    margin: 0;
    align-self: flex-start;
    transform-origin: top center;
}

@media (max-width: 992px) {
    .iletisim-baslik-alani {
        min-height: 300px;
        padding: 0 18px;
    }

    .iletisim-yan-yana {
        gap: 16px;
    }

    .iletisim-yan-yana h1 {
        padding-bottom: 40px;
    }

    .sabit-baslik {
        font-size: clamp(2.4rem, 12vw, 3.4rem) !important;
        letter-spacing: -1px;
    }

    .sallanan-ikon {
        width: clamp(78px, 22vw, 120px);
        margin-top: 0;
    }
}

/* =========================================================
   GÜNCELLEME BLOĞU 5
   18) Ana sayfa "Seçili İşler" bölümü
       (eski portfolyo ızgarası ana sayfadan kaldırıldı,
        filtreli tam liste İcraatlar sayfasında kaldı)
   ========================================================= */

.works-section {
    background: #ffffff;
    padding: 110px 20px;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.works-container {
    max-width: 1200px;
    margin: 0 auto;
}

.works-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    padding-bottom: 40px;
    margin-bottom: 46px;
    border-bottom: 1px solid #ececec;
}

.works-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8a8a8a;
    margin-bottom: 18px;
}

.works-eyebrow .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ipts-gradient);
}

.works-title {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1.5px;
    color: #111;
    margin: 0;
}

.works-head-side {
    max-width: 400px;
    text-align: right;
}

.works-desc {
    font-size: 15px;
    line-height: 1.75;
    color: #6b6b6b;
    margin: 0 0 20px;
}

.works-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 26px;
    border: 1px solid #111;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    background: #fff;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
    white-space: nowrap;
}

.works-cta:hover {
    background: #111;
    color: #fff;
    transform: translateY(-2px);
}

.works-cta i {
    transition: transform 0.25s ease;
}

.works-cta:hover i {
    transform: translateX(4px);
}

.works-cta-bottom {
    display: none;
}

/* --- Izgara --- */
.works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.work-card {
    position: relative;
    display: block;
    border-radius: 18px;
    overflow: hidden;
    background: #f2f2f2;
    aspect-ratio: 4 / 5;
    text-decoration: none;
    isolation: isolate;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.work-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.16);
}

.work-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.work-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 26px 24px;
    background: linear-gradient(to top,
        rgba(8, 8, 8, 0.92) 0%,
        rgba(8, 8, 8, 0.65) 34%,
        rgba(8, 8, 8, 0) 68%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.work-card:hover .work-overlay,
.work-card:focus-visible .work-overlay {
    opacity: 1;
}

.work-cat {
    display: inline-block;
    align-self: flex-start;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #fff;
    background: var(--ipts-gradient);
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    transform: translateY(14px);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.05s;
}

.work-name {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
    letter-spacing: -0.3px;
    transform: translateY(14px);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}

.work-desc {
    font-size: 13.5px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    transform: translateY(14px);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}

.work-card:hover .work-cat,
.work-card:hover .work-name,
.work-card:hover .work-desc,
.work-card:focus-visible .work-cat,
.work-card:focus-visible .work-name,
.work-card:focus-visible .work-desc {
    transform: translateY(0);
}

/* Dokunmatik cihazlarda üzerine gelme yok: bilgiler hep görünsün */
@media (hover: none) {
    .work-overlay {
        opacity: 1;
        background: linear-gradient(to top,
            rgba(8, 8, 8, 0.88) 0%,
            rgba(8, 8, 8, 0.45) 40%,
            rgba(8, 8, 8, 0) 72%);
    }
    .work-cat,
    .work-name,
    .work-desc {
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .works-section {
        padding: 70px 18px;
    }

    .works-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding-bottom: 28px;
        margin-bottom: 30px;
    }

    .works-head-side {
        max-width: 100%;
        text-align: left;
    }

    .works-head-side .works-cta {
        display: none;
    }

    .works-cta-bottom {
        display: inline-flex;
        margin-top: 30px;
        width: 100%;
        justify-content: center;
    }

    .works-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .work-overlay {
        padding: 18px 16px;
    }

    .work-name {
        font-size: 17px;
    }

    .work-desc {
        display: none;
    }
}

@media (max-width: 560px) {
    .works-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .work-card {
        aspect-ratio: 1 / 1;
    }

    .work-desc {
        display: block;
    }
}

/* Küçük ekranlarda bilgiler her zaman görünsün (üzerine gelme yok) */
@media (max-width: 992px) {
    .work-overlay {
        opacity: 1;
        background: linear-gradient(to top,
            rgba(8, 8, 8, 0.88) 0%,
            rgba(8, 8, 8, 0.45) 40%,
            rgba(8, 8, 8, 0) 72%);
    }
    .work-cat,
    .work-name,
    .work-desc {
        transform: translateY(0);
    }
    .work-card:hover {
        transform: none;
    }
}

/* =========================================================
   GÜNCELLEME BLOĞU 6
   19) İkonlar: Font Awesome CDN'i kaldırıldı, yerine inline SVG.
       Dış bağımlılık, ek ağ isteği ve bütünlük (SRI) sorunu ortadan kalktı.
   ========================================================= */

.ico {
    width: 1em;
    height: 1em;
    flex: 0 0 auto;
    display: inline-block;
    vertical-align: -0.125em;
}

.btn-outline .ico,
.works-cta .ico,
.ipts-btn .ico {
    width: 15px;
    height: 15px;
}

.works-cta .ico,
.ipts-btn .ico {
    transition: transform 0.25s ease;
}

.works-cta:hover .ico {
    transform: translateX(4px);
}

.harita-linki .ico {
    width: 15px;
    height: 15px;
}

.gonder-buton .ico {
    width: 16px;
    height: 16px;
}

.input-ikon {
    width: 18px;
    height: 18px;
    top: 14px;
}

.whatsapp-float .ico {
    width: 28px;
    height: 28px;
}

@media (max-width: 992px) {
    .whatsapp-float .ico { width: 24px; height: 24px; }
}

/* =========================================================
   GÜNCELLEME BLOĞU 7
   20) Yasal metin sayfaları (Gizlilik / KVKK)
   ========================================================= */

.yasal-sayfa {
    padding: 80px 20px 100px;
    background: #ffffff;
}

.yasal-kapsayici {
    max-width: 780px;
    margin: 0 auto;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #3d3d3d;
}

.yasal-etiket {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    background: var(--ipts-gradient);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 22px;
}

.yasal-kapsayici h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    line-height: 1.1;
    letter-spacing: -1.5px;
    font-weight: 800;
    color: #111;
    margin: 0 0 22px;
}

.yasal-ozet {
    font-size: 17px;
    line-height: 1.75;
    color: #555;
    margin: 0 0 10px;
}

.yasal-tarih {
    font-size: 13px;
    color: #999;
    margin: 0 0 46px;
    padding-bottom: 26px;
    border-bottom: 1px solid #ececec;
}

.yasal-kapsayici h2 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.3px;
    margin: 40px 0 14px;
}

.yasal-kapsayici p {
    font-size: 15.5px;
    line-height: 1.85;
    margin: 0 0 14px;
}

.yasal-kapsayici ul {
    margin: 0 0 14px;
    padding-left: 0;
    list-style: none;
}

.yasal-kapsayici li {
    position: relative;
    padding-left: 22px;
    font-size: 15.5px;
    line-height: 1.8;
    margin-bottom: 9px;
}

.yasal-kapsayici li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-orange);
}

.yasal-kapsayici a {
    color: #111;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.yasal-kapsayici a:hover {
    color: var(--accent-orange);
}

.yasal-kapsayici strong {
    color: #111;
    font-weight: 600;
}

.yasal-not {
    margin-top: 50px;
    padding: 22px 24px;
    background: #fff8f1;
    border: 1px solid #f6dcc4;
    border-left: 4px solid var(--accent-orange);
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.75;
    color: #6b5340;
}

@media (max-width: 768px) {
    .yasal-sayfa { padding: 50px 18px 70px; }
    .yasal-kapsayici h2 { font-size: 18px; margin-top: 32px; }
    .yasal-kapsayici p,
    .yasal-kapsayici li { font-size: 15px !important; }
}
