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

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    background-color: #f5f5f5;
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}

html {
    overflow-x: hidden;
}

/* Header Styles */
.header {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    padding: 10px 0;
}

.nav-link:hover {
    color: #c8f31e;
}

.nav-link-contact {
    background-color: #fff;
    border: 2px solid #333;
    padding: 10px 25px;
    border-radius: 6px;
    transition: all 0.3s;
}

.nav-link-contact:hover {
    background-color: #333;
    color: #fff !important;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-toggle::after {
    content: " ▼";
    font-size: 10px;
    margin-left: 3px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 12px;
    padding: 20px;
    width: 320px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 10px;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.dropdown-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.dropdown-column {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.dropdown-item {
    text-decoration: none;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s;
    display: block;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #c8f31e;
    padding-left: 20px;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 450px;
    height: auto;
    background-color: #4a4a4a;
    background-image: linear-gradient(135deg, rgba(26, 35, 50, 0.85) 0%, rgba(45, 55, 72, 0.85) 50%, rgba(26, 35, 50, 0.85) 100%), url('https://rankzup.com/wp-content/uploads/2024/08/rankzup-home-footer-1.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 50px 20px 30px 20px;
    width: 100%;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(200, 243, 30, 0.1), transparent);
    animation: shimmer 3s infinite;
    pointer-events: none;
    z-index: 1;
    transition: top 0.15s ease, left 0.15s ease;
}

.hero-content {
    text-align: center;
    color: #fff;
    z-index: 2;
}

.hero-title {
    font-size: 60px;
    font-weight: 300;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 30px;
    opacity: 0.9;
}

.anasayfa-btn {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 30px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    margin: 0 10px;
}

.anasayfa-btn::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #c8f31e;
    border-radius: 50%;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
}

.anasayfa-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    padding-right: 45px;
}

.anasayfa-btn:hover::before {
    transform: translateY(-50%) translateX(10px);
}

.btn-text {
    position: relative;
    z-index: 1;
    margin-right: 36px;
}

/* Hero Buttons Wrapper */
.hero-buttons-wrapper {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Hero Section Mobile */
@media (max-width: 768px) {
    .hero-section {
        min-height: 500px;
        padding: 100px 20px 40px 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .hero-title {
        font-size: 32px;
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 25px;
        line-height: 1.4;
    }

    .hero-buttons-wrapper {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        align-items: center;
    }

    .anasayfa-btn {
        font-size: 16px;
        padding: 12px 20px;
        margin: 0;
        width: 100%;
        max-width: 280px;
    }

    .btn-text {
        margin-right: 25px;
    }

    .anasayfa-btn::before {
        width: 22px;
        height: 22px;
        right: 8px;
    }

    .bottom-bar-text {
        font-size: 14px;
        padding: 0 15px;
    }
}

/* Bottom Bar */
.bottom-bar {
    background-color: #c8f31e;
    padding: 15px 0;
    overflow: hidden;
    position: relative;
}

.bottom-bar-marquee {
    display: flex;
    width: 100%;
}

.bottom-bar-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    padding-right: 50px;
}

.bottom-bar-text {
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 600;
    padding: 0 30px;
}

.bottom-bar-separator {
    color: #1a1a1a;
    font-size: 24px;
    font-weight: 700;
}

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

/* Transformation Section */
.transformation-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    background-color: #c8f31e;
    margin: 20px auto;
}

.section-description {
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* SEO Process Section */
.seo-process-section {
    padding: 60px 0;
    background-color: #fff;
}

.process-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
    width: 100%;
}

@media (max-width: 968px) {
    .process-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.process-left {
    position: sticky;
    top: 120px;
}

.process-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.3;
}

.process-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.process-right {
    display: flex;
    flex-direction: column;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.process-step {
    background: linear-gradient(135deg, #f5f7e8 0%, #e8f0d8 100%);
    padding: 35px 25px;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(200, 243, 30, 0.2);
    border-color: #c8f31e;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #c8f31e;
    opacity: 0.3;
    margin-bottom: 15px;
    line-height: 1;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.step-description {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

/* Responsive for SEO Process Section */
@media (max-width: 968px) {
    .process-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-left {
        position: static;
    }

    .process-title {
        font-size: 28px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .seo-process-section {
        padding: 60px 0;
    }

    .process-title {
        font-size: 24px;
    }

    .process-description {
        font-size: 15px;
    }

    .process-step {
        padding: 25px 20px;
    }

    .step-number {
        font-size: 36px;
    }

    .step-title {
        font-size: 18px;
    }

    .step-description {
        font-size: 14px;
    }
}

/* Stats Section */
.stats-section {
    padding: 0;
    background: linear-gradient(135deg, #1a2332 0%, #2d3748 50%, #1a2332 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(200, 243, 30, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}


.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-top: 0;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 30px 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 140px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(200, 243, 30, 0.05);
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(200, 243, 30, 0.5);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #c8f31e;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(200, 243, 30, 0.3);
}

.stat-label {
    font-size: 15px;
    color: #ccc;
    font-weight: 500;
}

/* SEO Services Section */
.seo-services-section {
    padding: 20px 0 50px 0;
    background-color: #1a1a1a;
}

.seo-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 35px;
    width: 100%;
}

.seo-service-card {
    background-color: #2a2a2a;
    padding: 35px 25px;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid #333;
}

.seo-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(200, 243, 30, 0.2);
    border-color: #c8f31e;
}

.service-icon-box {
    margin-bottom: 25px;
}

.service-icon-box svg {
    width: 60px;
    height: 60px;
}

.seo-service-title {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.seo-service-description {
    font-size: 16px;
    line-height: 1.6;
    color: #ccc;
}

/* Responsive for Stats & SEO Services */
@media (max-width: 968px) {
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid #333;
        padding: 35px 25px;
        min-height: 150px;
    }

    .stat-item:nth-child(odd) {
        border-right: 1px solid #333;
    }

    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        border-bottom: none;
    }

    .seo-services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .stat-number {
        font-size: 48px;
    }

    .stat-label {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .stats-section {
        padding: 0;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .stat-item {
        padding: 30px 20px;
        border-right: none;
        border-bottom: none;
        min-height: 130px;
    }

    .stat-item:nth-child(odd) {
        border-right: 1px solid #333;
    }

    .stat-item:nth-child(1),
    .stat-item:nth-child(2) {
        border-bottom: 1px solid #333;
    }

    .stat-number {
        font-size: 38px;
    }

    .stat-label {
        font-size: 14px;
    }

    .seo-services-section {
        padding: 30px 0 60px 0;
    }

    .seo-service-card {
        padding: 35px 25px;
    }

    .seo-service-title {
        font-size: 20px;
    }

    .seo-service-description {
        font-size: 15px;
    }
}

/* Success Stories Title Section */
.success-stories-title-section {
    padding: 80px 0 40px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.success-stories-title-section .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 0;
}

/* Case Study Section */
.case-study-section {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.case-study-section.case-study-alt {
    background-color: #fff;
}

.case-study-header {
    text-align: center;
    margin-bottom: 35px;
}

.case-logo {
    max-width: 190px;
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.case-logo:hover {
    transform: scale(1.05);
}

.case-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.case-subtitle {
    font-size: 15px;
    color: #666;
}

/* Case Study Content Layout */
.case-study-content {
    display: grid;
    grid-template-columns: minmax(300px, 350px) 1fr;
    gap: 40px;
    align-items: stretch;
    width: 100%;
}

@media (max-width: 968px) {
    .case-study-content {
        grid-template-columns: 1fr;
    }
}

.metrics-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    justify-content: space-between;
}

.metric-card-dark {
    background: linear-gradient(135deg, #1a2332 0%, #2d3748 50%, #1a2332 100%);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid rgba(200, 243, 30, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.metric-card-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(200, 243, 30, 0.15), transparent);
    animation: shimmer 3s infinite;
    z-index: 0;
}

.metric-card-dark > * {
    position: relative;
    z-index: 1;
}

.metric-card-dark:nth-child(1) {
    animation-delay: 0.1s;
}

.metric-card-dark:nth-child(2) {
    animation-delay: 0.2s;
}

.metric-card-dark:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(200, 243, 30, 0.3);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.metric-value-large {
    font-size: 42px;
    font-weight: 700;
    color: #c8f31e;
    margin-bottom: 10px;
    line-height: 1;
}

.metric-label-white {
    font-size: 13px;
    color: #fff;
    line-height: 1.3;
}

/* Results Table */
.results-table {
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    opacity: 0;
    animation: fadeIn 0.8s ease 0.5s forwards;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.results-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 15px;
    align-items: center;
    transition: all 0.3s ease;
    flex: 1;
}

.results-row:not(.results-header-row):hover {
    background-color: rgba(200, 243, 30, 0.05);
    transform: translateX(5px);
}

.results-header-row {
    background: linear-gradient(135deg, #1a2332 0%, #2d3748 50%, #1a2332 100%);
    color: #fff;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.results-header-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(200, 243, 30, 0.15), transparent);
    animation: shimmer 3s infinite;
    z-index: 0;
}

.results-header-row .results-cell {
    position: relative;
    z-index: 1;
}

.results-row:not(.results-header-row) {
    border-bottom: 1px solid #f0f0f0;
}

.results-row:last-child {
    border-bottom: none;
}

.results-cell {
    padding: 18px 20px;
    font-size: 14px;
}

.metric-name-cell {
    font-weight: 600;
    color: #333;
}

.before-cell {
    text-align: center;
    color: #666;
    font-weight: 500;
}

.after-cell {
    text-align: center;
    color: #333;
    font-weight: 600;
    font-size: 15px;
}

.results-header-row .before-cell,
.results-header-row .after-cell {
    color: #fff;
    background-color: transparent;
}

.cell-icon {
    font-size: 16px;
    margin-right: 5px;
}

.cell-title {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive for Results Table */
@media (max-width: 968px) {
    .results-row {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 10px;
    }

    .results-cell {
        padding: 14px 12px;
        font-size: 12px;
    }

    .cell-title {
        font-size: 11px;
    }

    .cell-icon {
        font-size: 14px;
    }

    .metric-name-cell {
        font-size: 12px;
    }

    .after-cell {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .results-row {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 10px;
        font-size: 14px;
    }

    .results-cell {
        padding: 14px 10px;
        font-size: 14px;
    }

    .metric-name-cell {
        font-size: 14px;
        font-weight: 600;
    }

    .before-cell,
    .after-cell {
        font-size: 15px;
        font-weight: 600;
    }

    .cell-icon {
        display: none;
    }

    .cell-title {
        font-size: 13px;
        font-weight: 600;
    }

    .results-header-row {
        background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    }

    .results-row:not(.results-header-row):hover {
        transform: translateX(2px);
    }
}

/* Responsive for Case Study */
@media (max-width: 968px) {
    .success-stories-title-section {
        padding: 60px 0 30px 0;
    }

    .success-stories-title-section .section-title {
        font-size: 32px;
    }

    .case-study-section {
        padding: 50px 0;
    }

    .case-title {
        font-size: 26px;
    }

    .case-subtitle {
        font-size: 14px;
    }

    .case-study-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .metrics-cards {
        gap: 15px;
        flex-direction: row;
    }

    .metric-card-dark {
        flex: 1;
    }

    .metric-value-large {
        font-size: 36px;
    }

    .metric-label-white {
        font-size: 12px;
    }

    .results-table {
        height: auto;
    }
}

@media (max-width: 480px) {
    .success-stories-title-section {
        padding: 50px 0 15px 0;
    }

    .success-stories-title-section .section-title {
        font-size: 26px;
        margin-bottom: 0;
    }

    .case-study-section {
        padding: 40px 0;
    }

    .case-logo {
        max-width: 144px;
    }

    .case-title {
        font-size: 22px;
    }

    .case-subtitle {
        font-size: 13px;
    }

    .case-study-header {
        margin-bottom: 15px;
    }

    .case-study-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .metrics-cards {
        gap: 12px;
        flex-direction: column;
    }

    .metric-card-dark {
        padding: 20px 15px;
        flex: none;
    }

    .metric-value-large {
        font-size: 32px;
    }

    .metric-label-white {
        font-size: 11px;
    }

    .results-table {
        height: auto;
    }
}

/* Benefits Section */
.benefits-section {
    padding: 50px 0;
    background-color: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
    width: 100%;
}

.service-discovery-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-discovery-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card {
    background-color: #fff;
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #c8f31e;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.benefit-number {
    font-size: 40px;
    font-weight: 700;
    color: #c8f31e;
    margin-bottom: 12px;
    opacity: 0.3;
}

.benefit-title {
    font-size: 19px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.benefit-description {
    font-size: 15px;
    line-height: 1.5;
    color: #666;
}

/* FAQ Section */
.faq-section {
    padding: 55px 0;
    background-color: #f8f9fa;
}

.faq-container {
    max-width: 900px;
    margin: 35px auto 0;
}

.faq-item {
    background-color: #fff;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #fff;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-icon {
    color: #c8f31e;
    font-size: 12px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(90deg);
}

.faq-title {
    font-size: 17px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 25px 25px 55px;
}

.faq-answer > * {
    opacity: 0;
    transition: opacity 0.3s ease 0.1s;
}

.faq-item.active .faq-answer > * {
    opacity: 1;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 15px;
}

.faq-answer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-answer ul li {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    padding-left: 20px;
    margin-bottom: 8px;
    position: relative;
}

.faq-answer ul li:before {
    content: "•";
    color: #c8f31e;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* References Section */
.references-section {
    padding: 60px 0;
    background-color: #fff;
}

.references-intro {
    text-align: center;
    margin-bottom: 50px;
}

.references-intro-text {
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

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

.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 35px;
    width: 100%;
}

.reference-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-height: 120px;
}

.reference-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.reference-logo {
    max-width: 250px;
    width: 140%;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
    object-fit: contain;
}

.reference-card:hover .reference-logo {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive for References */
@media (max-width: 968px) {
    .references-section {
        padding: 60px 0;
    }

    .references-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 40px;
    }

    .reference-card {
        padding: 30px 20px;
        min-height: 100px;
    }

    .reference-logo {
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    .references-section {
        padding: 50px 0;
    }

    .references-intro-text {
        font-size: 18px;
        padding: 0 15px;
    }

    .references-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 30px;
    }

    .reference-card {
        padding: 25px 15px;
        min-height: 80px;
    }

    .reference-logo {
        max-width: 150px;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1a2332 0%, #2d3748 50%, #1a2332 100%);
    color: #fff;
    padding: 80px 0 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(200, 243, 30, 0.1), transparent);
    animation: shimmer 3s infinite;
    pointer-events: none;
    z-index: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.footer-left {
    flex: 1;
    max-width: 500px;
}

.footer-title {
    font-size: 48px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 40px;
    color: #fff;
}

.footer-btn {
    display: inline-block;
    background-color: #c8f31e;
    color: #000;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-btn:hover {
    background-color: #b8e00e;
    transform: translateY(-2px);
}

.footer-right {
    flex: 0 0 400px;
}

.footer-contact-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #fff;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.location-icon {
    background-color: rgba(200, 243, 30, 0.15);
    color: #c8f31e;
}

.phone-icon {
    background-color: rgba(200, 243, 30, 0.15);
    color: #c8f31e;
}

.email-icon {
    background-color: rgba(200, 243, 30, 0.15);
    color: #c8f31e;
}


.contact-text {
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
}

.contact-text a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-text a:hover {
    color: #c8f31e;
}

.contact-text a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-text a:hover {
    color: #c8f31e;
}

.footer-bottom {
    background-color: #131c25;
    margin-top: 60px;
    padding: 30px 0;
}

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

.footer-copyright {
    color: #bdc3c7;
    font-size: 14px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 44px;
    height: 44px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.05);
}

.whatsapp-link:hover {
    background-color: #25D366;
    color: #fff;
}

.linkedin-link:hover {
    background-color: #0077B5;
    color: #fff;
}

.instagram-link:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Floating Buttons Container */
.floating-buttons {
    position: fixed;
    bottom: 105px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-button {
    position: relative;
}

.float-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.float-link:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #333;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #333;
}

.float-link:hover .tooltip {
    opacity: 1;
    visibility: visible;
    right: 80px;
}

.whatsapp-float {
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-link {
    background-color: #25d366;
}

.whatsapp-link:hover {
    background-color: #1db954;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.phone-float {
    animation: pulse-phone 2s infinite 0.5s;
}

.phone-link {
    background-color: #007bff;
}

.phone-link:hover {
    background-color: #0056b3;
    box-shadow: 0 6px 25px rgba(0, 123, 255, 0.6);
}

@keyframes pulse-phone {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}

.email-float {
    animation: pulse-email 2s infinite 1s;
}

.email-link {
    background-color: #dc3545;
}

.email-link:hover {
    background-color: #c82333;
    box-shadow: 0 6px 25px rgba(220, 53, 69, 0.6);
}

@keyframes pulse-email {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(220, 53, 69, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .header-container {
        padding: 0 20px;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .nav-menu {
        position: fixed;
        top: 75px;
        left: 0;
        width: 100%;
        max-height: calc(100vh - 75px);
        overflow-y: auto;
        background-color: #fff;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

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

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 30px 20px;
    }

    .nav-list li {
        width: 100%;
        border-bottom: 1px solid #e8e8e8;
    }

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

    .nav-link {
        display: block;
        padding: 18px 20px;
        font-size: 17px;
        font-weight: 600;
        text-align: left;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background-color: #f8f9fa;
        padding-left: 25px;
    }

    .nav-link-contact {
        margin: 20px;
        display: block;
        text-align: center;
        padding: 15px 30px;
        border-radius: 8px;
        font-weight: 600;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        padding: 0;
        width: 100%;
        opacity: 0;
        visibility: hidden;
        margin-top: 0;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        background: linear-gradient(to bottom, #f8f9fa 0%, #f0f1f3 100%);
        border-radius: 0;
    }

    .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 400px;
    }

    .dropdown-content {
        gap: 0;
        padding: 15px 0;
    }

    .dropdown-item {
        padding: 14px 20px 14px 40px;
        font-size: 15px;
        font-weight: 500;
        color: #555;
        border-left: 3px solid transparent;
        transition: all 0.3s ease;
    }

    .dropdown-item:hover {
        background-color: #fff;
        border-left-color: #c8f31e;
        padding-left: 45px;
        color: #333;
    }

    .dropdown-toggle::after {
        content: " ▼";
        font-size: 10px;
        margin-left: 8px;
        display: inline-block;
        transition: transform 0.3s ease;
    }

    .dropdown.active .dropdown-toggle::after {
        transform: rotate(180deg);
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .anasayfa-btn {
        font-size: 18px;
        padding: 10px 25px;
        margin: 5px;
    }

    .section-title {
        font-size: 36px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-container {
        margin-top: 40px;
    }

    .faq-title {
        font-size: 16px;
    }

    .faq-answer p {
        font-size: 14px;
    }

    .contact-form {
        padding: 30px;
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

    .footer-right {
        flex: none;
        width: 100%;
    }

    .footer-title {
        font-size: 36px;
    }

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

    .footer-social {
        order: -1;
    }

    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }

    .float-link {
        width: 50px;
        height: 50px;
    }

    .float-link svg {
        width: 24px;
        height: 24px;
    }

    .tooltip {
        font-size: 12px;
        padding: 6px 10px;
        right: 65px;
    }

    .float-link:hover .tooltip {
        right: 70px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 400px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .anasayfa-btn {
        font-size: 16px;
        padding: 8px 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-description {
        font-size: 16px;
    }

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

    .service-card {
        padding: 30px 20px;
    }

    .contact-form {
        padding: 25px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 14px;
    }

    .submit-btn {
        padding: 15px;
        font-size: 16px;
    }

    .faq-section {
        padding: 50px 0;
    }

    .faq-container {
        margin-top: 30px;
        padding: 0 15px;
    }

    .faq-question {
        padding: 15px 20px;
    }

    .faq-title {
        font-size: 15px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px 50px;
    }

    .faq-answer p {
        font-size: 13px;
    }

    .faq-answer ul li {
        font-size: 13px;
    }

    .footer {
        padding: 60px 0 0 0;
    }

    .footer-container {
        padding: 0 15px;
        gap: 30px;
    }

    .footer-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .footer-btn {
        padding: 12px 30px;
        font-size: 14px;
    }

    .contact-item {
        gap: 12px;
    }

    .contact-icon {
        width: 35px;
        height: 35px;
    }

    .contact-text {
        font-size: 14px;
    }

    .footer-contact-title {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .footer-bottom {
        margin-top: 40px;
        padding: 25px 0;
    }

    .footer-logo img {
        height: 35px;
    }

    .social-link {
        width: 35px;
        height: 35px;
    }

    .social-link svg {
        width: 18px;
        height: 18px;
    }

    .floating-buttons {
        bottom: 15px;
        right: 15px;
    }

    .float-link {
        width: 45px;
        height: 45px;
    }

    .float-link svg {
        width: 22px;
        height: 22px;
    }
}

/* About Section - "Hedef kitlenizle güçlü dijital bağlar kurun" */
.about-intro-section {
    background-color: #f5f5f5;
    padding: 60px 0 60px;
    margin-top: 0;
}

.about-intro-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-intro-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-intro-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
    font-weight: 400;
}

.about-intro-subtitle strong {
    color: #333;
    font-weight: 600;
}

.about-intro-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.about-intro-title::after {
    content: '';
    position: absolute;
    right: -60px;
    top: -20px;
    width: 80px;
    height: 80px;
    background-color: #c8f31e;
    border-radius: 8px;
    z-index: -1;
}

.about-intro-title::before {
    content: '';
    position: absolute;
    right: -80px;
    top: -35px;
    width: 50px;
    height: 50px;
    background-color: #1a1a1a;
    border-radius: 8px;
    z-index: -1;
}

.about-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-intro-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    position: relative;
}

.about-intro-image-large {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
}

.about-intro-image-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}

.about-intro-image-large img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    filter: grayscale(20%);
    transition: all 0.4s ease;
}

.about-intro-image-large:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.about-intro-image-small {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
}

.about-intro-image-small:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}

.about-intro-image-small img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    filter: grayscale(20%);
    transition: all 0.4s ease;
}

.about-intro-image-small:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.about-intro-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background-color: #c8f31e;
    border-radius: 50%;
    z-index: 10;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.about-intro-text {
    padding-left: 20px;
}

.about-intro-description {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    font-weight: 400;
}

/* Services Discovery Section - "Dijital pazarlama hizmetlerimizi keşfedin" */
.services-discovery-section {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.services-discovery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.services-discovery-header {
    margin-bottom: 60px;
}

.services-discovery-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 20px;
    max-width: 600px;
}

.services-discovery-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    max-width: 600px;
}

.services-discovery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-discovery-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 35px 30px;
    transition: all 0.3s ease;
    border: 1px solid #e5e5e5;
    position: relative;
}

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

.service-discovery-card.featured {
    background-color: #1a1a1a;
    color: #fff;
    grid-column: span 1;
}

.service-discovery-icon {
    width: 60px;
    height: 60px;
    background-color: #c8f31e;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-discovery-card.featured .service-discovery-icon {
    background-color: #c8f31e;
}

.service-discovery-icon svg {
    width: 32px;
    height: 32px;
}

.service-discovery-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-discovery-card.featured .service-discovery-card-title {
    color: #c8f31e;
}

.service-discovery-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-discovery-list li {
    font-size: 15px;
    color: #666;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
}

.service-discovery-card.featured .service-discovery-list li {
    color: #d0d0d0;
}

.service-discovery-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #c8f31e;
    font-weight: 600;
}

.service-discovery-accent {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 60px;
    height: 60px;
    background-color: #1a1a1a;
    border-radius: 8px;
    z-index: -1;
}

.service-discovery-card:nth-child(2) .service-discovery-accent {
    background-color: #c8f31e;
}

.service-discovery-card:nth-child(4) .service-discovery-accent {
    background-color: #1a1a1a;
}

/* Responsive Styles for New Sections */
@media (max-width: 1024px) {
    .about-intro-title {
        font-size: 40px;
    }
    
    .services-discovery-title {
        font-size: 40px;
    }
    
    .services-discovery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-intro-section {
        padding: 60px 0 40px;
    }
    
    .about-intro-container {
        padding: 0 20px;
    }
    
    .about-intro-title {
        font-size: 32px;
    }
    
    .about-intro-title::after,
    .about-intro-title::before {
        display: none;
    }
    
    .about-intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-intro-images {
        order: 2;
    }
    
    .about-intro-text {
        order: 1;
        padding-left: 0;
    }
    
    .about-intro-description {
        font-size: 16px;
    }
    
    .services-discovery-section {
        padding: 60px 0;
    }
    
    .services-discovery-container {
        padding: 0 20px;
    }
    
    .services-discovery-title {
        font-size: 32px;
    }
    
    .services-discovery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-discovery-card {
        padding: 30px 25px;
    }
}

/* Work Process Section - "Çalışma süreçlerimiz" */
.work-process-section {
    background-color: #fff;
    padding: 80px 0;
}

.work-process-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.work-process-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.work-process-left {
    position: sticky;
    top: 120px;
}

.work-process-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 25px;
}

.work-process-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.work-process-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.work-process-stat-item {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #f5f5f5 0%, #fff 100%);
    border-radius: 12px;
    border: 2px solid #e5e5e5;
    transition: all 0.3s ease;
}

.work-process-stat-item:hover {
    border-color: #c8f31e;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.work-process-stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #c8f31e;
    margin-bottom: 8px;
}

.work-process-stat-label {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.work-process-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.work-process-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.work-process-feature svg {
    flex-shrink: 0;
}

.work-process-badge {
    width: 180px;
    height: 180px;
    background-color: #c8f31e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
}

.work-process-badge-text {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotate 20s linear infinite;
}

.work-process-badge-text text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
    fill: #1a1a1a;
}

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

.work-process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.work-process-step {
    background-color: #fff;
    border-radius: 16px;
    padding: 35px;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid #e5e5e5;
}

.work-process-step:hover {
    border-color: #c8f31e;
    transform: translateX(10px);
}

.work-process-step.featured {
    background-color: #1a1a1a;
    color: #fff;
}

.work-process-step-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.work-process-step-number {
    font-size: 48px;
    font-weight: 700;
    color: #c8f31e;
    line-height: 1;
}

.work-process-step-title {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
}

.work-process-step.featured .work-process-step-title {
    color: #fff;
}

.work-process-step-description {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    padding-left: 68px;
}

.work-process-step.featured .work-process-step-description {
    color: #d0d0d0;
}

.work-process-step-image {
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 120px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    opacity: 0.3;
}

.work-process-step.featured .work-process-step-image {
    opacity: 0.2;
}

.work-process-step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Blog Section */
.blog-section {
    background-color: #f5f5f5;
    padding: 80px 0;
}

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

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.blog-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0;
}

.blog-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background-color: #c8f31e;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.blog-all-btn:hover {
    background-color: #b8e00e;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(200, 243, 30, 0.3);
}

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

.blog-card {
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e5e5e5;
}

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

.blog-card-content {
    padding: 30px;
}

.blog-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 20px;
    min-height: 56px;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    padding: 12px 24px;
    background-color: #c8f31e;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.blog-card-link:hover {
    background-color: #1a1a1a;
    color: #c8f31e;
}

.blog-card-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.blog-card-link:hover svg {
    transform: translateX(5px);
}

/* Responsive Styles for New Sections */
@media (max-width: 1024px) {
    .work-process-title,
    .blog-title {
        font-size: 40px;
    }
    
    .work-process-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .work-process-left {
        position: static;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .work-process-section,
    .blog-section {
        padding: 60px 0;
    }
    
    .work-process-container,
    .blog-container {
        padding: 0 20px;
    }
    
    .work-process-title,
    .blog-title {
        font-size: 32px;
    }
    
    .work-process-badge {
        width: 140px;
        height: 140px;
    }
    
    .work-process-step {
        padding: 25px;
    }
    
    .work-process-step-number {
        font-size: 36px;
    }
    
    .work-process-step-title {
        font-size: 18px;
    }
    
    .work-process-step-description {
        padding-left: 0;
        margin-top: 15px;
    }
    
    .work-process-step-image {
        display: none;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-card-title {
        min-height: auto;
    }
    
    /* Work Process Content Responsive */
    .work-process-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .work-process-left {
        position: static;
    }
    
    .work-process-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* About Intro Images Responsive */
    .about-intro-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-intro-images {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-intro-image-large img,
    .about-intro-image-small img {
        height: 350px;
    }
    
    /* Blog Header Responsive */
    .blog-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    /* Services Discovery Responsive */
    .services-discovery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .work-process-stats {
        grid-template-columns: 1fr;
    }
    
    .work-process-stat-number {
        font-size: 28px;
    }
    
    .work-process-stat-label {
        font-size: 12px;
    }
    
    .about-intro-title {
        font-size: 28px;
    }
    
    .about-intro-subtitle {
        font-size: 14px;
    }
    
    .about-intro-description {
        font-size: 16px;
    }
    
    .about-intro-image-large img,
    .about-intro-image-small img {
        height: 280px;
    }
    
    .about-intro-accent {
        width: 80px;
        height: 80px;
        bottom: -30px;
        right: -30px;
    }
    
    .work-process-title {
        font-size: 28px;
    }
    
    .work-process-description {
        font-size: 14px;
    }
    
    .blog-title {
        font-size: 28px;
    }
    
    .blog-all-btn {
        padding: 10px 24px;
        font-size: 14px;
    }
    
    .services-discovery-title {
        font-size: 28px;
    }
    
    .service-discovery-card-title {
        font-size: 18px;
    }
}
