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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    background-color: #f5f5f5;
}

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

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

.logo {
    font-size: 0; /* Metni gizle */
    display: inline-block;
    width: 200px;
    height: 60px;
    background-image: url('https://rankzup.com/wp-content/uploads/2024/03/rankzlogo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}



.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

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

.nav-menu a:hover {
    color: #c8f31e;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 10px;
}

.login-btn {
    background-color: transparent;
    border: 2px solid #333;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}

.login-btn:hover {
    background-color: #333;
    color: #fff;
}

/* Hero Section */
.hero-section {
    margin-top: 80px;
    height: 500px;
    background-color: #4a4a4a;
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://rankzup.com/wp-content/uploads/2024/08/rankzup-home-footer-1.jpg');
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

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

.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;
}

.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;
}

/* Bottom Bar */
.bottom-bar {
    background-color: #c8f31e;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.bottom-bar-text {
    color: #333;
    font-size: 22px;
    font-weight: 500;
    text-align: center;
}

.star-icon {
    position: absolute;
    right: 50px;
    font-size: 24px;
    color: #333;
}

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

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

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

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

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: #666;
    margin-bottom: 60px;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.stats-column {
    flex: 1;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.start-column {
    background-color: #fff;
}

.end-column {
    background-color: #c8f31e;
}

.column-title {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.start-column .column-title {
    color: #333;
}

.end-column .column-title {
    color: #333;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

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

.stat-label {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
}

.start-column .stat-value {
    color: #333;
}

.end-column .stat-value {
    color: #333;
}

.arrow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
}

.arrow {
    width: 100%;
    height: 50px;
    animation: moveArrow 2s ease-in-out infinite;
}

@keyframes moveArrow {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
}

/* Metrics Section */
.metrics-section {
    padding: 80px 0;
    background-color: #fff;
}

.metrics-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.metrics-icon {
    width: 60px;
    height: 60px;
    background-color: #333;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metrics-title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

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

.metric-card {
    background-color: #f8f9fa;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.metric-card.highlighted {
    border: 2px solid #333;
    background-color: #fff;
}

.metric-value {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.metric-label {
    font-size: 18px;
    color: #666;
    font-weight: 500;
}

@media (max-width: 768px) {
    .performance-images-section {
        padding: 40px 0;
    }
    
    .metrics-grid-updated {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
    
    .metric-value-updated {
        font-size: 2rem; /* 2.5rem'den 2rem'e */
    }
    
    .metric-label-updated {
        font-size: 0.9rem; /* Label boyutunu küçülttük */
    }
    
    .metric-card-updated {
        padding: 25px 15px; /* Padding'i küçülttük */
    }
    
    .metrics-header-updated {
        flex-direction: column;
        gap: 15px;
    }
    
    .metrics-title-updated {
        font-size: 1.5rem;
        text-align: center;
    }
}

/* Mobile Responsive for Transformation Section */
@media (max-width: 968px) {
    .stats-container {
        flex-direction: column;
        gap: 30px;
    }

    .arrow-container {
        transform: rotate(90deg);
        width: 50px;
        margin: 20px 0;
    }

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

    .section-subtitle {
        font-size: 18px;
        padding: 0 20px;
    }

    .stats-column {
        width: 100%;
        padding: 30px 20px;
    }

    .stat-value {
        font-size: 20px;
    }

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

@media (max-width: 480px) {
    .section-title {
        font-size: 28px;
    }

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

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

    .stat-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* Mobile Responsive for Metrics Section */
@media (max-width: 968px) {
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .metrics-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .metrics-title {
        font-size: 32px;
        text-align: center;
    }
    
    .metric-card {
        padding: 30px 20px;
    }
    
    .metric-value {
        font-size: 36px;
    }
    
    .metric-label {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .metrics-section {
        padding: 60px 0;
    }
    
    .metrics-title {
        font-size: 26px;
    }
    
    .metric-value {
        font-size: 32px;
    }
    
    .metric-card {
        padding: 25px 15px;
    }
    
    .metrics-icon {
        width: 50px;
        height: 50px;
    }
    
    .metrics-icon svg {
        width: 30px;
        height: 30px;
    }
}

/* Charts Section */
.charts-section {
    padding: 80px 0;
    background-color: #1a1a1a;
    color: #fff;
}

.charts-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #fff;
}

.chart-container {
    background-color: #2a2a2a;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

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

.chart-name {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.chart-legend {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #999;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
}

.chart-wrapper {
    position: relative;
    height: 300px;
    margin-bottom: 30px;
}

.chart-highlight {
    background-color: #333;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    border: 1px solid #444;
    max-width: 300px;
    margin: 0 auto;
}

.highlight-date {
    font-size: 14px;
    color: #999;
    margin-bottom: 5px;
}

.highlight-value {
    font-size: 36px;
    font-weight: 700;
    color: #f59e0b;
    margin-bottom: 5px;
}

.highlight-label {
    font-size: 16px;
    color: #ccc;
}

.chart-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-box {
    background-color: #333;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    border: 1px solid #444;
}

.stat-position {
    font-size: 14px;
    color: #999;
    margin-bottom: 10px;
}

.stat-count {
    font-size: 24px;
    font-weight: 700;
    color: #f59e0b;
}

/* Mobile Responsive for Charts */
@media (max-width: 968px) {
    .charts-title {
        font-size: 32px;
    }
    
    .chart-container {
        padding: 30px 20px;
    }
    
    .chart-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .chart-wrapper {
        height: 250px;
    }
    
    .chart-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-box {
        padding: 15px;
    }
    
    .stat-count {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .charts-section {
        padding: 60px 0;
    }
    
    .charts-title {
        font-size: 26px;
        margin-bottom: 40px;
    }
    
    .chart-container {
        padding: 20px 15px;
        margin-bottom: 30px;
    }
    
    .chart-name {
        font-size: 20px;
    }
    
    .chart-wrapper {
        height: 200px;
        margin-bottom: 20px;
    }
    
    .legend-item {
        font-size: 12px;
    }
    
    .highlight-value {
        font-size: 28px;
    }
    
    .chart-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .stat-box {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .stat-position {
        margin-bottom: 0;
    }
}
/* Flexbox ile yan yana düzenleme */
@media (min-width: 1200px) {
    .charts-section .container > h2 {
        width: 100%;
    }
    
    .charts-section .container {
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
        max-width: 1400px;
    }
    
    .charts-section .chart-container {
        flex: 1;
        min-width: 0;
        margin-bottom: 0;
    }
}

/* Client Stories Section */
.client-stories-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.stories-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 60px;
}

.story-card {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    min-height: 400px;
}

.story-left {
    flex: 1;
    background-color: #e5e5e5;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.growth-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 300px;
}

.growth-card {
    background-color: #2a2a2a;
    color: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.growth-percentage {
    font-size: 36px;
    font-weight: 700;
    color: #c8f31e;
    margin-bottom: 10px;
}

.growth-metric {
    font-size: 14px;
    color: #fff;
    margin-bottom: 5px;
    line-height: 1.4;
}

.growth-detail {
    font-size: 12px;
    color: #ff6b6b;
    opacity: 0.8;
}

.story-right {
    flex: 1.5;
    padding: 60px;
    display: flex;
    align-items: center;
}

.story-content {
    max-width: 600px;
}

.client-info {
    margin-bottom: 30px;
}

.client-url {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #666;
    background-color: #f5f5f5;
    padding: 10px 20px;
    border-radius: 25px;
}

.story-text {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.story-text p {
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .story-card {
        flex-direction: column;
    }
    
    .story-left {
        padding: 30px;
    }
    
    .story-right {
        padding: 40px 30px;
    }
    
    .growth-cards {
        max-width: 100%;
    }
    
    .growth-card {
        padding: 20px;
    }
    
    .growth-percentage {
        font-size: 28px;
    }
    
    .stories-title {
        font-size: 32px;
    }
}

/* Performance Images Section */
.performance-images-section {
    padding: 60px 0;
    background-color: #1a1a1a; /* Charts section ile aynı arkaplan */
}

.performance-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

@media (max-width: 768px) {
    .performance-images-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.performance-image-card {
    background-color: #1a1a1a; /* Arkaplan görsellerle uyumlu */
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 1px solid #333;
}

.performance-img {
    width: 100%;
    height: auto;
    display: block;
    background-color: #1a1a1a; /* Görselin kendi arkaplanı */
}

/* Updated Metrics Section */
.metrics-section-updated {
    padding: 60px 0;
    background-color: #1a1a1a; /* Ana arkaplan ile uyumlu */
    border-top: 1px solid #333;
}

.metrics-header-updated {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.metrics-icon-updated {
    padding: 15px;
    background-color: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #c8f31e;
}

.metrics-title-updated {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.metrics-grid-updated {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.metric-card-updated {
    background-color: #1a1a1a; /* Ana arkaplan ile aynı */
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 2px solid #c8f31e;
    transition: all 0.3s ease;
}

.metric-card-updated:hover {
    border-color: #f59e0b;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(200, 243, 30, 0.2);
}

.metric-value-updated {
    font-size: 3rem;
    font-weight: 700;
    color: #c8f31e;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(200, 243, 30, 0.3);
}

.metric-label-updated {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .performance-images-section {
        padding: 40px 0;
    }
    
    .metrics-grid-updated {
        grid-template-columns: 1fr;
    }
    
    .metric-value-updated {
        font-size: 2.5rem;
    }
    
    .metrics-header-updated {
        flex-direction: column;
        gap: 15px;
    }
    
    .metrics-title-updated {
        font-size: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .metrics-grid-updated {
        grid-template-columns: 1fr; /* Çok küçük ekranlarda tek sütun */
    }
    
    .metric-card-updated {
        padding: 20px 10px;
    }
    
    .metric-value-updated {
        font-size: 1.8rem;
    }
    
    .metric-label-updated {
        font-size: 0.85rem;
    }
}

/* Case Study Header Styles */
.case-study-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.case-study-logo {
    max-width: 200px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    text-align: center;
}

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

/* Section title'ın margin'ini ayarla */
.transformation-section .section-title {
    margin-bottom: 0; /* Önceki margin-bottom: 10px; yerine */
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .case-study-header {
        gap: 15px;
    }
    
    .case-study-logo {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .case-study-header {
        gap: 10px;
    }
    
    .case-study-logo {
        max-width: 120px;
    }
}

/* Performance Images Grid */
.performance-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Desktop: 50% 50% */
    gap: 40px;
    margin-top: 40px;
}

.performance-image-card {
    background-color: #2a2a2a;
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 1px solid #444;
    transition: all 0.3s ease;
}

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

.performance-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .performance-images-grid {
        grid-template-columns: 1fr; /* Mobile: alt alta */
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .performance-images-grid {
        gap: 20px;
        margin-top: 30px;
    }
    
    .performance-image-card {
        border-radius: 12px;
    }
    
    .performance-img {
        border-radius: 12px;
    }
}

/* Footer Styles */
.footer {
    background-color: #11171e;
    color: #fff;
    padding: 80px 0 0 0;
}

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

/* Sol Taraf */
.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);
}

/* Sağ Taraf */
.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;
}

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

/* Alt Bölüm */
.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: 40px;
    height: 40px;
    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 {
    background-color: #c8f31e;
    transform: translateY(-2px);
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .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;
    }
}

@media (max-width: 480px) {
    .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 Container */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Base Float Button Style */
.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 Styles */
.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 Button */
.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 Button */
.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 Button */
.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: 768px) {
    .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) {
    .floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
    
    .float-link {
        width: 45px;
        height: 45px;
    }
    
    .float-link svg {
        width: 22px;
        height: 22px;
    }
    
    /* Mobile'da tooltip'leri gizle */
    .tooltip {
        display: none;
    }
}

/* Müşterilerimiz Section */
.clients-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.clients-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 60px;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: center;
}

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

.client-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.client-logo {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

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

/* Mobile Responsive */
@media (max-width: 1024px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .clients-section {
        padding: 60px 0;
    }
    
    .clients-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .client-item {
        padding: 30px 20px;
        min-height: 100px;
    }
    
    .client-logo {
        max-height: 50px;
    }
}

@media (max-width: 480px) {
    .clients-section {
        padding: 40px 0;
    }
    
    .clients-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .client-item {
        padding: 25px 15px;
        min-height: 80px;
    }
    
    .client-logo {
        max-height: 40px;
    }
}