/* Top Banner Styles */
.top-banner {
    background-color: #1a1a1a;
    width: 100%;
    border-top: 1px solid transparent;
    border-image: linear-gradient(to right, #ff6b6b, #4ecdc4, #45b7d1, #f9ca24, #6c5ce7) 1 0 0 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.banner-text {
    font-size: 14px;
    color: #ffffff;
}

.timer {
    display: flex;
    align-items: center;
    gap: 5px;
}

.time-box {
    background-color: #333;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 14px;
}

.time-text {
    color: #666;
    font-size: 12px;
    margin-right: 10px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-number {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.phone-number:hover {
    color: #4da3ff;
}

.call-button {
    color: #4da3ff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.call-button:hover {
    color: #ffffff;
}

/* Main Header Styles */
.main-header {
    padding: 15px 0;
    background: #1a1a1a;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    position: relative;
}

.header-city-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 150px;
    height: 50px;
    object-fit: cover;
    z-index: 1;
}

.navbar-brand img {
    height: 40px;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Badge Styles */
.nav-item-container {
    position: relative;
    margin-top: 10px;
    display: flex;
    align-items: center;
}

.seo-badge, .discount-badge {
    position: absolute;
    top: -15px;
    left: 16px;
    color: white;
    font-size: 11px;
    padding: 1px 8px;
    border-radius: 3px;
    font-weight: 500;
    line-height: 1.5;
    z-index: 1;
}

.seo-badge {
    background-color: #00A3FF;
}

.discount-badge {
    background-color: #e91e63;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    font-weight: 500;
    padding: 8px 16px !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #4da3ff;
}

/* Dropdown Menu Styles */
.dropdown-toggle {
    color: #ffffff !important;
}

.dropdown-toggle:focus,
.dropdown-toggle:active,
.dropdown-toggle.show {
    color: #ffffff !important;
    background: transparent !important;
}

.dropdown-menu {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px 0;
    margin-top: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.dropdown-item {
    color: #ffffff;
    padding: 10px 20px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: rgba(77, 163, 255, 0.1);
    color: #4da3ff;
}

/* Diğer menü öğeleri için düzeltme */
.nav-item:not(:first-child) .nav-link {
    margin-top: 0;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Button Styles */
.header-buttons .btn {
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 6px;
    font-size: 14px;
    position: relative;
}

.header-buttons .btn-outline-primary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.header-buttons .btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.header-buttons .btn-dark {
    background: #ffffff;
    border: none;
    color: #1a1a1a;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.header-buttons .btn-dark:hover {
    background: #f0f0f0;
    color: #1a1a1a;
    transform: translateY(-1px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.header-buttons .btn:active {
    transform: translateY(1px);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .top-banner .container > div {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 15px 0;
    }
    
    .banner-text {
        width: 100%;
        text-align: center;
    }
    
    .contact-info {
        width: 100%;
        justify-content: center;
        margin-top: 0;
    }
    
    .navbar-nav {
        margin: 15px 0;
    }
    
    .header-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .header-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .banner-text {
        font-size: 13px;
        padding: 0 15px;
    }
    
    .timer {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 10px;
    }
}

/* Hero Section Styles */
.hero-section {
    padding: 60px 0;
    background-color: #fff;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: auto;
    z-index: 1;
}

.hero-content {
    max-width: 700px;
    text-align: left;
    position: relative;
    z-index: 2;
}

.award-badge {
    display: inline-flex;
    align-items: center;
    background-color: #f8f9fa;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    color: #333;
    margin-bottom: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.award-badge:hover {
    background-color: #e9ecef;
    transform: translateY(-1px);
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* Search Input Container */
.search-input-container {
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.search-input-container .input-group {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px dashed #0d6efd;
    border-radius: 12px;
    padding: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.15);
}

.search-input-container .input-group:focus-within {
    border-color: #0d6efd;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.15);
}

.search-input-container .input-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    color: #666;
}

.search-input-container .input-icon i {
    font-size: 20px;
}

.search-input-container .search-input {
    border: none;
    padding: 12px 16px;
    font-size: 15px;
    background: transparent;
    flex: 1;
}

.search-input-container .search-input:focus {
    outline: none;
    box-shadow: none;
}

.search-input-container .search-input::placeholder {
    color: #999;
    font-size: 14px;
}

.search-input-container .usage-limit {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: transparent;
    border-radius: 8px;
    color: #666;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    margin-right: 4px;
}

.search-input-container .usage-limit i {
    font-size: 16px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.search-input-container .limit-text {
    font-size: 13px;
    letter-spacing: 0.5px;
}

/* Custom Captcha */
.custom-captcha {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding: 16px;
    background: #fff;
    border: 1px dashed #0d6efd;
    border-radius: 12px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
}

.custom-captcha:focus-within {
    border-color: #0d6efd;
    background: #fff;
}

.captcha-question {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.captcha-question i {
    font-size: 24px;
    color: #0d6efd;
}

.question-text {
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.question-text strong {
    color: #0d6efd;
    font-size: 18px;
    padding: 2px 8px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 6px;
    margin: 0 2px;
}

.captcha-input {
    width: 96px;
    padding: 10px 16px;
    border: 1px dashed #0d6efd;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.captcha-input:focus {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.captcha-input::placeholder {
    color: #999;
    font-weight: 400;
}

/* Rank Result Styles */
.rank-result {
    background: #fff;
    border: 2px solid #0d6efd;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.1);
}

.result-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e9ecef;
}

.result-header i {
    font-size: 32px;
    color: #0d6efd;
}

.result-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2d2d2d;
    margin: 0;
}

.result-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
}

.result-item.highlight {
    background: linear-gradient(135deg, #0d6efd 0%, #0143a3 100%);
    color: white;
    padding: 20px;
}

.result-label {
    font-size: 14px;
    font-weight: 500;
    color: #666;
}

.result-item.highlight .result-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

.result-value {
    font-size: 15px;
    font-weight: 600;
    color: #2d2d2d;
}

.result-rank {
    font-size: 28px;
    font-weight: 700;
    color: white;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.hero-buttons button {
    cursor: pointer;
}

.hero-buttons button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.hero-buttons .btn {
    padding: 12px 24px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
    background-color: #0d6efd;
    border: none;
    color: white;
}

.hero-buttons .btn-outline {
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #333;
}

.hero-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Grid Styles */
.hero-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 16px;
    height: 600px;
}

.grid-item {
    background-color: #f8f9fa;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Üst satır için özel genişlikler */
.grid-item:first-child {
    grid-column: span 2;
}

/* Alt satır için özel genişlikler */
.grid-item:nth-last-child(2) {
    grid-column: span 1;
}

.grid-item:last-child {
    grid-column: span 2;
}

.grid-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.grid-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Lightning Item */
.lightning {
    background-color: #faff00;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightning-icon {
    font-size: 32px;
    font-weight: bold;
    color: #333;
}

/* Chart Item */
.chart {
    grid-column: 1 / 2;
    background-color: #fff;
    padding: 20px;
}

.chart-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.chart-header {
    margin-bottom: 16px;
}

.chart-value {
    display: block;
    font-size: 24px;
    font-weight: 600;
    margin: 8px 0;
}

.chart-percentage {
    color: #00c853;
    font-size: 14px;
    font-weight: 500;
}

.chart-graph {
    flex-grow: 1;
    background: linear-gradient(to top right, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.chart-graph::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top right, #2196f3 0%, #90caf9 100%);
    clip-path: polygon(0 100%, 20% 65%, 40% 80%, 60% 20%, 80% 45%, 100% 0%, 100% 100%);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }

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

    .hero-grid {
        height: 500px;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 40px 0;
    }

    .hero-content h1 {
        font-size: 36px;
    }

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

    .hero-grid {
        height: 400px;
        gap: 8px;
    }
}

/* Advantages Section */
.advantages-section {
    padding: 100px 0;
    background-color: #fff;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.advantage-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    transition: all 0.3s ease;
}

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

.advantage-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 16px;
}

.advantage-card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.6;
}

.card-image {
    margin: 24px 0;
    border-radius: 12px;
    overflow: hidden;
    min-height: 200px;
}

/* İhracat Örneği Kartı */
.card-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Destek Chat Kartı */
.support-chat {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    gap: 16px;
}

.chat-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.chat-content p {
    margin: 0;
    font-size: 14px;
    color: #333;
}

.chat-time {
    font-size: 12px;
    color: #666;
    display: block;
    margin-top: 8px;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .advantages-section {
        padding: 60px 0;
    }

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

    .advantage-card {
        margin-bottom: 30px;
    }
}

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

    .advantage-card {
        padding: 24px;
    }
}

/* Trial Button Container */
.col-lg-4.text-lg-end.text-center {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    margin-top: auto;
}

@media (max-width: 991.98px) {
    .col-lg-4.text-lg-end.text-center {
        justify-content: center;
        margin-top: 30px;
    }
}

/* Trial Button */
.btn-trial {
    background: linear-gradient(45deg, #4C1D95 0%, #6D28D9 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 16px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(109, 40, 217, 0.2);
}

.btn-trial:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(109, 40, 217, 0.3);
    color: white;
    background: linear-gradient(45deg, #5B21B6 0%, #7C3AED 100%);
}

.trial-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.btn-trial:hover .trial-icon {
    transform: translateX(4px);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(to right, #f8f9fa, #fff);
}

/* Sol Kart Stilleri */
.stats-card.black-card {
    background-color: #000;
    color: #fff;
    padding: 48px;
    border-radius: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.stats-card.black-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1));
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.wb-logo {
    position: relative;
    z-index: 1;
}

.wb-logo img {
    height: 24px;
    margin-bottom: 48px;
    filter: brightness(0) invert(1);
}

.stats-card h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.stats-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background-color: #FF6B4E;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    width: fit-content;
    position: relative;
    z-index: 1;
}

.service-btn:hover {
    background-color: #ff5335;
    transform: translateY(-2px);
    color: #fff;
}

/* Sağ İstatistikler Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    height: 100%;
}

.stat-item {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    height: 100%;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.stat-item:first-child {
    grid-column: 1 / -1;
}

.stat-content {
    position: relative;
    padding-right: 80px; /* İkon için yer açıyoruz */
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 12px;
    line-height: 1;
}

.stat-number sup {
    font-size: 20px;
    color: #FF6B4E;
    margin-left: 2px;
}

.stat-text {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
    max-width: 80%;
}

.stat-icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.stat-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .stats-section {
        padding: 60px 0;
    }

    .stats-card.black-card {
        margin-bottom: 30px;
        padding: 32px;
        min-height: auto;
    }

    .stats-card h2 {
        font-size: 36px;
    }

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

    .stat-item {
        padding: 24px;
    }

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

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

    .stats-card h2 {
        font-size: 32px;
    }

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

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

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

.hosting-section .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 20px;
}

.hosting-section .section-title span {
    color: #1e40af;
}

.hosting-section .section-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
  
}

.fw-medium {
    font-weight: 500;
    color: #2d2d2d;
}

/* Hosting Tabs */
.hosting-tabs {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-right: 30px;
}

.hosting-tab {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.hosting-tab::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hosting-tab:hover::before, 
.hosting-tab.active::before {
    border-color: #1e40af;
}

.hosting-tab:hover, 
.hosting-tab.active {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.1);
}

.tab-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tab-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tab-content {
    flex-grow: 1;
}

.tab-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 6px;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 1px;
    margin-bottom: 4px;
}

.currency {
    font-size: 18px;
    font-weight: 500;
    color: #2d2d2d;
}

.amount {
    font-size: 22px;
    font-weight: 700;
    color: #2d2d2d;
}

.period {
    font-size: 13px;
    color: #666;
    margin-left: 2px;
}

.discount {
    font-size: 12px;
    color: #FF6B4E;
    font-weight: 500;
}

/* Hosting Details */
.hosting-details {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 40px;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

.details-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 12px;
}

.details-header h3 span {
    color: #1e40af;
}

.details-header p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 90%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.feature-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-item i {
    font-size: 20px;
    color: #1e40af;
    opacity: 0.8;
    background: rgba(30, 64, 175, 0.1);
    padding: 12px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.feature-item:hover i {
    transform: scale(1.05);
    opacity: 1;
    background: rgba(30, 64, 175, 0.15);
}

.feature-content {
    display: flex;
    flex-direction: column;
}

.feature-value {
    font-size: 20px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 2px;
}

.feature-label {
    font-size: 13px;
    color: #666;
}

.details-footer {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}

.btn-add-cart {
    background: #1e40af;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-add-cart:hover {
    background: #1e3a8a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
}

.btn-view-all {
    color: #666;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 12px 24px;
    transition: color 0.3s ease;
}

.btn-view-all:hover {
    color: #1e40af;
}

.tech-stack {
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.tech-stack:hover {
    opacity: 0.8;
}

.tech-stack img {
    height: 30px;
    width: auto;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .hosting-section {
        padding: 60px 0;
    }

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

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

    .details-footer {
        flex-direction: column;
    }

    .tech-stack {
        flex-wrap: wrap;
        justify-content: center;
    }
}

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

    .hosting-tab {
        padding: 16px;
    }

    .hosting-details {
        padding: 24px;
    }
}

/* E-Ticaret Section */
.ecommerce-section {
    padding: 35px 0;
    background-color: #fff;
    overflow: hidden;
}

.ecommerce-image {
    position: relative;
}

.ecommerce-image::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background-color: #FFF1F0;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.ecommerce-image img {
    position: relative;
    z-index: 1;
    max-width: 60%;
    height: auto;
}

.ecommerce-content {
    padding-left: 40px;
}

.ecommerce-title {
    font-size: 42px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 20px;
    line-height: 1.2;
}

.ecommerce-title .highlight {
    color: #FF6B4E;
    display: block;
}

.ecommerce-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.ecommerce-cards .row {
    margin: -12px;
}

.ecommerce-cards .col-md-4 {
    padding: 12px;
}

.ecommerce-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.ecommerce-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.ecommerce-card .card-image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}

.ecommerce-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 12px;
}

.ecommerce-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .ecommerce-section {
        padding: 60px 0;
    }

    .ecommerce-content {
        padding-left: 0;
        margin-top: 40px;
        text-align: center;
    }

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

    .ecommerce-image::before {
        width: 400px;
        height: 400px;
    }
}

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

    .ecommerce-image::before {
        width: 300px;
        height: 300px;
    }

    .ecommerce-card {
        margin-bottom: 20px;
    }
}

/* Footer Styles */
.footer {
    padding: 80px 0 40px;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Footer Menu */
.footer-menu {
    padding-bottom: 60px;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.footer h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 24px;
}

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

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: #1e40af;
}

/* Badges */
.badge-yeni,
.badge-populer {
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
    font-weight: 500;
}

.badge-yeni {
    background-color: #22c55e;
    color: white;
}

.badge-populer {
    background-color: #eab308;
    color: white;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 60px;
}

.footer-brand {
    margin-bottom: 30px;
}

.footer-logo {
    height: 80px;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.footer-certificates {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.footer-certificates img {
    height: 40px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-certificates img:hover {
    opacity: 1;
}

/* Newsletter */
.newsletter {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
}

.newsletter h5 {
    font-size: 18px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 20px;
}

.newsletter-form .input-group {
    margin-bottom: 16px;
}

.newsletter-form .form-control {
    padding: 12px 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 14px;
}

.newsletter-form .btn-primary {
    background: #1e40af;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
}

.newsletter-form .form-check-label {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

/* Footer Copyright */
.footer-copyright {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.copyright-text {
    font-size: 14px;
    color: #666;
    margin: 0 0 12px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #1e40af;
}

.footer-links span {
    color: #666;
    font-size: 12px;
}

/* Footer Social */
.footer-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.footer-social a {
    color: #666;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    color: #1e40af;
    transform: translateY(-2px);
}

/* Language Selector */
.language-selector {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    cursor: pointer;
    margin-left: 16px;
    transition: all 0.3s ease;
}

.language-selector:hover {
    background: #f8f9fa;
}

.language-selector img {
    width: 30px;
    height: auto;
}

.language-selector span {
    font-size: 14px;
    color: #2d2d2d;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .footer {
        padding: 60px 0 30px;
    }

    .footer-menu {
        padding-bottom: 40px;
        margin-bottom: 40px;
    }

    .footer-menu .col-lg {
        margin-bottom: 30px;
    }

    .footer-social {
        justify-content: center;
        margin-top: 30px;
    }

    .footer-copyright .row > div {
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .footer-certificates {
        flex-wrap: wrap;
        justify-content: center;
    }

    .newsletter {
        padding: 20px;
    }

    .language-selector {
        margin-left: 0;
        margin-top: 16px;
    }
}

/* Application Form Styles */
.application-form {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 32px;
    margin-top: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.application-form .form-control,
.application-form .form-select {
    padding: 12px 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.application-form .form-control:focus,
.application-form .form-select:focus {
    border-color: #1e40af;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.application-form textarea.form-control {
    resize: none;
}

.application-form .form-check {
    margin: 16px 0;
}

.application-form .form-check-label {
    font-size: 13px;
    color: #666;
}

.application-form .form-check-input:checked {
    background-color: #1e40af;
    border-color: #1e40af;
}

.application-form .btn-primary {
    width: 100%;
    padding: 14px;
    font-weight: 500;
    font-size: 16px;
    background: #1e40af;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.application-form .btn-primary:hover {
    background: #1e3a8a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
}

@media (max-width: 991.98px) {
    .application-form {
        padding: 24px;
        margin-top: 24px;
    }
}

@media (max-width: 767.98px) {
    .application-form {
        padding: 20px;
        margin-top: 20px;
    }
    
    .application-form .btn-primary {
        font-size: 14px;
        padding: 12px;
    }
}

/* Apply Hero Section Styles */
.apply-hero-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa, #fff);
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.apply-content {
    max-width: 900px;
    margin: 0 auto;
}

.apply-title {
    font-size: 36px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 16px;
}

.apply-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 48px;
}

/* Step Indicators */
.step-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 48px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 120px;
}

.step::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 60px;
    width: 120px;
    height: 2px;
    background-color: #e5e7eb;
}

.step:last-child::after {
    display: none;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e5e7eb;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background-color: #1e40af;
    color: white;
}

.step-text {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.step.active .step-text {
    color: #1e40af;
}

/* Form Steps */
.apply-form-wrapper {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.step-title {
    font-size: 24px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 32px;
    text-align: center;
}

/* Service Cards */
.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.service-card {
    background: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-card:hover {
    background: #fff;
    border-color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.1);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(30, 64, 175, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.service-icon i {
    font-size: 32px;
    color: #1e40af;
}

.service-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2d2d2d;
    margin: 0;
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.form-navigation .btn {
    min-width: 120px;
    padding: 12px 24px;
}

.form-group {
    margin-bottom: 24px;
}

/* Form Controls */
.apply-form .form-control,
.apply-form .form-select {
    padding: 14px 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.apply-form .form-control:focus,
.apply-form .form-select:focus {
    border-color: #1e40af;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.apply-form .form-check {
    margin: 24px 0;
}

.apply-form .form-check-label {
    font-size: 14px;
    color: #666;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .apply-hero-section {
        padding: 60px 0;
    }

    .apply-form-wrapper {
        padding: 30px;
    }

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

    .step-indicators {
        gap: 20px;
    }

    .step {
        width: 100px;
    }

    .step::after {
        width: 80px;
        left: 50px;
    }
}

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

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

    .service-cards {
        grid-template-columns: 1fr;
    }

    .step-indicators {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
        padding-left: 24px;
    }

    .step {
        flex-direction: row;
        width: 100%;
        gap: 16px;
    }

    .step::after {
        left: 20px;
        top: 40px;
        width: 2px;
        height: 40px;
    }

    .step-text {
        margin: 0;
    }

    .apply-form-wrapper {
        padding: 20px;
    }
}

/* Yeni Section Stilleri */
.section-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(30, 64, 175, 0.1);
    color: #1e40af;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title .highlight {
    color: #1e40af;
}

.section-description {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 32px;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #fff, #f8f9fa);
}

.feature-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card:hover, .feature-card.active {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #1e40af;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(30, 64, 175, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon i {
    font-size: 32px;
    color: #1e40af;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 16px;
}

.feature-card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.6;
}

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

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #666;
}

.feature-list li i {
    color: #1e40af;
    font-size: 18px;
}

/* E-commerce Solutions Section */
.ecommerce-solutions-section {
    padding: 100px 0;
    background: #fff;
}

.solution-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.solution-feature .feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 0;
}

.solution-feature .feature-icon i {
    font-size: 24px;
}

.solution-feature .feature-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 8px;
}

.solution-feature .feature-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.solution-image {
    position: relative;
}

.stats-card {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stats-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.stats-icon {
    font-size: 24px;
    color: #1e40af;
}

.stats-label {
    font-size: 14px;
    color: #666;
}

.stats-value {
    font-size: 32px;
    font-weight: 700;
    color: #2d2d2d;
}

/* Software Development Section */
.software-dev-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f8f9fa, #fff);
}

.tech-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    transition: all 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #1e40af;
}

.tech-icon {
    width: 56px;
    height: 56px;
    background: rgba(30, 64, 175, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.tech-icon i {
    font-size: 28px;
    color: #1e40af;
}

.tech-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 12px;
}

.tech-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 24px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tags span {
    padding: 4px 12px;
    background: rgba(30, 64, 175, 0.1);
    color: #1e40af;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* Mobile App Section */
.mobile-app-section {
    padding: 100px 0;
    background: #fff;
}

.app-showcase {
    position: relative;
}

.app-features {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 24px;
}

.app-feature {
    background: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.app-feature i {
    font-size: 24px;
    color: #1e40af;
}

.app-feature span {
    font-size: 14px;
    font-weight: 500;
    color: #2d2d2d;
}

.platform-support {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.platform {
    display: flex;
    align-items: center;
    gap: 12px;
}

.platform i {
    font-size: 24px;
    color: #2d2d2d;
}

.platform span {
    font-size: 16px;
    font-weight: 500;
    color: #2d2d2d;
}

.app-stats {
    display: flex;
    gap: 32px;
}

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

.stat-value {
    font-size: 36px;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 8px;
}

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

/* SEO Section */
.seo-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f8f9fa, #fff);
}

.seo-checklist {
    margin-top: 40px;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.checklist-item i {
    font-size: 24px;
    color: #1e40af;
}

.checklist-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 8px;
}

.checklist-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.seo-results {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.result-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.result-card:first-child {
    grid-column: 1 / -1;
}

.result-icon {
    width: 48px;
    height: 48px;
    background: rgba(30, 64, 175, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.result-icon i {
    font-size: 24px;
    color: #1e40af;
}

.result-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 8px;
}

.result-value {
    font-size: 32px;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 4px;
}

.result-period {
    font-size: 14px;
    color: #666;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .section-title {
        font-size: 32px;
    }

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

    .services-section,
    .ecommerce-solutions-section,
    .software-dev-section,
    .mobile-app-section,
    .seo-section {
        padding: 60px 0;
    }

    .app-features {
        position: static;
        margin-top: 24px;
        flex-wrap: wrap;
    }

    .seo-results {
        grid-template-columns: 1fr;
    }
}

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

    .feature-card,
    .tech-card,
    .result-card {
        padding: 24px;
    }

    .solution-feature {
        flex-direction: column;
        text-align: center;
    }

    .solution-feature .feature-icon {
        margin: 0 auto 16px;
    }

    .app-stats {
        flex-direction: column;
        gap: 24px;
    }
}

/* Lottie Animation Styles */
.solution-image lottie-player {
    width: 100%;
    height: 400px;
    margin-bottom: 30px;
}

.app-showcase lottie-player {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.seo-animation lottie-player {
    width: 100%;
    height: 450px;
    border-radius: 16px;
}

@media (max-width: 991.98px) {
    .solution-image lottie-player,
    .app-showcase lottie-player,
    .seo-animation lottie-player {
        height: 350px;
    }
}

@media (max-width: 767.98px) {
    .solution-image lottie-player,
    .app-showcase lottie-player,
    .seo-animation lottie-player {
        height: 300px;
    }
}

/* SVG Animation Styles */
.solution-image, .app-showcase, .seo-animation {
    position: relative;
    background: linear-gradient(145deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.solution-image:hover, .app-showcase:hover, .seo-animation:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.animated-svg {
    width: 100%;
    height: auto;
    min-height: 400px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@media (max-width: 991.98px) {
    .animated-svg {
        min-height: 300px;
    }
}

@media (max-width: 767.98px) {
    .animated-svg {
        min-height: 250px;
    }
}

/* E-ticaret Hero Section */
.eticaret-hero-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa, #fff);
    overflow: hidden;
    margin-top: 20px;
}

.hero-content {
    padding-right: 30px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(30, 64, 175, 0.1);
    color: #1e40af;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content h1 .highlight {
    color: #1e40af;
}

.hero-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 90%;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.hero-stats .stat-item {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.hero-stats .stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.hero-stats .stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(30, 64, 175, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.hero-stats .stat-icon i {
    font-size: 20px;
    color: #1e40af;
}

.hero-stats .stat-value {
    font-size: 28px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 4px;
}

.hero-stats .stat-label {
    font-size: 13px;
    color: #666;
}

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

.hero-buttons .btn {
    padding: 12px 24px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
    background: #1e40af;
    border: none;
    color: #fff;
}

.hero-buttons .btn-outline-primary {
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #2d2d2d;
    background: #fff;
}

.hero-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.hero-animation {
    position: relative;
    padding: 30px;
}

/* Paketler Section */
.eticaret-paketler-section {
    padding: 80px 0;
    background: #fff;
}

.package-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package-card.featured {
    border-color: #1e40af;
    box-shadow: 0 15px 30px rgba(30, 64, 175, 0.1);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #1e40af;
    color: white;
    padding: 6px 40px;
    font-size: 12px;
    font-weight: 500;
    transform: rotate(45deg);
}

.package-header {
    text-align: center;
    margin-bottom: 30px;
}

.package-header h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 10px;
}

.package-header p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.package-icon {
    width: 56px;
    height: 56px;
    background: rgba(30, 64, 175, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 0;
}

.package-icon i {
    font-size: 28px;
    color: #1e40af;
}

.package-features {
    margin: 25px 0;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #666;
    padding-left: 5px;
}

.package-features li i {
    color: #1e40af;
    font-size: 16px;
    flex-shrink: 0;
}

.package-footer {
    margin-top: 30px;
    text-align: center;
}

.btn-package {
    display: inline-block;
    padding: 12px 28px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #2d2d2d;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-package:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.btn-package.featured {
    background: #1e40af;
    color: white;
    border: none;
}

.btn-package.featured:hover {
    background: #1e3a8a;
}

@media (max-width: 991.98px) {
    .eticaret-hero-section {
        padding: 60px 0;
    }

    .hero-content {
        text-align: center;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .package-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 767.98px) {
    .hero-content h1 {
        font-size: 32px;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}

/* SERP Results Section */
.serp-results-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, #f8f9fa, #fff);
    min-height: 100vh;
}

.results-header {
    background: #fff;
    border: 1px dashed #0d6efd;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(13, 110, 253, 0.08);
}

.results-title-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.results-title-wrapper i {
    font-size: 28px;
    color: #0d6efd;
}

.results-title {
    font-size: 20px;
    font-weight: 700;
    color: #2d2d2d;
    margin: 0;
}

.results-subtitle {
    font-size: 12px;
    color: #666;
    margin: 2px 0 0 0;
}

.results-meta {
    display: flex;
    gap: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
    background: #f8f9fa;
    padding: 8px 16px;
    border-radius: 8px;
}

.meta-item i {
    color: #0d6efd;
}

/* Search Info Card */
.search-info-card {
    background: #fff;
    border: 1px dashed #e9ecef;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 16px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: #e7f3ff;
    transform: translateY(-2px);
}

.info-item i {
    font-size: 24px;
    color: #0d6efd;
    min-width: 24px;
}

.info-label {
    display: block;
    font-size: 11px;
    color: #666;
    font-weight: 500;
    margin-bottom: 4px;
}

.info-value {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2d2d2d;
}

/* Rank Result Card */
.rank-result-card {
    background: #fff;
    border: 1px dashed #e9ecef;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.rank-badge {
    background: linear-gradient(135deg, #0d6efd 0%, #0143a3 100%);
    border-radius: 10px;
    padding: 12px 20px;
    text-align: center;
    min-width: 80px;
}

.rank-number {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.rank-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 4px;
    font-weight: 500;
}

.rank-details {
    display: flex;
    gap: 16px;
    flex: 1;
}

.rank-detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    padding: 12px 16px;
    border-radius: 8px;
    flex: 1;
    transition: all 0.3s ease;
}

.rank-detail-item:hover {
    background: #e7f3ff;
    transform: translateY(-2px);
}

.rank-detail-item i {
    font-size: 20px;
    color: #0d6efd;
}

.success-icon {
    color: #10b981 !important;
}

.detail-label {
    font-size: 11px;
    color: #666;
}

.detail-value {
    font-size: 14px;
    font-weight: 600;
    color: #2d2d2d;
}

.success-text {
    color: #10b981;
}

/* Top Results Card */
.top-results-card {
    background: #fff;
    border: 1px dashed #e9ecef;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #e9ecef;
}

.card-header h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 600;
    color: #2d2d2d;
    margin: 0;
}

.card-header h3 i {
    color: #0d6efd;
}

.result-count {
    font-size: 14px;
    color: #666;
    background: #f8f9fa;
    padding: 6px 12px;
    border-radius: 6px;
}

/* Results List */
.results-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.result-item:hover {
    background: #fff;
    border-color: #0d6efd;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.1);
}

.result-item.highlighted {
    background: linear-gradient(135deg, #e7f3ff 0%, #f0f9ff 100%);
    border: 2px dashed #0d6efd;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.15);
}

.result-rank {
    min-width: 40px;
    height: 40px;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #666;
}

.highlight-rank {
    background: #0d6efd;
    border-color: #0d6efd;
    color: #fff;
    font-size: 20px;
}

.result-content {
    flex: 1;
}

.result-badge {
    display: inline-block;
    background: #0d6efd;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 8px;
}

.result-url {
    font-size: 13px;
    color: #0d6efd;
    margin-bottom: 6px;
}

.result-title {
    font-size: 16px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 6px;
}

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

.result-icon {
    width: 36px;
    height: 36px;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s ease;
}

.result-item:hover .result-icon {
    background: #0d6efd;
    border-color: #0d6efd;
    color: #fff;
}

.highlight-icon {
    background: #0d6efd;
    border-color: #0d6efd;
    color: #fff;
}

/* Results Actions */
.results-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.results-actions .btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: #fff;
}

.pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-title {
    font-size: 36px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 12px;
}

.pricing-subtitle {
    font-size: 16px;
    color: #666;
}

/* Package Builder Card */
.package-builder-card {
    background: #fff;
    border: 1px dashed #e9ecef;
    border-radius: 12px;
    padding: 32px;
}

.builder-config {
    padding-right: 24px;
}

.config-title {
    font-size: 18px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 24px;
}

.config-item {
    margin-bottom: 28px;
}

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

.config-label {
    font-size: 13px;
    font-weight: 500;
    color: #2d2d2d;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
}

.config-label i {
    color: #0d6efd;
    font-size: 16px;
}

.config-value {
    font-size: 16px;
    font-weight: 600;
    color: #0d6efd;
}

.custom-range {
    height: 4px;
    cursor: pointer;
}

.custom-range::-webkit-slider-thumb {
    width: 16px;
    height: 16px;
    background: #0d6efd;
    cursor: pointer;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(13, 110, 253, 0.3);
}

.custom-range::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: #0d6efd;
    cursor: pointer;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(13, 110, 253, 0.3);
}

.range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: #aaa;
    margin-top: 4px;
}

.config-info {
    display: none;
}

/* Price Summary */
.price-summary {
    background: #fff;
    border: 1px dashed #e9ecef;
    border-radius: 12px;
    padding: 24px;
    height: 100%;
    position: sticky;
    top: 20px;
}

.summary-title {
    font-size: 18px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 20px;
}

.summary-items {
    margin-bottom: 16px;
}

.summary-item {
    margin-bottom: 16px;
}

.summary-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #666;
    margin-bottom: 4px;
}

.summary-label i {
    color: #0d6efd;
    font-size: 14px;
}

.summary-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
}

.detail-calc {
    font-size: 10px;
    color: #aaa;
}

.detail-price {
    font-size: 13px;
    font-weight: 600;
    color: #666;
}

.summary-divider {
    border-top: 1px dashed #e9ecef;
    margin: 16px 0;
}

.summary-subtotal,
.summary-vat {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #2d2d2d;
}

.total-price {
    font-size: 24px;
    color: #0d6efd;
    font-weight: 700;
}

.btn-lg {
    padding: 12px 24px;
    font-size: 14px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.included-features {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px dashed #e9ecef;
}

.features-title {
    font-size: 12px;
    font-weight: 500;
    color: #666;
    margin-bottom: 10px;
}

.features-mini-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-mini-list li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #666;
    margin-bottom: 6px;
}

.features-mini-list li i {
    color: #0d6efd;
    font-size: 12px;
}

/* Pricing Info Box */
.pricing-info-box {
    background: #f8f9fa;
    border: 1px dashed #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-top: 24px;
}

.pricing-info-box h5 {
    font-size: 14px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pricing-info-box h5 i {
    color: #0d6efd;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.info-item strong {
    font-size: 12px;
    color: #666;
}

.info-item span {
    font-size: 13px;
    color: #0d6efd;
    font-weight: 600;
}

/* SERP Hero Section */
.serp-hero-section {
    padding: 60px 0 40px;
    background: #fff;
}

.serp-hero-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px dashed #e9ecef;
}

.serp-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-content {
    padding-right: 40px;
}

.about-content .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 24px;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.about-text strong {
    color: #2d2d2d;
    font-weight: 600;
}

.about-icons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.about-icon-item {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.about-icon-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.about-icon-item svg {
    margin-bottom: 16px;
}

.about-icon-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2d2d2d;
    margin: 0;
}

@media (max-width: 991.98px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .about-content .section-title {
        font-size: 32px;
    }
}

@media (max-width: 767.98px) {
    .about-icons-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content .section-title {
        font-size: 28px;
    }
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: #fff;
}

.services-section .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 16px;
}

.services-section .section-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 0;
}

.service-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: rgba(77, 163, 255, 0.1);
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 16px;
    line-height: 1.4;
}

.service-link {
    color: #4da3ff;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-link:hover {
    color: #2d7dd2;
    transform: translateX(4px);
}

@media (max-width: 991.98px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-section .section-title {
        font-size: 32px;
    }
}

@media (max-width: 767.98px) {
    .services-section .section-title {
        font-size: 28px;
    }
    
    .service-card {
        padding: 24px;
    }
}

/* Article Section */
.article-section {
    padding: 60px 0 80px;
    background: #fff;
}

.main-article {
    max-width: 100%;
    background: #fff;
    border: 1px dashed #e9ecef;
    border-radius: 12px;
    padding: 32px;
}

.article-title {
    font-size: 28px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 30px;
    line-height: 1.4;
}

.article-content {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2d2d2d;
    margin-top: 35px;
    margin-bottom: 16px;
}

.article-content h3:first-of-type {
    margin-top: 0;
}

/* Content Banners */
.content-banner {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border: 1px dashed #0d6efd;
    border-radius: 12px;
    padding: 24px 28px;
    margin: 32px 0;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.content-banner:hover {
    border-color: #0d6efd;
    box-shadow: 0 4px 16px rgba(13, 110, 253, 0.1);
}

.banner-icon {
    width: 60px;
    height: 60px;
    background: #0d6efd;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.banner-icon i {
    font-size: 28px;
    color: #fff;
}

.banner-content {
    flex: 1;
}

.banner-title {
    font-size: 16px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 4px;
}

.banner-text {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.banner-btn {
    padding: 10px 24px;
    font-size: 13px;
    border-radius: 8px;
    white-space: nowrap;
}

.banner-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.banner-contact-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #0d6efd;
    text-decoration: none;
    white-space: nowrap;
}

.contact-link i {
    font-size: 16px;
}

.contact-link:hover {
    color: #0a58ca;
}

/* Banner Variations */
.seo-tools-banner {
    background: linear-gradient(135deg, #e7f3ff 0%, #fff 100%);
}

.login-banner {
    background: linear-gradient(135deg, #fff7e6 0%, #fff 100%);
    border-color: #ff9800;
}

.login-banner .banner-icon {
    background: #ff9800;
}

.contact-banner {
    background: linear-gradient(135deg, #e8f5e9 0%, #fff 100%);
    border-color: #4caf50;
}

.contact-banner .banner-icon {
    background: #4caf50;
}

.pricing-banner {
    background: linear-gradient(135deg, #f3e5f5 0%, #fff 100%);
    border-color: #9c27b0;
}

.pricing-banner .banner-icon {
    background: #9c27b0;
}

.cta-banner {
    background: linear-gradient(135deg, #e3f2fd 0%, #fff 100%);
    border-color: #2196f3;
}

.cta-banner .banner-icon {
    background: #2196f3;
}

/* Tools Section */
.tools-section {
    padding: 60px 0 80px;
    background: #fff;
}

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

@media (max-width: 1400px) {
    .tools-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1200px) {
    .tools-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tool-card {
    background: #fff;
    border: 1px dashed #e9ecef;
    border-radius: 12px;
    padding: 28px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.tool-card:hover {
    border-color: #0d6efd;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(13, 110, 253, 0.1);
}

.tool-card.featured {
    border: 2px solid #0d6efd;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #0d6efd;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.tool-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.tool-icon i {
    font-size: 28px;
    color: #fff;
}

.tool-title {
    font-size: 18px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 12px;
}

.tool-description {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
    min-height: 60px;
}

.tool-card .btn {
    margin-top: auto;
    padding: 10px 20px;
    font-size: 13px;
    border-radius: 8px;
}

/* Speed Test Styles */
.speed-test-section {
    padding: 60px 0 40px;
    background: #fff;
}

.speed-test-card {
    background: #fff;
    border: 1px dashed #e9ecef;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 30px;
}

.test-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.test-card-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 24px;
}

.speed-test-form {
    max-width: 800px;
}

.test-input-group {
    display: flex;
    gap: 12px;
}

.input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 16px;
    color: #0d6efd;
    font-size: 18px;
}

.test-input {
    width: 100%;
    padding: 14px 16px 14px 45px;
    border: 1px dashed #0d6efd;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.test-input:focus {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.test-btn {
    padding: 14px 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.speed-loading {
    text-align: center;
    padding: 60px 20px;
}

.loading-text {
    margin-top: 20px;
    color: #666;
    font-size: 14px;
}

.speed-results-card {
    background: #fff;
    border: 1px dashed #e9ecef;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 30px;
}

.results-header-section {
    margin-bottom: 30px;
}

.results-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 8px;
}

.tested-url {
    font-size: 13px;
    color: #0d6efd;
    word-break: break-all;
}

.speed-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.metric-card {
    background: #f8f9fa;
    border: 1px dashed #e9ecef;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.metric-card.main-score {
    grid-column: span 1;
}

.score-circle {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 16px;
}

.score-circle svg {
    transform: rotate(-90deg);
}

.score-bg {
    fill: none;
    stroke: #e9ecef;
    stroke-width: 8;
}

.score-fill {
    fill: none;
    stroke: #0d6efd;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 314;
    stroke-dashoffset: 314;
    transition: stroke-dashoffset 1s ease, stroke 0.3s ease;
}

.score-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.score-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #2d2d2d;
    line-height: 1;
}

.score-label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}

.metric-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.metric-icon i {
    font-size: 24px;
    color: #fff;
}

.metric-title {
    font-size: 14px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 8px;
}

.metric-value {
    font-size: 24px;
    font-weight: 700;
    color: #0d6efd;
    margin-bottom: 4px;
}

.metric-desc {
    font-size: 12px;
    color: #666;
    margin: 0;
}

.metric-status {
    font-size: 14px;
    color: #4caf50;
    font-weight: 600;
}

.recommendations-section {
    background: #f8f9fa;
    border: 1px dashed #e9ecef;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.recommendations-title {
    font-size: 16px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.recommendations-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.6;
}

.recommendations-list li i {
    color: #0d6efd;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.screenshot-preview {
    background: #fff;
}

.screenshot-title {
    font-size: 16px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.screenshot-placeholder {
    background: #f8f9fa;
    border: 1px dashed #e9ecef;
    border-radius: 12px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
}

.screenshot-placeholder i {
    font-size: 48px;
    margin-bottom: 12px;
    opacity: 0.5;
}

.screenshot-placeholder p {
    font-size: 13px;
    margin: 0;
}

.screenshot-placeholder img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.test-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .test-input-group {
        flex-direction: column;
    }

    .test-btn {
        width: 100%;
        justify-content: center;
    }

    .speed-metrics {
        grid-template-columns: 1fr;
    }

    .metric-card.main-score {
        grid-column: span 1;
    }
}

/* Sitemap Styles */
.sitemap-options {
    max-width: 800px;
    margin: 0 auto;
}

.sitemap-options .form-label {
    font-size: 13px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 8px;
}

.sitemap-options .form-select {
    border: 1px dashed #0d6efd;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.sitemap-options .form-select:focus {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.sitemap-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat-item {
    background: #f8f9fa;
    border: 1px dashed #e9ecef;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-item i {
    font-size: 32px;
    color: #0d6efd;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #0d6efd;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: #666;
    margin-top: 4px;
}

.sitemap-preview {
    background: #f8f9fa;
    border: 1px dashed #e9ecef;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.preview-title {
    font-size: 16px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.code-preview {
    background: #fff;
    border: 1px dashed #e9ecef;
    border-radius: 8px;
    padding: 16px;
    max-height: 400px;
    overflow-y: auto;
}

.code-preview pre {
    margin: 0;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    line-height: 1.6;
    color: #2d2d2d;
}

.code-preview code {
    background: none;
    padding: 0;
}

/* Domain Info Styles */
.domain-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

.domain-section {
    background: #fff;
    border: 1px dashed #0d6efd;
    border-radius: 16px;
    overflow: hidden;
}

.domain-section-header {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.domain-section-header i {
    font-size: 22px;
    opacity: 0.9;
}

.domain-section-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.domain-stats-list {
    padding: 20px;
}

.domain-stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    background: #f8f9fa;
    border: 1px dashed #e9ecef;
    border-radius: 10px;
    margin-bottom: 12px;
    transition: all 0.2s ease;
}

.domain-stat-item:hover {
    background: #e7f1ff;
    border-color: #0d6efd;
    transform: translateX(4px);
}

.domain-stat-item:last-child {
    margin-bottom: 0;
}

.stat-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #495057;
}

.stat-label i {
    font-size: 18px;
    color: #0d6efd;
}

.stat-value {
    font-size: 13px;
    font-weight: 600;
    color: #2d2d2d;
    text-align: right;
    max-width: 60%;
    word-break: break-word;
}

.stat-value.mono {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: #0066cc;
}

.stat-value.small {
    font-size: 11px;
    line-height: 1.4;
}

.stat-value.status-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 991px) {
    .domain-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Ping Tool Styles */
.ping-url-input .form-label,
.ping-engines-select .form-label {
    font-size: 14px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ping-url-input .form-label i,
.ping-engines-select .form-label i {
    color: #0d6efd;
    font-size: 18px;
}

.form-text {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: #6c757d;
}

.ping-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 16px;
    max-height: 400px;
    overflow-y: auto;
    padding: 10px;
    background: #fafbfc;
    border-radius: 8px;
}

.service-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #f8f9fa;
    border: 2px dashed #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
    font-weight: 600;
    color: #2d2d2d;
}

.service-checkbox:hover {
    background: #e7f1ff;
    border-color: #0d6efd;
}

.service-checkbox input[type="checkbox"] {
    display: none;
}

.service-checkbox input[type="checkbox"]:checked ~ .checkbox-custom {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    border-color: #0d6efd;
}

.service-checkbox input[type="checkbox"]:checked ~ .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px;
    font-weight: bold;
}

.service-checkbox:has(input:checked) {
    background: #e7f1ff;
    border-color: #0d6efd;
}

.select-all-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.select-all-buttons .btn {
    font-size: 12px;
    padding: 8px 20px;
}

.ping-summary {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ping-stats-summary {
    display: flex;
    gap: 12px;
}

.stat-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.stat-badge.success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
}

.stat-badge.error {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
}

.stat-badge i {
    font-size: 16px;
}

.stat-badge strong {
    font-size: 16px;
}

.result-meta {
    font-size: 12px;
    color: #6c757d;
    margin-top: 8px;
    font-style: italic;
}

.engines-checkboxes {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.engine-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #f8f9fa;
    border: 2px dashed #e9ecef;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 600;
    color: #2d2d2d;
}

.engine-checkbox:hover {
    background: #e7f1ff;
    border-color: #0d6efd;
}

.engine-checkbox input[type="checkbox"] {
    display: none;
}

@media (max-width: 768px) {
    .ping-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #dee2e6;
    border-radius: 4px;
    position: relative;
    transition: all 0.2s ease;
}

.engine-checkbox input[type="checkbox"]:checked + .checkbox-custom {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    border-color: #0d6efd;
}

.engine-checkbox input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 14px;
    font-weight: bold;
}

.engine-checkbox i {
    font-size: 20px;
    color: #0d6efd;
}

.ping-results-wrapper {
    margin-bottom: 30px;
}

.ping-result-card {
    background: #fff;
    border: 1px dashed #dee2e6;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px dashed #e9ecef;
}

.result-engine {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #2d2d2d;
}

.result-engine i {
    font-size: 24px;
    color: #0d6efd;
}

.result-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.result-status.success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
}

.result-status.error {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
}

.result-status i {
    font-size: 16px;
}

.result-message {
    font-size: 14px;
    color: #495057;
    line-height: 1.6;
    margin-bottom: 12px;
}

.result-url {
    font-size: 12px;
    color: #6c757d;
    font-family: 'Courier New', monospace;
    word-break: break-all;
}

.ping-info-notice {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    border: 2px dashed #f59e0b;
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    gap: 14px;
    margin-top: 24px;
}

.ping-info-notice i {
    font-size: 24px;
    color: #f59e0b;
    flex-shrink: 0;
}

.ping-info-notice div {
    font-size: 13px;
    color: #78350f;
    line-height: 1.6;
}

.ping-info-notice strong {
    color: #92400e;
}

.ping-stats-wrapper {
    margin-bottom: 30px;
}

.ping-status-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 2px dashed;
}

.ping-status-badge.success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-color: #10b981;
    color: #065f46;
}

.ping-status-badge.error {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-color: #ef4444;
    color: #991b1b;
}

.ping-status-badge i {
    font-size: 24px;
}

.ping-value {
    font-family: 'Courier New', monospace;
    font-size: 15px;
    font-weight: 700;
    color: #0066cc;
}

.ping-history-section {
    background: #fff;
    border: 1px dashed #0d6efd;
    border-radius: 16px;
    padding: 24px;
    margin-top: 24px;
}

.history-title {
    font-size: 16px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.history-title i {
    color: #0d6efd;
    font-size: 20px;
}

.ping-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 200px;
    gap: 8px;
    padding: 20px 10px 40px;
    background: #f8f9fa;
    border-radius: 12px;
    position: relative;
}

.ping-bar {
    flex: 1;
    max-width: 60px;
    background: linear-gradient(to top, #0d6efd, #0a58ca);
    border-radius: 8px 8px 0 0;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(13, 110, 253, 0.2);
}

.ping-bar:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.4);
}

.ping-bar:hover .ping-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

.ping-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.2s ease;
    pointer-events: none;
}

.ping-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
}

/* Responsive */
@media (max-width: 991.98px) {
    .tools-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .tools-section {
        padding: 40px 0 60px;
    }
}

@media (max-width: 767.98px) {
    .tools-grid {
        grid-template-columns: 1fr;
    }

    .tool-card {
        padding: 24px;
    }
}

/* Responsive */
@media (max-width: 991.98px) {
    .content-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .banner-icon {
        width: 50px;
        height: 50px;
    }

    .banner-icon i {
        font-size: 24px;
    }

    .banner-buttons,
    .banner-contact-info {
        flex-direction: column;
        width: 100%;
    }

    .banner-btn {
        width: 100%;
    }
}

/* Responsive */
@media (max-width: 991.98px) {
    .pricing-section {
        padding: 60px 0;
    }

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

    .package-builder-card {
        padding: 30px;
    }

    .builder-config {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .price-summary {
        position: static;
    }
}

@media (max-width: 767.98px) {
    .pricing-section {
        padding: 40px 0;
    }

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

    .package-builder-card {
        padding: 20px;
    }

    .config-title,
    .summary-title {
        font-size: 18px;
    }

    .total-price {
        font-size: 24px;
    }
}

/* Pagination Styles */
.pagination-container {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px dashed #e9ecef;
}

.pagination {
    margin: 0;
}

.pagination .page-link {
    border: 1px solid #e9ecef;
    color: #2d2d2d;
    padding: 8px 14px;
    margin: 0 4px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background: #e7f3ff;
    border-color: #0d6efd;
    color: #0d6efd;
}

.pagination .page-item.active .page-link {
    background: #0d6efd;
    border-color: #0d6efd;
    color: #fff;
}

.pagination .page-item.disabled .page-link {
    background: #f8f9fa;
    border-color: #e9ecef;
    color: #999;
    cursor: not-allowed;
}

/* Loading Spinner */
.spinner-border {
    width: 3rem;
    height: 3rem;
}

/* Robots.txt Tool Styles */
.robots-form {
    max-width: 900px;
    margin: 0 auto;
}

.quick-templates {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.user-agents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.agent-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #f8f9fa;
    border: 2px dashed #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
    font-weight: 600;
    color: #2d2d2d;
}

.agent-checkbox:hover {
    background: #e7f1ff;
    border-color: #0d6efd;
}

.agent-checkbox input[type="checkbox"] {
    display: none;
}

.agent-checkbox input[type="checkbox"]:checked ~ .checkbox-custom {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    border-color: #0d6efd;
}

.agent-checkbox input[type="checkbox"]:checked ~ .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px;
    font-weight: bold;
}

.agent-checkbox:has(input:checked) {
    background: #e7f1ff;
    border-color: #0d6efd;
}

.code-textarea {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    background: #f8f9fa;
    border: 1px dashed #dee2e6;
    border-radius: 8px;
    padding: 12px;
    resize: vertical;
}

.code-textarea:focus {
    background: #fff;
    border-color: #0d6efd;
    outline: none;
}

.robots-preview {
    background: #fff;
    border: 1px dashed #0d6efd;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
}

.preview-header {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.preview-header h4 {
    color: #fff;
    margin: 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.preview-header h4 i {
    font-size: 20px;
}

.preview-actions {
    display: flex;
    gap: 10px;
}

.robots-code {
    background: #1e1e1e;
    color: #d4d4d4;
    padding: 20px;
    margin: 0;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.6;
    overflow-x: auto;
    max-height: 500px;
}

.installation-guide {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.guide-title {
    font-size: 18px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.guide-title i {
    color: #0d6efd;
    font-size: 24px;
}

.guide-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.guide-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.step-number {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content strong {
    display: block;
    font-size: 15px;
    color: #2d2d2d;
    margin-bottom: 6px;
}

.step-content p {
    font-size: 13px;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

.step-content code {
    background: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    color: #0066cc;
    border: 1px solid #dee2e6;
}

@media (max-width: 768px) {
    .user-agents-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quick-templates {
        flex-direction: column;
    }
    
    .quick-templates .btn {
        width: 100%;
    }
}

/* Meta Tag Generator Styles */
.meta-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #e9ecef;
}

.tab-btn {
    flex: 1;
    padding: 12px 20px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: #6c757d;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tab-btn:hover {
    color: #0d6efd;
    background: #f8f9fa;
}

.tab-btn.active {
    color: #0d6efd;
    border-bottom-color: #0d6efd;
    background: #e7f1ff;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.robots-checkboxes {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.robot-check {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f8f9fa;
    border: 2px dashed #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 600;
}

.robot-check:hover {
    background: #e7f1ff;
    border-color: #0d6efd;
}

.robot-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.robot-check input[type="checkbox"]:checked {
    accent-color: #0d6efd;
}

.meta-preview-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.google-preview {
    background: #fff;
    border-radius: 8px;
    padding: 16px;
    font-family: Arial, sans-serif;
}

.preview-url {
    color: #202124;
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 4px;
}

.preview-title {
    color: #1a0dab;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 4px;
    cursor: pointer;
}

.preview-title:hover {
    text-decoration: underline;
}

.preview-description {
    color: #4d5156;
    font-size: 14px;
    line-height: 1.58;
}

.test-links {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
}

.test-links h5 {
    font-size: 14px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 12px;
}

.test-links .btn {
    margin-right: 10px;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .meta-tabs {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
    }
    
    .robots-checkboxes {
        flex-direction: column;
    }
}

/* SSL Checker Styles */
.ssl-status-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #dee2e6;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    margin-bottom: 32px;
    transition: all 0.3s ease;
}

.ssl-status-card.valid {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-color: #28a745;
}

.ssl-status-card.invalid {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border-color: #dc3545;
}

.status-icon {
    font-size: 64px;
    margin-bottom: 16px;
}

.ssl-status-card.valid .status-icon {
    color: #28a745;
}

.ssl-status-card.invalid .status-icon {
    color: #dc3545;
}

.status-title {
    font-size: 24px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 8px;
}

.status-message {
    font-size: 16px;
    color: #6c757d;
    margin: 0;
}

.ssl-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.ssl-detail-card {
    background: #fff;
    border: 2px dashed #e9ecef;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.ssl-detail-card:hover {
    border-color: #0d6efd;
    background: #f8f9fa;
    transform: translateY(-2px);
}

.detail-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-icon i {
    font-size: 24px;
    color: #fff;
}

.detail-content {
    flex: 1;
}

.detail-content h5 {
    font-size: 13px;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.detail-content p {
    font-size: 16px;
    font-weight: 600;
    color: #2d2d2d;
    margin: 0;
    word-break: break-word;
}

.serial-number {
    font-family: 'Courier New', monospace;
    font-size: 12px !important;
}

.certificate-chain {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
}

.chain-title {
    font-size: 18px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chain-title i {
    color: #0d6efd;
    font-size: 24px;
}

.chain-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chain-item {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chain-item i {
    color: #28a745;
    font-size: 20px;
}

.security-recommendations {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
}

.recommendations-title {
    font-size: 18px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.recommendations-title i {
    color: #0d6efd;
    font-size: 24px;
}

.recommendations-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.recommendation-item {
    background: #fff;
    border-left: 4px solid #0d6efd;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.recommendation-item.success {
    border-left-color: #28a745;
}

.recommendation-item.warning {
    border-left-color: #ffc107;
}

.recommendation-item.error {
    border-left-color: #dc3545;
}

.recommendation-item.info {
    border-left-color: #17a2b8;
}

.recommendation-item i {
    font-size: 20px;
    flex-shrink: 0;
}

.recommendation-item.success i {
    color: #28a745;
}

.recommendation-item.warning i {
    color: #ffc107;
}

.recommendation-item.error i {
    color: #dc3545;
}

.recommendation-item.info i {
    color: #17a2b8;
}

.recommendation-item span {
    font-size: 14px;
    color: #2d2d2d;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .ssl-details-grid {
        grid-template-columns: 1fr;
    }
    
    .ssl-status-card {
        padding: 24px 16px;
    }
    
    .status-icon {
        font-size: 48px;
    }
    
    .status-title {
        font-size: 20px;
    }
}

/* Broken Link Checker Styles */
.check-options {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.option-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #2d2d2d;
}

.option-checkbox input[type="checkbox"] {
    display: none;
}

.option-checkbox input[type="checkbox"]:checked ~ .checkbox-custom {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    border-color: #0d6efd;
}

.option-checkbox input[type="checkbox"]:checked ~ .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px;
    font-weight: bold;
}

.progress-info {
    margin-top: 16px;
    font-size: 14px;
    color: #6c757d;
}

.link-summary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.summary-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 2px solid;
    transition: all 0.3s ease;
}

.summary-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.summary-card.success {
    border-color: #28a745;
}

.summary-card.error {
    border-color: #dc3545;
}

.summary-card.warning {
    border-color: #ffc107;
}

.summary-card.info {
    border-color: #17a2b8;
}

.summary-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.summary-card.success .summary-icon {
    background: linear-gradient(135deg, #28a745 0%, #218838 100%);
}

.summary-card.error .summary-icon {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

.summary-card.warning .summary-icon {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
}

.summary-card.info .summary-icon {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
}

.summary-icon i {
    font-size: 28px;
    color: #fff;
}

.summary-content h4 {
    font-size: 32px;
    font-weight: 700;
    color: #2d2d2d;
    margin: 0 0 4px 0;
}

.summary-content p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

.link-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
    border-bottom: 2px solid #e9ecef;
    overflow-x: auto;
}

.link-tab {
    padding: 12px 20px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: #6c757d;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.link-tab:hover {
    color: #0d6efd;
    background: #f8f9fa;
}

.link-tab.active {
    color: #0d6efd;
    border-bottom-color: #0d6efd;
    background: #e7f1ff;
}

.links-container {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 32px;
    max-height: 600px;
    overflow-y: auto;
}

.links-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-card {
    background: #fff;
    border-radius: 8px;
    padding: 16px;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.link-card:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.link-card.working {
    border-left-color: #28a745;
}

.link-card.broken {
    border-left-color: #dc3545;
}

.link-card.redirect {
    border-left-color: #ffc107;
}

.link-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-weight: 600;
}

.link-card.working .link-status {
    color: #28a745;
}

.link-card.broken .link-status {
    color: #dc3545;
}

.link-card.redirect .link-status {
    color: #ffc107;
}

.link-status i {
    font-size: 20px;
}

.http-code {
    background: #e9ecef;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    color: #495057;
    margin-left: auto;
}

.link-info {
    font-size: 13px;
    color: #495057;
    line-height: 1.6;
}

.link-info > div {
    margin-bottom: 4px;
}

.link-url a {
    color: #0d6efd;
    text-decoration: none;
    word-break: break-all;
}

.link-url a:hover {
    text-decoration: underline;
}

.link-error {
    color: #dc3545;
}

.no-links {
    text-align: center;
    padding: 40px;
    color: #6c757d;
    font-size: 14px;
}

.export-options {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
}

.export-options h5 {
    font-size: 14px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 12px;
}

.export-options .btn {
    margin-right: 10px;
    margin-bottom: 10px;
}

.link-recommendations {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .link-summary {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .summary-content h4 {
        font-size: 24px;
    }
    
    .check-options {
        flex-direction: column;
        gap: 12px;
    }
}

/* Responsive */
@media (max-width: 991.98px) {
    .results-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .results-title-wrapper {
        flex-direction: column;
    }

    .search-info-card {
        grid-template-columns: 1fr;
    }

    .rank-result-card {
        flex-direction: column;
        text-align: center;
    }

    .rank-details {
        flex-direction: column;
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .serp-results-section {
        padding: 40px 0;
    }

    .results-header {
        padding: 24px;
    }

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

    .results-title-wrapper i {
        font-size: 36px;
    }

    .top-results-card {
        padding: 20px;
    }

    .result-item {
        padding: 16px;
    }

    .results-actions {
        flex-direction: column;
    }

    .results-actions .btn {
        width: 100%;
    }

    .package-card {
        padding: 25px;
    }
}

/* Özellikler Section */
.eticaret-ozellikler-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #fff, #f8f9fa);
}

/* Entegrasyonlar Section */
.eticaret-entegrasyon-section {
    padding: 100px 0;
    background: #fff;
}

/* Neden Biz Section */
.eticaret-neden-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f8f9fa, #fff);
} 

/* Schema Generator Styles */
.schema-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.schema-type-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: var(--surface-color);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.schema-type-btn i {
    font-size: 32px;
    color: var(--primary-color);
}

.schema-type-btn span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
}

.schema-type-btn:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.schema-type-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3) !important;
}

.schema-type-btn.active i,
.schema-type-btn.active span {
    color: #7d0404 !important;
}

.schema-fields {
    display: none;
}

.schema-fields.active {
    display: block;
}

.faq-item {
    padding: 15px;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
}

/* Redirect Checker Styles */
.redirect-chain {
    margin: 30px 0;
}

.chain-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.redirect-step {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: var(--surface-color);
    border-left: 3px solid var(--primary-color);
    border-radius: 8px;
    margin-bottom: 10px;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-url {
    font-size: 14px;
    color: var(--text-color);
    word-break: break-all;
    margin-bottom: 8px;
}

.step-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.step-status {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.step-status.status-2xx {
    background: #d1fae5;
    color: #065f46;
}

.step-status.status-3xx {
    background: #fef3c7;
    color: #92400e;
}

.step-status.status-4xx,
.step-status.status-5xx {
    background: #fee2e2;
    color: #991b1b;
}

.step-time {
    font-size: 12px;
    color: var(--text-muted);
}

.step-redirect {
    font-size: 12px;
    color: var(--primary-color);
}

/* HTTP Header Checker Styles */
.header-tables {
    margin: 30px 0;
}

.header-table-section {
    margin-bottom: 30px;
}

.table-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.table-responsive {
    overflow-x: auto;
}

.density-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--surface-color);
    border-radius: 8px;
    overflow: hidden;
}

.density-table thead {
    background: rgba(59, 130, 246, 0.1);
}

.density-table th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    color: var(--text-color);
    font-size: 14px;
    border-bottom: 2px solid var(--border-color);
}

.density-table td {
    padding: 12px 16px;
    font-size: 14px;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
}

.density-table tbody tr:hover {
    background: rgba(59, 130, 246, 0.05);
}

.density-badge {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

.density-badge.success {
    background: #d1fae5;
    color: #065f46;
}

.density-badge.warning {
    background: #fef3c7;
    color: #92400e;
}

.density-badge.error {
    background: #fee2e2;
    color: #991b1b;
}

/* Keyword Density Styles */
.keyword-density-table {
    margin: 30px 0;
}

/* Redirect Ping Styles */
.ping-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: transparent;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.stat-item:hover {
    border-color: #d1d5db;
    background: #f9fafb;
}

.stat-item.stat-success {
    border-color: #e5e7eb;
}

.stat-item.stat-error {
    border-color: #e5e7eb;
}

.stat-item.stat-pending {
    border-color: #e5e7eb;
}

.stat-item.stat-info {
    border-color: #e5e7eb;
}

.stat-icon {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #1f2937 !important;
}

.stat-item.stat-success .stat-icon {
    color: #1f2937 !important;
}

.stat-item.stat-error .stat-icon {
    color: #1f2937 !important;
}

.stat-item.stat-pending .stat-icon {
    color: #1f2937 !important;
}

.stat-item.stat-info .stat-icon {
    color: #1f2937 !important;
}

.stat-icon i {
    font-size: 24px;
    color: #1f2937 !important;
}

.stat-content h4 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    color: #1f2937;
    line-height: 1;
}

.stat-content p {
    font-size: 13px;
    margin: 4px 0 0 0;
    color: #6b7280;
}

/* ============================================
   Apartman Yönetimi Page Styles
   ============================================ */

/* Services Detail Section */
.apt-services-detail-section {
    padding: 60px 0;
    background: #fff;
}

.apt-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 12px;
}

.apt-section-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 0;
}

.apt-service-detail-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 24px;
    height: 100%;
    transition: all 0.3s ease;
}

.apt-service-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(77, 163, 255, 0.2);
}

.apt-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.apt-card-icon svg {
    width: 28px;
    height: 28px;
}

.apt-icon-blue { background: rgba(77, 163, 255, 0.1); color: #4da3ff; }
.apt-icon-purple { background: rgba(108, 92, 231, 0.1); color: #6c5ce7; }
.apt-icon-green { background: rgba(0, 184, 148, 0.1); color: #00b894; }
.apt-icon-orange { background: rgba(225, 112, 85, 0.1); color: #e17055; }
.apt-icon-red { background: rgba(235, 77, 75, 0.1); color: #eb4d4b; }
.apt-icon-yellow { background: rgba(253, 203, 110, 0.1); color: #fdcb6e; }

.apt-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 8px;
}

.apt-card-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Advantages Section */
.apt-advantages-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.apt-section-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.apt-advantages-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.apt-advantage-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.apt-advantage-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4da3ff 0%, #6c5ce7 100%);
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.apt-advantage-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 4px;
}

.apt-advantage-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

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

.apt-stat-card {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.apt-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.apt-stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #4da3ff;
    margin-bottom: 6px;
}

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

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

.apt-process-card {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 12px;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.apt-process-card:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.apt-process-step {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #4da3ff 0%, #6c5ce7 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.apt-process-title {
    font-size: 16px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 8px;
}

.apt-process-text {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* CTA Section */
.apt-cta-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.apt-cta-box {
    background: linear-gradient(135deg, #4da3ff 0%, #6c5ce7 100%);
    padding: 32px 40px;
    border-radius: 12px;
    color: #fff;
}

.apt-cta-title {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.apt-cta-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.apt-cta-phone {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    margin-bottom: 20px;
}

.apt-cta-button {
    display: inline-block;
    background: #fff;
    color: #4da3ff;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.apt-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: #4da3ff;
}

/* FAQ Section */
.apt-faq-section {
    padding: 60px 0;
    background: #fff;
}

.apt-faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.apt-faq-item {
    background: #f8f9fa;
    padding: 20px 24px;
    border-radius: 8px;
    border-left: 3px solid #4da3ff;
    transition: all 0.3s ease;
}

.apt-faq-item:hover {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.apt-faq-question {
    font-size: 16px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 8px;
}

.apt-faq-answer {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Content Section */
.apt-content-section {
    padding: 60px 0;
    background: #fff;
}

.apt-main-article {
    max-width: 100%;
}

.apt-article-title {
    font-size: 28px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 24px;
    line-height: 1.3;
}

.apt-article-content {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.8;
}

.apt-article-content p {
    margin-bottom: 16px;
}

.apt-article-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2d2d2d;
    margin-top: 28px;
    margin-bottom: 14px;
}

.apt-article-content strong {
    color: #4da3ff;
    font-weight: 600;
}

/* Regions Section */
.apt-regions-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.apt-regions-article {
    max-width: 100%;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .apt-services-detail-section,
    .apt-advantages-section,
    .apt-process-section,
    .apt-cta-section,
    .apt-faq-section,
    .apt-content-section,
    .apt-regions-section {
        padding: 40px 0;
    }
    
    .apt-section-title {
        font-size: 24px;
    }
    
    .apt-stats-grid {
        margin-top: 30px;
    }
    
    .apt-cta-box {
        padding: 28px 24px;
        text-align: center;
    }
    
    .apt-cta-phone {
        font-size: 20px;
    }
}

@media (max-width: 767.98px) {
    .apt-section-title {
        font-size: 22px;
    }
    
    .apt-article-title {
        font-size: 24px;
    }
    
    .apt-article-content h3 {
        font-size: 18px;
    }
    
    .apt-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .apt-service-detail-card,
    .apt-process-card {
        padding: 20px;
    }
    
    .apt-cta-box {
        padding: 24px 20px;
    }
    
    .apt-cta-title {
        font-size: 20px;
    }
}

.progress-bar-container {
    width: 100%;
    height: 12px;
    background: #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
    transition: width 0.3s ease;
    width: 0%;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
}

.ping-results-container {
    margin-top: 30px;
}

.results-subtitle {
    font-size: 20px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.results-subtitle i {
    color: #3b82f6;
}

.ping-result-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: #fff;
    border-radius: 12px;
    margin-bottom: 12px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.ping-result-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateX(4px);
}

.ping-result-item.pending {
    border-left: 4px solid #f59e0b;
    background: rgba(245, 158, 11, 0.02);
}

.ping-result-item.success {
    border-left: 4px solid #10b981;
    background: rgba(16, 185, 129, 0.02);
}

.ping-result-item.failed {
    border-left: 4px solid #ef4444;
    background: rgba(239, 68, 68, 0.02);
}

.ping-number {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.ping-content {
    flex: 1;
    min-width: 0;
}

.ping-domain {
    font-size: 15px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 6px;
}

.ping-full-url {
    font-size: 12px;
    color: #6b7280;
    word-break: break-all;
    font-family: 'Courier New', monospace;
    background: #f9fafb;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #e5e7eb;
}

.ping-status {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    flex-shrink: 0;
}

.status-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.status-badge i {
    font-size: 14px;
}

.status-badge.pending {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
    border: 1px solid #fbbf24;
}

.status-badge.success {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #065f46;
    border: 1px solid #10b981;
}

.status-badge.failed {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    color: #991b1b;
    border: 1px solid #ef4444;
}

.ping-time {
    font-size: 11px;
    color: #9ca3af;
    font-weight: 600;
    padding: 4px 8px;
    background: #f3f4f6;
    border-radius: 12px;
}

@media (max-width: 991px) {
    .ping-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .ping-stats {
        grid-template-columns: 1fr;
    }
}

/* Hakkımızda Page Styles */
.apt-hero-section {
    padding: 48px 0;
    background: linear-gradient(to bottom, #f8f9fa, #fff);
}

.apt-hero-title {
    font-size: 32px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 10px;
}

.apt-hero-subtitle {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.apt-info-section {
    padding: 60px 0;
    background: #fff;
}

.apt-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 24px;
}

.apt-section-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 0;
}

.apt-text {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.apt-stat-item {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.apt-stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.apt-stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #4da3ff;
    margin-bottom: 8px;
}

.apt-stat-label {
    font-size: 14px;
    color: #666;
}

.apt-features-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.apt-feature-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 32px;
    height: 100%;
    transition: all 0.3s ease;
}

.apt-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.apt-feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(77, 163, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.apt-feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 12px;
}

.apt-feature-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.apt-services-section {
    padding: 60px 0;
    background: #fff;
}

.apt-service-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 24px;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.apt-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: #4da3ff;
}

.apt-service-icon {
    width: 56px;
    height: 56px;
    background: rgba(77, 163, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.apt-service-title {
    font-size: 18px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 12px;
    line-height: 1.4;
}

.apt-service-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.apt-service-link {
    color: #4da3ff;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.apt-service-link:hover {
    color: #2d7dd2;
    transform: translateX(4px);
}

.apt-advantages-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.apt-advantage-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.apt-advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.apt-advantage-icon {
    width: 52px;
    height: 52px;
    background: rgba(77, 163, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.apt-advantage-title {
    font-size: 16px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 8px;
}

.apt-advantage-text {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.apt-cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #4da3ff 0%, #2d7dd2 100%);
}

.apt-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.apt-cta-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.apt-cta-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.apt-cta-button {
    display: inline-block;
    background: #fff;
    color: #4da3ff;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.apt-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    color: #2d7dd2;
}

.apt-content-section {
    padding: 60px 0;
    background: #fff;
}

.apt-content-title {
    font-size: 24px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 24px;
}

.apt-content-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #2d2d2d;
    margin-top: 32px;
    margin-bottom: 16px;
}

.apt-content-text {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.apt-contact-info-box {
    background: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 32px;
    margin-top: 40px;
}

.apt-contact-box-title {
    font-size: 20px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 24px;
}

.apt-contact-box-item {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.apt-contact-box-item:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4da3ff;
    font-size: 20px;
}

.apt-contact-box-item strong {
    color: #2d2d2d;
    font-weight: 600;
}

@media (max-width: 991.98px) {
    .apt-hero-section {
        padding: 40px 0;
    }
    
    .apt-hero-title {
        font-size: 28px;
    }
    
    .apt-section-title {
        font-size: 24px;
    }
    
    .apt-info-section,
    .apt-features-section,
    .apt-services-section,
    .apt-advantages-section,
    .apt-cta-section,
    .apt-content-section {
        padding: 50px 0;
    }
    
    .apt-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    .apt-hero-title {
        font-size: 24px;
    }
    
    .apt-section-title {
        font-size: 22px;
    }
    
    .apt-cta-title {
        font-size: 24px;
    }
    
    .apt-content-title {
        font-size: 20px;
    }
    
    .apt-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .apt-feature-card,
    .apt-service-card,
    .apt-advantage-card {
        padding: 20px;
    }
    
    .apt-contact-info-box {
        padding: 24px;
    }
}