/* --- GENEL AYARLAR --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}
:root{
    --gradient-main: linear-gradient(135deg, #06b6d4 0%, #22c55e 100%);
    --turquoise: #06b6d4;
    --green: #22c55e;
}
.data {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
body {
    background: #0f172a;
    color: white;
    overflow-x: hidden;
    line-height: 1.6;
}
html{
    scroll-behavior:smooth;
}

/* --- 1. HEADER --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 60px;
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo img {
    height: 55px;
    width: auto;
}

nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

nav a:hover {
    color: #d4a24c;
}
nav a.active{
    color: var(--turquoise);
    position: relative;
}

nav a.active::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:100%;
    height:2px;
    background: var(--gradient-main);
    border-radius:10px;
}
.btn-top {
    background: var(--gradient-main);
    color: white !important;
    padding: 10px 20px;
    border-radius: 5px;
}


/* --- HERO SECTION --- */
.hero {
    position: relative;
    padding: 100px 60px;
    min-height: 85vh;

    display: flex;
    align-items: center;

    overflow: hidden;
}

/* VIDEO */
.hero-video {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 0;
}

/* DARK OVERLAY */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(15,23,42,0.90) 0%,
        rgba(15,23,42,0.45) 100%
    );

    z-index: 1;
}

/* CONTENT */
.hero-text {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.hero-text h1 {
    font-size: 52px;
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 800;
}

.hero-text h1 span {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 18px;
    color: #cbd5e1;
    margin-bottom: 30px;
}
.features-row {
    display: flex;
    gap: 20px; /* eşit boşluk */
    margin: 40px 0;
    flex-wrap: wrap;
    justify-content: space-between;
}

.feat-item {
    flex: 1; /* hepsi eşit genişlik */
    min-width: 120px;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 10px;
    text-align: center;

    padding: 18px 10px;

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;

    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(4px);

    transition: 0.3s ease;
}
.feat-item i {
    color: var(--turquoise);
    font-size: 32px;
}

.feat-item span {
    font-size: 11px;
    font-weight: 700;
    color: #eee;
    max-width: 110px;
    text-transform: uppercase;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* --- 3. TRUST BAR (REGIONAL ŞERİDİ) --- */
.trust-bar {
    background: white;
    padding: 25px 0;
    border-bottom: 1px solid #e2e8f0;
}

.trust-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #1e293b;
}

.trust-item i {
    font-size: 28px;
    color: #475569;
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-text strong {
    font-size: 12px;
    font-weight: 800;
    color: #0f172a;
}

.trust-text span {
    font-size: 11px;
    color: #64748b;
}

/* --- 4. SOLUTIONS SECTION (FOTOĞRAFLI KARTLAR) --- */
.solutions {
    padding: 80px 60px 0px 60px;
    background: #f8fafc;
    color: #1e293b;
}

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

.solutions-header {
    text-align: left;
    margin-bottom: 50px;
}

.solutions-header h2 {
    font-size: 26px;
    border-bottom: 4px solid #06b6d4;
    display: inline-block;
    padding-bottom: 8px;
    margin-bottom: 12px;
    color: #0f172a;;
}

.solutions-header p {
    font-size: 14px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.solution-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    height: 100%;
}

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

.card-img {
    height: 180px;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid #e2e8f0;
}

.card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content i {
    
        color: var(--green);
    font-size: 24px;
    margin-bottom: 15px;
}

.card-content h3 {
    font-size: 15px;
    margin-bottom: 12px;
    min-height: 40px;
    color: #0f172a;
}

.card-content p {
    font-size: 13px;
    color: #475569;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* MEHR ERFAHREN HİZALAMA */
.more-link {
    margin-top: auto;
    text-decoration: none;
    color: #0f172a;
    font-size: 13px;
    font-weight: 700;
    border-top: 1px solid #f1f5f9;
    padding-top: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.2s;
}

.more-link i {
    margin-bottom: 0 !important;
    font-size: 16px;
}

.more-link:hover {
    color: #d4a24c;
}

.more-link:hover i {
    transform: translateX(5px);
}

/* --- 5. CTA BANDI --- */
.cta-bar {
    background: #0f172a;
    padding: 18px 30px;   /* ÜST-ALT küçüldü */
    margin: 30px 60px 60px 60px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 30px;
    color: white;
}

.cta-left i {
    font-size: 40px;
    color: var(--turquoise);
}

.cta-text h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.cta-text p {
    font-size: 15px;
    color: #94a3b8;
}

.btn {
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    display: inline-block;
}

.primary {
    background: var(--gradient-main);
    color: white;
    position:relative;
    overflow:hidden;
}
.primary::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    
    background:rgba(255,255,255,0.2);
    
    transition:0.6s;
}
.primary:hover,
.btn-top:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
}
.primary:hover::before{
    left:100%;
}
.secondary {
    border: 2px solid white;
    color: white;
}

/* --- 6. MINI FOOTER --- */
.footer-minimal {
    background: #0a1120;
    padding: 15px 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    font-size: 12px;
    color: #64748b;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-right a {
    text-decoration: none;
    color: #64748b;
    font-size: 12px;
}

.footer-right a:hover {
    color: var(--green);
}

/* --- 7. LEGAL PAGES (DATENSCHUTZ & IMPRESSUM) --- */
.legal-page {
    background: #0f172a !important;
    color: #cbd5e1;
    padding: 40px 20px;
}

.legal-container, .datenschutz-container {
    max-width: 750px;
    margin: 40px auto;
    background: rgba(255, 255, 255, 0.02);
    padding: 35px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-container h1, .datenschutz-container h1 {
    color: var(--green);
    font-size: 26px;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--turquoise);
    display: inline-block;
    padding-bottom: 5px;
}

.legal-container h2, .datenschutz-container h2 {
    color: #f8fafc;
    font-size: 17px;
    margin-top: 25px;
}

.legal-container p, .datenschutz-container p, 
.legal-container li, .datenschutz-container li {
    font-size: 14px;
    color: #94a3b8;
}

.back-home {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    padding: 12px 24px;
    background: var(--gradient-main);
    color: white !important;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}

/* --- RESPONSIVE --- */
@media (max-width: 1200px) {
    .solution-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-container { flex-wrap: wrap; gap: 30px; }
}

@media (max-width: 768px) {
    .solution-grid { grid-template-columns: 1fr; }
    .cta-bar { flex-direction: column; text-align: center; gap: 30px; margin: 20px; }
    .footer-container { flex-direction: column; gap: 10px; }
}
.references {
    padding: 80px 60px;
    background: #f8fafc;
    color: #1e293b;
}

/* CAROUSEL WRAPPER */
.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

/* TRACK */
.carousel-track {
    display: flex;
    transition: transform 0.6s ease;
}

/* SLIDE */
.slide {
    min-width: 100%;
    display: flex;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden; /* EN ÖNEMLİ SATIR */
}
/* %65 IMAGE */
.slide-image {
    flex: 0 0 65%;
    min-height: 320px;
    background-size: cover;
    background-position: center;
}

/* %35 TEXT */
.slide-text {
    flex: 0 0 35%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

.slide-text p {
    font-size: 16px;
    font-style: italic;
    color: #1e293b;
    margin-bottom: 15px;
    line-height: 1.6;
}

.slide-text span {
    color: var(--turquoise);
    font-weight: 600;
    font-size: 13px;
}

/* NAV BUTTONS */
.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    
    background: transparent;
    color: #1e293b;
    
    border: none;
    font-size: 40px;
    cursor: pointer;
    z-index: 10;
    
    padding: 0;
    box-shadow: none;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}
/* RESPONSIVE */
@media (max-width: 900px) {
    .slide {
        flex-direction: column;
    }

    .slide-image {
        flex: 100%;
        min-height: 220px;
    }

    .slide-text {
        flex: 100%;
        padding: 25px;
    }
}
/* MOBILE MENU BUTTON */


.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 6px;
}


.menu-toggle span{
    width:20px;
    height:2px;

    background:#0f172a;
    border-radius:10px;

    transition:0.3s ease;
}
/* ANIMATION */

.menu-toggle.active span:nth-child(1){
    transform:rotate(45deg) translateY(8px);
}
.menu-toggle.active span:nth-child(2){
    opacity: 0;
}
.menu-toggle.active span:nth-child(3){
    transform:rotate(-45deg) translateY(-8px);
}/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 900px){

    /* HEADER */

    header{
        padding:14px 20px;
    }

    .logo img{
        height:42px;
    }

    .menu-toggle{
        display:flex;

    }

    
    nav{
        position: fixed;

        top: 12px;
        right: -100%;

        width: 260px;
        height: calc(100vh - 24px);

        border-radius: 24px 0 0 24px;

        background: rgba(15, 23, 42, 0.72);

        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);

        border: 1px solid rgba(255,255,255,0.08);

        box-shadow:
        -10px 0 40px rgba(0,0,0,0.35);

        flex-direction: column;
        justify-content: center;
        align-items: center;

        gap: 34px;

        transition: 0.45s ease;

        z-index: 10000;
    }

    nav.active{
        right: 12px;
    }

    nav a{
        color: white;
        font-size: 17px;
        font-weight: 600;
    }

    nav a:hover{
        color: #67e8f9;
    }

    /* HERO */

    .hero{
        padding:80px 20px;
        min-height:85vh;
    }

    .hero-text{
        width:100%;
    }

    .hero-text h1{
        font-size:34px;
        line-height:1.2;
    }

    .hero-text p{
        font-size:15px;
    }

    /* FEATURES */

    .features-row{
        gap:12px;
    }

    .feat-item{
        min-width:calc(50% - 6px);
        padding:16px 10px;
    }

    .feat-item i{
        font-size:24px;
    }

    .feat-item span{
        font-size:10px;
    }

    /* TRUST BAR */

    .trust-bar{
        padding:25px 20px;
    }

    .trust-container{
        flex-direction:column;
        align-items:flex-start;
        gap:20px;
    }

    .trust-item{
        width:100%;
    }

    /* SOLUTIONS */

    .solutions{
        padding:60px 20px 20px;
    }

    .solutions-header h2{
        font-size:22px;
    }

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

    .card-img{
        height:220px;
    }

    /* REFERENCES */

    .references{
        padding:60px 20px;
    }

    .slide{
        flex-direction:column;
    }

    .slide-image{
        min-height:220px;
    }

    .slide-text{
        padding:25px;
    }

    .slide-text p{
        font-size:14px;
    }

    /* CTA */

    .cta-bar{
        margin:20px;
        padding:25px 20px;

        flex-direction:column;
        text-align:center;
        gap:20px;
    }

    .cta-left{
        flex-direction:column;
        gap:15px;
    }

    .cta-text h4{
        font-size:18px;
    }

    /* FOOTER */

    .footer-minimal{
        padding:25px 20px;
    }

    .footer-container{
        flex-direction:column;
        gap:15px;
        text-align:center;
    }

    .footer-right{
        flex-wrap:wrap;
        justify-content:center;
    }

}
/* --- ABOUT HERO --- */
.about-hero {
    padding: 100px 60px;
    background: #0f172a;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-text h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: white;
}

.about-text p {
    color: #cbd5e1;
    margin-bottom: 20px;
    font-size: 16px;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 60%;        /* küçültür */
    max-width: 300px;  /* maksimum boy */
    border-radius: 12px;
    filter: brightness(75%);
}
/* --- VALUES --- */
.about-values {
    padding: 80px 60px;
    background: #f8fafc;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: 0.3s;
}

.value-card:hover {
    transform: translateY(-8px);
}

.value-card i {
    font-size: 30px;
    color: var(--turquoise);
    margin-bottom: 15px;
}

.value-card h3 {
    margin-bottom: 10px;
    color: #0f172a;
}

.value-card p {
    color: #64748b;
    font-size: 14px;
}

/* --- STATS --- */
.about-stats {
    background: #f8fafc;
    padding: 60px;
}

.stats-wrapper {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-box h2 {
    font-size: 40px;
    color: #d4a24c;
}

.stat-box p {
    color: #475569;  /* koyu gri */
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .about-wrapper {
        flex-direction: column;
    }

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

    .stats-wrapper {
        flex-direction: column;
        gap: 30px;
    }
}
.about-stats-mini {
    background: #f8fafc;
    padding: 20px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.mini-stats {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
}

/* =========================
   CONTACT PAGE BASE
========================= */
.contact-page {
    background: #0f172a;
    padding: 60px 20px;
}

/* HERO */
.contact-hero {
    text-align: center;
    padding: 60px 20px 20px;
    background: #0f172a;
}

.contact-hero h1 {
    font-size: 34px;
    color: white;
}

/* =========================
   GRID LAYOUT
========================= */
.contact-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
}

/* =========================
   LEFT INFO BOX
========================= */
.contact-info {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 35px;
    color: white;
}

.contact-info h1 {
    font-size: 30px;
    margin-bottom: 10px;
}

.contact-info p {
    color: #cbd5e1;
    font-size: 14px;
    margin-bottom: 10px;
}

.contact-info hr {
    border: none;
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 20px 0;
}

.contact-info i {
    color: var(--turquoise);
    margin-right: 8px;
}
.contact-features{
    margin-top:25px;
    display:flex;
    flex-direction:column;
    gap:12px;
}

.contact-features div{
    background:#f8fafc;
    border:1px solid #e2e8f0;
    padding:14px;
    border-radius:10px;

    font-size:13px;
    font-weight:600;
    color:#334155;

    display:flex;
    align-items:center;
    gap:10px;
}

.contact-features i{
    color:var(--green);
    font-size:16px;
}
/* SOCIAL ICONS */
.socials {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.socials a {
    color: #cbd5e1;
    font-size: 18px;
    transition: 0.3s;
}

.socials a:hover {
    color: #d4a24c;
}

/* =========================
   RIGHT CARD
========================= */
.contact-card {
    background: white;
    border-radius: 14px;
    padding: 30px;
    text-align: center;
}

.contact-card h2 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #0f172a;
}

.contact-card p {
    color: #64748b;
    font-size: 13px;
    margin-bottom: 20px;
}

/* BUTTON WRAPPER */
.quick-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* BUTTON BASE */
.contact-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    padding: 14px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    font-size: 14px;
}

/* WHATSAPP */
.contact-btn.whatsapp {
    background: #25D366;
    color: white;
}

.contact-btn.whatsapp:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* EMAIL */
.contact-btn.email {
    background: #e2e8f0;
    color: #0f172a;
}

.contact-btn.email:hover {
    background: #cbd5e1;
}



/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info, .contact-card {
        padding: 25px;
    }
}
.cookie-banner{
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;

    background: rgba(10, 15, 25, 0.95);
    border: 1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(12px);

    padding: 18px 20px;
    border-radius: 16px;

    display: none;

    justify-content: space-between;
    align-items: center;
    gap: 20px;

    z-index: 99999;
}

.cookie-banner p{
    margin: 0;
    color: #dbe7ff;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-buttons{
    display: flex;
    gap: 10px;
}

.cookie-buttons button{
    border: none;
    padding: 10px 16px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

#accept-cookies{
    background: #19d3ff;
    color: #001018;
}

#accept-cookies:hover{
    transform: translateY(-2px);
}

#decline-cookies{
    background: #1b2433;
    color: white;
}

#decline-cookies:hover{
    background: #243248;
}

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

    .cookie-buttons{
        width: 100%;
    }

    .cookie-buttons button{
        flex: 1;
    }
}
