/* Base Styles */
:root {
    --primary: #FF9500;
    --primary-dark: #e68600;
    --text-dark: #111827;
    --text-body: #4b5563;
    --text-light: #9ca3af;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --dark: #1f2937;
    --darker: #111827;
    --border: #e5e7eb;
    --blue: #3b82f6;
    --blue-dark: #1d4ed8;
    --green: #10b981;
    --red: #ef4444;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-body);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.mb-4 { margin-bottom: 1.5rem; }
.mt-3 { margin-top: 1rem; }
.pb-5 { padding-bottom: 3rem; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(255, 149, 0, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 149, 0, 0.4);
}

.btn-blue {
    background-color: var(--blue);
    color: white;
}
.btn-blue:hover { opacity: 0.9; }

.btn-outline-green {
    border: 2px solid var(--green);
    color: var(--green);
    background: transparent;
}
.btn-outline-green:hover {
    background: var(--green);
    color: white;
}

.btn-block {
    width: 100%;
    padding: 16px;
    font-size: 18px;
}

/* Navbar */
.navbar {
    background: #262626;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    flex: 1;
    display: flex;
    align-items: center;
}

.logo img {
    height: 36px;
    filter: brightness(0) invert(1);
}

.mobile-menu-btn {
    display: none;
}

.nav-links {
    flex: 2;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.nav-links a {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-btn {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.btn-nav-basvur {
    background-color: #ff9500;
    color: #fff;
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-nav-basvur:hover {
    background-color: #e68600;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 149, 0, 0.3);
}

.mobile-only-btn {
    display: none !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    /* Allows inner container to stretch to full height */
    padding-top: 80px;
    overflow: hidden; /* In case image slightly overflows */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(17, 24, 39, 0.9) 0%, rgba(17, 24, 39, 0.6) 50%, rgba(17, 24, 39, 0.2) 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.hero-content {
    max-width: 600px;
    align-self: center; /* keep it centered vertically */
    color: var(--white);
}

.hero-content h1 {
    font-size: 40px;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content p {
    font-size: 18px;
    color: #cbd5e1;
    margin-bottom: 30px;
}

.hero-form {
    display: flex;
    background: var(--white);
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-form input {
    flex: 1;
    border: none;
    padding: 0 20px;
    font-size: 16px;
    outline: none;
    font-family: inherit;
    border-radius: 8px;
}

.hero-image {
    max-width: 500px;
    align-self: flex-end; /* Align to the bottom strictly */
}

/* Why Us Section */
.why-us {
    padding: 100px 0;
    background: #fdfdfd; /* Very subtle off-white for contrast */
}

.why-us-container {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.why-us-left {
    flex: 1.1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.why-text-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #333;
    letter-spacing: -0.5px;
}

.why-text-block p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    font-weight: 400;
}

.why-us-right {
    flex: 1;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.feature-card {
    background: var(--white);
    padding: 40px 20px;
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.feature-card .icon {
    width: 56px;
    height: 56px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 16px;
}

.feature-card h3 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #111827;
    line-height: 1.3;
    font-weight: 700;
}

.feature-card p {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.5;
}



/* Process 3 Cards */
.process-3cards {
    padding: 80px 0;
    background: var(--white);
}

.process-title {
    margin-bottom: 50px;
}

.process-title h2 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 600;
}

.process-title p {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 30px;
}

.process-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-pill {
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
}

.btn-process-blue {
    background-color: #0d84ff;
    color: var(--white);
}

.btn-process-blue:hover {
    background-color: #006ce6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 132, 255, 0.3);
}

.btn-process-green {
    background-color: #25D366;
    color: var(--white);
}

.btn-process-green:hover {
    background-color: #1ebc59;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.process-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.process-box {
    background: var(--white);
    padding: 50px 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #f3f4f6;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.process-box:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transform: translateY(-5px);
}

.process-box .number-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
}

.process-box h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #1a1a1a;
    line-height: 1.4;
    font-weight: 600;
}

.process-box p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* Logos Strip */
.logos-strip {
    padding: 60px 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.logos-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.logos-slider::before,
.logos-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
}

.logos-slider::before {
    left: 0;
    background: linear-gradient(to right, var(--white) 0%, transparent 100%);
}

.logos-slider::after {
    right: 0;
    background: linear-gradient(to left, var(--white) 0%, transparent 100%);
}

.logos-track {
    display: flex;
    width: max-content;
    animation: scrollLogos 30s linear infinite;
}

.logos-track:hover {
    animation-play-state: paused;
}

.logos-slide {
    display: flex;
    align-items: center;
    gap: 80px; 
    padding-right: 80px; 
}

.logos-slide img {
    height: 48px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logos-slide img:hover {
    transform: scale(1.05);
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Ad Platforms */
.ad-platforms {
    padding: 80px 0;
    background: var(--white);
}

.ad-platforms-container {
    max-width: 1200px; /* Matched the standard container width to spread the content all the way to container bounds */
    margin: 0 auto;
}

.new-ad-card {
    display: flex;
    align-items: center;
    gap: 90px; /* Even more spacing */
    background: transparent;
    border-radius: 0;
    padding: 20px 0;
}

.ad-card.m-card {
    flex-direction: row-reverse;
}

.new-ad-img {
    flex: 0 0 45%; /* slightly less than 50% for image */
    position: relative;
    border-radius: 4px;
    overflow: visible;
}

.new-ad-img .main-cover {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}


.new-ad-content {
    flex: 1;
    max-width: 550px; /* added to keep text lines from getting too long */
}

.new-ad-content h3 {
    font-size: 24px;
    font-weight: 800;
    color: #2c2c2c;
    margin-bottom: 20px;
    line-height: 1.4;
}

.new-ad-content p {
    font-size: 15px;
    font-weight: 500;
    color: #616161;
    margin-bottom: 30px;
    line-height: 1.6;
}

.new-ad-btns {
    display: flex;
    gap: 15px;
}

.btn-ad-orange {
    background-color: #f1b03d; /* warm orange/yellow */
    color: #1a1a1a; /* Dark text based on image */
    padding: 12px 35px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 6px;
    border: none;
}

.btn-ad-orange:hover {
    background-color: #e09f30;
    color: #1a1a1a;
}

.btn-ad-blue {
    background-color: #3b82f6; /* Facebook/Meta blue */
    color: white;
    padding: 12px 35px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 6px;
    border: none;
}

.btn-ad-blue:hover {
    background-color: #2563eb;
    color: white;
}

.btn-ad-green {
    background-color: #2bd66b;
    color: white;
    padding: 12px 35px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 6px;
    border: none;
}

.btn-ad-green:hover {
    background-color: #24c15d;
    color: white;
}

/* Social Media Ads Section */
.social-media-ads {
    padding: 80px 0;
    background: var(--white);
}

.sm-title {
    font-size: 28px;
    font-weight: 800;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.sm-desc {
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 16px;
    color: #616161;
    line-height: 1.6;
    font-weight: 500;
}

.sm-cards-wrapper {
    background: #fcf6eb; /* Light beige/orange from image */
    padding: 40px 20px;
}

.sm-cards-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
}

.sm-cards-row img {
    flex: 1 1 0;
    min-width: 180px; 
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sm-cards-row img:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Panel Section Redesign */
.panel-section {
    padding: 100px 0;
    background: #fff;
}

.panel-title {
    font-size: 28px;
    font-weight: 800;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.panel-desc {
    font-size: 16px;
    color: #616161;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.mb-80 {
    margin-bottom: 80px;
}

.panel-slider-wrapper {
    width: 100%;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.panel-slider-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding-bottom: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    user-select: none;
}

.panel-slider-track.active {
    cursor: grabbing;
    scroll-snap-type: none; /* Disables snap while dragging for smoother movement */
}

.panel-slider-track::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.panel-slider-track img {
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: start;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    border: 1px solid #eee;
}

.panel-slider-nav {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.panel-scrollbar {
    width: 100px;
    height: 12px;
    background: #e2e8f0; /* Color in image */
    border-radius: 10px;
    position: relative;
    cursor: pointer; /* Implies it's clickable */
}

.panel-scrollbar-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: #4a5568; /* Color in image */
    border-radius: 10px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Metrics Section */
.metrics {
    padding: 100px 0;
    background: var(--dark);
    color: var(--white);
}

.metrics-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.metrics-left {
    flex: 1;
}

.metrics-left h2 {
    color: var(--white);
    font-size: 36px;
    margin-bottom: 20px;
}

.metrics-left p {
    color: #cbd5e1;
    font-size: 18px;
}

.metrics-left .why-list li {
    color: var(--white);
}

.metrics-right {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.metric-box {
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
}

.box-blue { background: #3b82f6; }
.box-orange { background: #ff9500; }
.box-gray { background: #6b7280; }
.box-yellow { background: #eab308; }

.metric-box h3 {
    color: var(--white);
    font-size: 36px;
    margin-bottom: 8px;
}

.metric-box p {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    font-weight: 500;
}

/* Testimonials Slider Section */
.section-testimonials {
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}

.testimonials-container {
    display: flex;
    align-items: center;
    gap: 100px;
}

.testimonials-left {
    flex: 0 0 350px;
}

.ref-tag {
    display: block;
    color: #94a3b8;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.testi-title {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.slider-controls {
    display: flex;
    gap: 20px;
}

.testi-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #f3f4f6;
    color: #ffa012;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.testi-nav-btn:hover {
    background: #ffa012;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 160, 18, 0.2);
}

.testimonials-right {
    flex: 1;
    position: relative;
    padding: 60px 0;
}

.decorative-orange-box {
    position: absolute;
    width: 400px;
    height: 400px;
    background: #ffa012; /* Vibrant orange from image */
    border-radius: 0px; /* It's a sharp square in the image */
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 1;
}

.testi-slider-window {
    position: relative;
    z-index: 2;
    overflow: hidden;
    width: 600px; /* Fixed width to match card width perfectly */
    padding: 20px 0; /* Vertical padding for shadows */
    margin-left: 120px;
}

.testi-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    will-change: transform;
}

.testi-card-item {
    flex: 0 0 600px;
    width: 600px;
    background: #fff;
    padding: 60px 50px;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    /* Removed margin-right to prevent other cards from showing */
}

.testi-quote {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 30px;
    font-weight: 500;
    text-align: center;
}

.testi-user {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testi-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.testi-user-meta h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.testi-user-meta span {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

/* Response for Testimonials */
@media (max-width: 1200px) {
    .testimonials-container {
        gap: 50px;
    }
    .decorative-orange-box {
        width: 350px;
        height: 350px;
    }
    .testi-slider-window, .testi-card-item {
        width: 500px;
        flex: 0 0 500px;
    }
}

@media (max-width: 992px) {
    .testimonials-container {
        flex-direction: column;
        align-items: center; /* Mobil ortası hizalama */
        gap: 0; /* Ana boşluk kapandı */
    }
    .testimonials-left {
        width: 100%;
        max-width: 100%;
        margin-bottom: 0px; 
        text-align: center; /* Başlık metinlerini ortala */
    }
    .ref-tag {
        justify-content: center; /* Etiketi ortala */
        margin-bottom: 10px;
    }
    .testi-title {
        text-align: center; /* Başlığı ortala */
        font-size: 26px; /* Mobilde daha okunaklı boyut */
        margin-bottom: 10px; /* Başlık ile oklar arasındaki boşluk azaltıldı */
    }
    .slider-controls {
        justify-content: center; /* Okları ortaya al */
        margin-top: 0px;
        margin-bottom: 0px;
    }
    .testimonials-right {
        width: 100%;
        display: flex;
        justify-content: center;
        padding-top: 0px;
        padding-bottom: 10px;
        margin-top: -15px; /* Kartı oklara yaklaştırmak için negatif margin */
        position: relative;
    }
    .testi-slider-window {
        margin-left: 0;
        padding-top: 0;
    }
    .decorative-orange-box {
        display: none; /* Mobilde kutuyu gizle, arka plan gradient kullanacağız */
    }
    .testi-card-item {
        /* Görsele uygun 3 renkli gradient (turuncu-krem-beyaz) header efekti */
        background: linear-gradient(to bottom, #ff9500 0%, #ff9500 90px, #fff8f0 90px, #fff8f0 105px, #ffffff 105px, #ffffff 100%);
        padding-top: 150px;
        border-radius: 8px;
        border: 1px solid #f0f0f0; /* Soft border */
    }
    .testi-quote {
        color: #777; /* Görseldeki gibi daha yumuşak gri */
        font-size: 14.5px;
        line-height: 1.8;
    }
}

@media (max-width: 768px) {
    .testi-slider-window {
        width: 100%;
        max-width: 100vw;
    }
    .testi-card-item {
        width: 100%;
        flex: 0 0 100%;
        padding: 140px 20px 40px; /* Padding top korunarak alt/yanlar daraltıldı */
    }
}

.contact-section {
    padding: 100px 0;
    background: #f9fafb;
}

.contact-box {
    background: var(--white);
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 80px;
    border-radius: 6px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}

.contact-title-box {
    margin-bottom: 40px;
}

.contact-title-box h2 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.contact-title-box p {
    font-size: 15px;
    color: #616161;
    font-weight: 500;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row input,
.form-row textarea {
    flex: 1;
    padding: 16px 20px;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    color: #2c2c2c;
    outline: none;
    transition: border-color 0.3s;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
    color: #9ca3af;
}

.form-row input:focus,
.form-row textarea:focus {
    border-color: #ff9500;
}

.form-row.full {
    flex-direction: column;
}

.form-row textarea {
    width: 100%;
    resize: vertical;
    min-height: 140px;
}

.btn-submit-contact {
    margin-top: 10px;
    font-weight: 700;
    font-size: 16px;
    padding: 18px;
    background-color: #ff9500;
    color: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: none !important;
    transition: all 0.3s ease;
}

.btn-submit-contact:hover {
    background-color: #e68600;
}

/* Quick Contact Boxes */
.quick-contacts {
    background: #fdfdfd;
    padding-bottom: 80px;
}

.quick-contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.quick-contact-header h2 {
    font-size: 20px;
    font-weight: 800;
    color: #2c2c2c;
    margin-bottom: 12px;
}

.quick-contact-header p {
    font-size: 14px;
    color: #616161;
    font-weight: 500;
}

.contact-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.cb-item {
    background: var(--white);
    padding: 40px 20px;
    border-radius: 8px;
    text-align: center;
    flex: 1;
    max-width: 320px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cb-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.cb-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
}

.cb-icon.blue { 
    background: #007aff; 
    box-shadow: 0 10px 15px rgba(255, 149, 0, 0.15); /* Orange subtle glow matching design */
}

.cb-icon.green { 
    background: #25d366; 
    box-shadow: 0 10px 15px rgba(255, 149, 0, 0.15); /* Orange subtle glow */
}

.cb-item h5 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 800;
    color: #2c2c2c;
}

.cb-item p {
    font-size: 13px;
    color: #616161;
    font-weight: 500;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: var(--white);
    padding: 80px 0 0 0;
}

.footer-cta {
    background: transparent;
    padding: 0 0 60px 0;
    border-bottom: 1px solid #2c2c2c;
}

.footer-cta h2 {
    color: var(--white);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

.footer-cta-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-white-cta {
    background-color: var(--white);
    color: #1a1a1a;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
}
.btn-white-cta:hover {
    background-color: #f1f1f1;
}

.btn-orange-cta {
    background-color: #ff9500;
    color: var(--white);
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
}
.btn-orange-cta:hover {
    background-color: #e68600;
}

.footer-main-wrapper {
    padding: 60px 0;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.footer-col-left {
    flex: 1;
    max-width: 500px;
}

.footer-col-links {
    flex: 0 0 200px;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo {
    height: 40px;
    /* Optional: filter to invert if original is dark */
    /* filter: brightness(0) invert(1); */
}

.badge-google {
    background: var(--white);
    color: #1a1a1a;
    font-size: 11px;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.footer-col-left p {
    color: #8b8b8b;
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 30px;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2d2d2d;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b4b4b4;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a i {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    width: 100%;
    height: 100%;
}

.social-links a:hover {
    background: #ff9500;
    color: #ffffff;
}

.footer-col h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    display: inline-block;
    color: #8b8b8b;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid #2c2c2c;
    background: #1a1a1a;
    padding: 30px 0;
    color: #6b6b6b;
    font-size: 13px;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container, .why-us-container, .new-ad-card, .ad-card, .metrics-container, .footer-main {
        flex-direction: column;
    }
    
    .new-ad-card {
        padding: 40px 0;
        text-align: center;
    }
    
    .new-ad-btns {
        justify-content: center;
    }
    
    .ad-card.m-card {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 50px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .logo {
        position: relative;
        z-index: 151; /* Menü açıldığında üstte kalır */
    }
    
    .logo.hidden-mobile {
        display: none !important;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: auto; 
        padding-top: 100px; /* Navbar'a yeterli boşluk */
        padding-bottom: 40px; 
        background-color: #262626; /* Görseldeki gibi header ile aynı koyu gri renk */
        display: flex;
        flex-direction: column;
        justify-content: flex-start; 
        align-items: center;
        gap: 30px; /* Görseldeki gibi ferah aralıklar */
        transition: left 0.4s ease-in-out; 
        z-index: 150;
        box-shadow: 0 10px 25px rgba(0,0,0,0.5); /* Alttan derinlik */
    }

    .nav-links.active {
        left: 0; 
    }

    .nav-links a {
        color: #ffffff;
        font-size: 14px;
        font-weight: 500;
        text-decoration: none;
        border-bottom: none !important;
        padding: 0 !important;
        letter-spacing: 0.2px;
        transition: color 0.3s ease;
    }

    .nav-links a:hover {
        color: #ff9500;
    }

    .nav-btn {
        display: none;
        width: 100%;
    }
    
    .nav-container {
        /* Ekstra pozisyon kurgusuna gerek yok, flex-wrap iptal ederek sıralı kalmalarını sağlarız */
        flex-wrap: nowrap;
    }
    
    .mobile-menu-btn {
        display: block;
        color: #fff;
        font-size: 26px; /* Görsel 1'deki mükemmel ikon boyutu */
        cursor: pointer;
        padding: 5px;
        z-index: 151; 
        /* absolute pozisyonlandırma kaldırıldı, görsel 1'deki dizilim kalacak */
    }
    
    .process-wrapper {
        grid-template-columns: 1fr;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }
    

    
    .metrics-right {
        margin-top: 40px;
    }
    
    .footer-cta {
        padding: 0 20px 40px;
    }
    
    .footer-cta-btns {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-col-left {
        max-width: 100%;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .footer-col-left .footer-logo-wrapper {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }

    .footer-col-links {
        margin-bottom: 20px;
        text-align: center;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .contact-box {
        padding: 40px 20px;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Client References Section */
.client-references {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.ref-section-title {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.ref-section-title h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.ref-section-title p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

.logo-slider-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.logo-row {
    display: flex;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    gap: 80px;
    width: max-content;
    align-items: center;
    padding-right: 80px; /* Match the gap for a seamless loop */
    animation: scrollRefs 30s linear infinite;
}

.logo-track.reverse {
    animation-direction: reverse;
}

.logo-item {
    flex: 0 0 auto;
    width: 180px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.4;
    transition: all 0.3s ease;
}

.logo-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes scrollRefs {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .logo-track {
        gap: 40px;
        padding-right: 40px;
    }
    
    .logo-item {
        width: 120px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #fff;
}

.faq-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.faq-header h2 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.faq-header p {
    font-size: 15px;
    color: #616161;
    line-height: 1.6;
    font-weight: 500;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 80px;
}

.faq-item {
    border-bottom: 1px solid #f9fafb;
    padding: 25px 0;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-input {
    display: none;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 14px;
    font-weight: 800;
    color: #4b4b4b;
    transition: color 0.3s;
    margin: 0;
}

.faq-item.right-col .faq-question {
    justify-content: flex-start;
    gap: 20px;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    color: #ff9500;
    font-size: 20px;
    font-weight: 500;
    transition: transform 0.3s ease;
    display: inline-block;
    line-height: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1), padding-top 0.4s ease;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    font-weight: 500;
}

.faq-input:checked ~ .faq-answer {
    max-height: 1000px;
    transition: max-height 0.8s ease-in-out, padding-top 0.8s ease-in-out;
    padding-top: 15px;
}

.faq-input:checked ~ .faq-question .faq-icon {
    transform: rotate(45deg);
}

@media (max-width: 992px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .faq-item {
        border-bottom: 1px solid #f9fafb;
    }
    .faq-item.right-col .faq-question {
        flex-direction: row-reverse;
        justify-content: space-between;
        gap: 0;
    }
}

/* Floating Contact Buttons */
.floating-contacts {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-btn i {
    color: white;
}

.floating-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
    color: white;
}

.phone-btn {
    background-color: #3b5998;
}

.phone-btn:hover {
    background-color: #2d4373;
}

.whatsapp-btn {
    background-color: #25d366;
}

.whatsapp-btn:hover {
    background-color: #1ebe57;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 60px; /* Butonların altında kalan içeriğin örtülmemesi için */
    }
    .floating-contacts {
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        flex-direction: row;
        gap: 0;
        z-index: 1000;
        margin: 0;
        padding: 0;
    }
    .floating-btn {
        flex: 1;
        width: auto;
        height: 60px;
        border-radius: 0;
        font-size: 24px;
        box-shadow: none;
    }
    .floating-btn:hover {
        transform: none;
        box-shadow: none;
    }
}
