:root {
    --primary: #4ba937;
    --primary-dark: #2d6a23;
    --primary-light: #6bc957;
    --primary-pale: #e8f5e4;
    --accent: #1a3d12;
    --hype-purple: #2a1a4a;
    --bg-white: #ffffff;
    --bg-light: #f8faf7;
    --bg-gray: #f5f5f5;
    --text-dark: #1a1a1a;
    --text-muted: #5a6555;
    --text-light: #888;
    --border: rgba(75, 169, 55, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

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

/* Typography - Inter for main titles */
h1, h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h3, h4 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

/* Top Navigation Bar - Static */
.top-bar {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    padding: 1rem 2rem;
}

.top-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top-bar-logo {
    height: 40px;
    width: auto;
}

.nav-label {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 600;
    background: var(--primary-pale);
    padding: 0.35rem 0.75rem;
    border-radius: 100px;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-dark);
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border: 1px solid var(--border);
    border-radius: 100px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.nav-link svg {
    width: 14px;
    height: 14px;
    order: 2;
}

/* Hero Section */
.hero {
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
    padding: 0 2rem;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    min-height: calc(100vh - 70px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.hero-content {
    padding: 4rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero-label::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.hero-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.4s;
}

.hero-title em {
    font-style: normal;
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.6s;
}

/* Hero Logos - 3 logos visually balanced */
.hero-logos {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.7s;
}

.hero-logos img {
    width: auto;
    object-fit: contain;
}

.hero-logos img.logo-borusan {
    height: 38px;
}

.hero-logos img.logo-hype {
    height: 32px;
}

.hero-logos img.logo-icerik {
    height: 36px;
}

.hero-logos .logo-separator {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.8s;
}

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

.hero-stat-value {
    font-family: 'DM Sans', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Hero Animation Area */
.hero-visual {
    background: transparent;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.dots-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

#dotsGrid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 24px;
    padding: 2rem;
}

.grid-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s ease;
    cursor: pointer;
}

.grid-dot.light-gray {
    background: #e0e0e0;
}

.grid-dot.dark {
    background: #2d6a23;
}

.grid-dot.activated {
    opacity: 1;
}

.grid-dot.hover {
    transform: scale(1.4);
    box-shadow: 0 0 20px rgba(75, 169, 55, 0.6);
    background: #4ba937 !important;
}

.grid-dot.pulse {
    animation: dotPulse 1.5s ease-in-out;
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); opacity: 0.7; }
}

/* About Section */
.about {
    background: var(--bg-white);
    padding: 5rem 2rem;
    border-top: 1px solid var(--border);
}

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

/* Problem Section */
.problem {
    background: var(--bg-light);
    padding: 5rem 2rem;
}

/* Solution Section */
.solution {
    background: var(--bg-white);
    padding: 5rem 2rem;
}

/* Results Section */
.results {
    background: var(--bg-light);
    padding: 5rem 2rem;
}

/* Testimonials Section */
.testimonials {
    background: var(--bg-white);
    padding: 5rem 2rem;
}

.section-label {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-pale);
    padding: 0.35rem 0.75rem;
    border-radius: 100px;
    margin-bottom: 0.75rem;
    width: fit-content;
    white-space: nowrap;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--text-dark);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.about-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.about-left .section-label {
    margin-bottom: 0.5rem;
}

.about-left .section-title {
    margin-bottom: 1rem;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.about-visual {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.about-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.section-header {
    margin-bottom: 2rem;
}

.problem-intro {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 800px;
    margin-bottom: 2rem;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.challenge-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.challenge-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(75, 169, 55, 0.1);
    transform: translateY(-4px);
}

.challenge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.challenge-number {
    font-family: 'DM Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.challenge-text {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.challenge-text strong {
    color: var(--primary-dark);
}

.problem-note {
    margin-top: 2rem;
    font-size: 1.05rem;
    color: var(--text-muted);
}

.problem-note a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.problem-note a:hover {
    text-decoration: underline;
}

.solution-intro {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

/* Partner Logos with X */
.partner-logos {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
    margin: 1.5rem 0 2.5rem 0;
    padding: 0;
}

.partner-logos img {
    width: auto;
    object-fit: contain;
}

.partner-logos img.logo-borusan {
    height: 44px;
}

.partner-logos img.logo-hype {
    height: 36px;
}

.partner-logos img.logo-icerik {
    height: 40px;
}

.partner-logos .logo-x {
    font-size: 1.25rem;
    color: var(--text-light);
    font-weight: 300;
}

/* Creative Flow Design */
.solution-flow {
    display: flex;
    gap: 0;
    margin-top: 2rem;
    position: relative;
    align-items: stretch;
}

.flow-card {
    flex: 1;
    padding: 2rem 1.75rem;
    position: relative;
    transition: all 0.4s ease;
    z-index: 1;
}

.flow-card:first-child {
    background: #1a5c1a;
    clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%, 0 0);
    padding-right: 3rem;
    border-radius: 8px 0 0 16px;
}

.flow-card:nth-child(2) {
    background: #4ba937;
    clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%, 10% 50%);
    padding-left: 3rem;
    padding-right: 3rem;
    margin-left: -2%;
}

.flow-card:last-child {
    background: #d4edcf;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 10% 50%);
    padding-left: 3rem;
    margin-left: -2%;
    border-radius: 0 16px 16px 0;
}

.flow-card:first-child,
.flow-card:nth-child(2) {
    color: white;
}

.flow-card:first-child .flow-card-number,
.flow-card:nth-child(2) .flow-card-number {
    color: white;
    opacity: 0.3;
}

.flow-card:first-child .flow-card-title,
.flow-card:nth-child(2) .flow-card-title {
    color: white;
}

.flow-card:first-child .flow-list li,
.flow-card:nth-child(2) .flow-list li {
    color: rgba(255,255,255,0.85);
    border-bottom-color: rgba(255,255,255,0.15);
}

.flow-card:first-child .flow-list li::before,
.flow-card:nth-child(2) .flow-list li::before {
    color: rgba(255,255,255,0.7);
}

.flow-card:first-child .flow-list li strong,
.flow-card:nth-child(2) .flow-list li strong {
    color: white;
}

.flow-card:last-child .flow-card-number {
    color: var(--primary-dark);
    opacity: 0.3;
}

.flow-card:last-child .flow-card-title {
    color: var(--primary-dark);
}

.flow-card:last-child .flow-list li {
    color: var(--text-muted);
    border-bottom-color: rgba(45, 106, 35, 0.15);
}

.flow-card:last-child .flow-list li strong {
    color: var(--primary-dark);
}

.flow-card:hover {
    transform: scale(1.02);
    z-index: 2;
}

.flow-card-number {
    font-family: 'DM Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.flow-card-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.flow-card-title .dot {
    width: 8px;
    height: 8px;
    background: currentColor;
    border-radius: 50%;
    opacity: 0.5;
}

.flow-list {
    list-style: none;
}

.flow-list li {
    padding: 0.6rem 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.flow-list li:last-child {
    border-bottom: none;
}

.flow-list li .arrow-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
    opacity: 0.7;
}

.flow-card:last-child .flow-list li {
    border-bottom-color: rgba(45, 106, 35, 0.15);
}

/* Solution Flow Cards - Scroll Animated */
.solution-flow-cards {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    overflow: visible;
}

.solution-card {
    flex: 1;
    padding: 2rem;
    border-radius: 10px;
    color: white;
    will-change: transform, opacity;
    transition: box-shadow 0.3s ease;
}

.solution-card-1 { background: #1a5c1a; }
.solution-card-2 { background: #4ba937; }
.solution-card-3 { background: #6bc957; }

.solution-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.solution-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 1.25rem;
    opacity: 0.6;
}

.solution-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.solution-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-card li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    opacity: 0.9;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.solution-card li:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .solution-flow-cards {
        flex-direction: column;
    }
}

.solution-note {
    background: var(--primary-pale);
    border-left: 4px solid var(--primary);
    padding: 1.5rem 2rem;
    margin-top: 2rem;
    border-radius: 0 12px 12px 0;
}

.solution-note p {
    color: var(--text-muted);
    font-size: 1rem;
}

.solution-note strong {
    color: var(--text-dark);
}

.website-showcase {
    margin-top: 2.5rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--border);
}

.website-showcase img {
    width: 100%;
    height: auto;
    display: block;
}

.results-intro {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 700px;
    margin-bottom: 2.5rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.result-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.result-card:hover {
    border-color: var(--primary);
    box-shadow: 0 15px 50px rgba(75, 169, 55, 0.12);
    transform: translateY(-6px);
}

.result-value {
    font-family: 'DM Sans', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.result-label {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.result-label small {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.results-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Data Visualization Images */
.data-visual {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 2rem;
    align-items: center;
    background: var(--bg-light);
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid var(--border);
}

.data-visual-img {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.data-visual-img img {
    width: 100%;
    height: auto;
    display: block;
}

.data-visual-stat {
    text-align: center;
    padding: 1rem 0;
}

.stat-number {
    font-family: 'DM Sans', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-plus {
    font-size: 2.5rem;
    color: var(--primary-light);
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 0.5rem;
}

.stat-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
    line-height: 1.5;
}

.stat-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    font-size: 2.75rem;
}

@media (max-width: 768px) {
    .data-visual {
        grid-template-columns: 1fr;
    }

    .data-visual-stat {
        padding: 1.5rem 0 0.5rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-item .stat-number {
        font-size: 2.25rem;
    }
}

.highlight-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
    fill: none;
    stroke-width: 2;
}

.highlight-text {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.highlight-text strong {
    color: var(--primary-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 2.5rem;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 6rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.15;
    line-height: 1;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-pale);
}

.author-info h4 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.author-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .top-bar {
        padding: 1rem;
    }

    .hero {
        padding: 0 1rem;
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 3rem 0;
    }

    .hero-visual {
        min-height: 300px;
    }

    .about,
    .problem,
    .solution,
    .results,
    .testimonials {
        padding: 3rem 1rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

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

    .solution-flow {
        flex-direction: column;
        gap: 0.75rem;
    }

    .flow-card,
    .flow-card:first-child,
    .flow-card:nth-child(2),
    .flow-card:last-child {
        border-radius: 8px !important;
        clip-path: none !important;
        padding: 1.5rem !important;
        margin: 0 !important;
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .results-highlights,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .partner-logos {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    /* Header - horizontal layout */
    .top-bar {
        padding: 0.75rem 1rem;
    }

    .top-bar-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .top-bar-left {
        flex-direction: row;
        gap: 0.5rem;
        align-items: center;
    }

    .top-bar-logo {
        height: 28px;
    }

    .nav-label {
        font-size: 0.55rem;
        padding: 0.25rem 0.5rem;
    }

    .nav-link {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }

    .nav-link svg {
        width: 10px;
        height: 10px;
    }

    /* Hero - centered content */
    .hero-content {
        text-align: center;
        align-items: center;
    }

    .hero-label {
        justify-content: center;
    }

    .hero-label::before {
        display: none;
    }

    .hero-logos {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .hero-logos img {
        height: 20px;
    }

    /* Hero stats - single row */
    .hero-stats {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: nowrap;
    }

    .hero-stat {
        text-align: center;
    }

    .hero-stat-value {
        font-size: 1.5rem;
    }

    .hero-stat-label {
        font-size: 0.65rem;
    }

    /* Section content - centered */
    .section-header,
    .about-left {
        text-align: center;
        align-items: center;
    }

    .section-label {
        margin-left: auto;
        margin-right: auto;
    }

    .problem-intro,
    .solution-intro,
    .results-intro,
    .about-text {
        text-align: center;
    }

    /* Partner logos - full width, bigger */
    .partner-logos {
        justify-content: center;
        width: 100%;
        gap: 0.75rem;
    }

    .partner-logos img {
        height: 28px;
    }

    .partner-logos img.logo-borusan {
        height: 36px;
    }

    .partner-logos img.logo-hype {
        height: 30px;
    }

    .partner-logos img.logo-icerik {
        height: 34px;
    }

    /* Results grid - 2 per row */
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .result-card {
        padding: 1.25rem 1rem;
    }

    .result-value {
        font-size: 1.75rem;
    }

    .result-label {
        font-size: 0.75rem;
    }

    .result-label small {
        font-size: 0.65rem;
    }

    /* Data visual */
    .data-visual {
        text-align: center;
    }

    .data-visual-stat {
        text-align: center;
    }
}

/* CTA Section */
.elementor-element-c7ddf51 {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.elementor-element-c7ddf51 .elementor-column {
    width: 100%;
}

.elementor-element-c7ddf51 .elementor-widget-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.elementor-element-c7ddf51 .elementor-heading-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: white;
    margin: 0;
}

.elementor-element-c7ddf51 .elementor-widget-text-editor p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.elementor-element-c7ddf51 .elementor-button {
    display: inline-flex;
    align-items: center;
    background: white;
    color: var(--primary-dark);
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    margin-top: 1rem;
}

.elementor-element-c7ddf51 .elementor-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* Other Cases Section */
.elementor-element-5d56a7a {
    background: var(--bg-light);
    padding: 4rem 2rem;
}

.elementor-element-5d56a7a .elementor-container {
    max-width: 1200px;
    margin: 0 auto;
}

.elementor-element-5d56a7a .elementor-element-7fd4053 .elementor-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.elementor-element-5d56a7a .elementor-heading-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--text-dark);
    margin: 0;
}

.elementor-element-5d56a7a .elementor-button-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.elementor-element-5d56a7a .elementor-button-link:hover {
    gap: 0.75rem;
}

.elementor-element-5d56a7a .e-fas-arrow-right {
    width: 14px;
    height: 14px;
    fill: var(--primary);
}

/* Slider Styles */
.elementor-element-9dae3fc {
    max-width: 1200px;
    margin: 0 auto;
}

.elementor-slides-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.elementor-slides .swiper-slide {
    height: 400px;
    position: relative;
}

.elementor-slides .swiper-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.elementor-repeater-item-0ff3533 .swiper-slide-bg {
    background-image: url('../images/201809031728484514-1.jpg');
}
.elementor-repeater-item-0ff3533 .elementor-background-overlay {
    background-color: rgba(224, 101, 101, 0.5);
}

.elementor-repeater-item-26dc0da .swiper-slide-bg {
    background-image: url('../images/egitimcomwebsite-1.jpg');
}
.elementor-repeater-item-26dc0da .elementor-background-overlay {
    background-color: rgba(163, 80, 179, 0.72);
}

.elementor-repeater-item-4321ec4 .swiper-slide-bg {
    background-image: url('../images/promo-cases-1.jpg');
}
.elementor-repeater-item-4321ec4 .elementor-background-overlay {
    background-color: rgba(31, 87, 47, 0.72);
}

.elementor-repeater-item-f54f7b3 .swiper-slide-bg {
    background-image: url('../images/medical-bg-1.jpg');
}
.elementor-repeater-item-f54f7b3 .elementor-background-overlay {
    background-color: rgba(67, 102, 173, 0.58);
}

.elementor-repeater-item-60db403 .swiper-slide-bg {
    background-image: url('../images/isbasi-bg-1.jpg');
}
.elementor-repeater-item-60db403 .elementor-background-overlay {
    background-color: rgba(191, 12, 12, 0.52);
}

.elementor-background-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.swiper-slide-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    z-index: 2;
    text-decoration: none;
    color: white;
}

.swiper-slide-contents {
    text-align: center;
    max-width: 66%;
}

.elementor-slide-heading {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
    color: white;
}

.elementor-slide-description {
    font-size: 17px;
    line-height: 1.4;
    margin-bottom: 30px;
    color: white;
}

.elementor-slide-button {
    display: inline-block;
    border: 2px solid white;
    color: white;
    background: transparent;
    padding: 12px 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.elementor-slide-button:hover {
    background: white;
    color: #333;
}

.elementor-swiper-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.elementor-swiper-button:hover {
    background: white;
}

.elementor-swiper-button-prev {
    left: 20px;
}

.elementor-swiper-button-next {
    right: 20px;
}

.elementor-swiper-button svg {
    width: 20px;
    height: 20px;
    fill: #333;
}

.elementor-screen-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

@media (max-width: 767px) {
    .elementor-element-c7ddf51 {
        padding: 3rem 1rem;
    }

    .elementor-element-5d56a7a {
        padding: 3rem 1rem;
    }

    .elementor-element-5d56a7a .elementor-element-7fd4053 .elementor-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .elementor-slides .swiper-slide {
        height: 300px;
    }

    .swiper-slide-inner {
        padding: 30px;
    }

    .swiper-slide-contents {
        max-width: 90%;
    }

    .elementor-slide-heading {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .elementor-slide-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
}
