/* Layout Styles */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
    position: relative;
    min-height: calc(100vh - 70px);
}

.content {
    width: 100%;
    padding: 15px;
}

/* Main Content Styles */
.packages-container {
    padding: 40px;
    background: #f8f9fa;
    border-radius: 15px;
    margin: 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    color: #2b4c7e;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.section-header p {
    color: #666;
    font-size: 16px;
}

/* Operator Cards */
.operator-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
    padding: 20px;
}

.operator-box {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.operator-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.9), rgba(255,255,255,0.3));
    z-index: 1;
    transition: opacity 0.4s ease;
    opacity: 0;
}

.operator-box.turkcell { background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); border-left: 4px solid #ffc72c; }
.operator-box.vodafone { background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); border-left: 4px solid #e60000; }
.operator-box.turktelekom { background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); border-left: 4px solid #e94560; }
.operator-box.bimcell { background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); border-left: 4px solid #1428a0; }

.operator-logo {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    padding: 10px;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.operator-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.operator-info {
    flex: 1;
    z-index: 2;
    transition: transform 0.3s ease;
    width: 100%;
}

.operator-info h3 {
    color: #2b4c7e;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.operator-info p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.package-types {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
    flex-wrap: wrap;
    justify-content: center;
}

.package-types span {
    background: rgba(0,0,0,0.05);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: #555;
    transition: all 0.3s ease;
}

.action-btn {
    color: #2b4c7e;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: rgba(0,0,0,0.05);
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: auto;
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

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

.operator-box:hover::before {
    opacity: 1;
}

.operator-box:hover .operator-logo {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.operator-box:hover .action-btn {
    background: rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.operator-box:hover .action-btn::before {
    transform: translateX(0);
}

.operator-box:hover .package-types span {
    transform: translateY(-2px);
    background: rgba(0,0,0,0.08);
    color: #2b4c7e;
}

.operator-box:hover .operator-info {
    transform: translateX(5px);
}

.turkcell:hover { 
    border-left-color: #ffd700;
    background: linear-gradient(135deg, #fff9e6 0%, #fff5cc 100%);
}

.vodafone:hover { 
    border-left-color: #ff0000;
    background: linear-gradient(135deg, #fff1f1 0%, #ffe6e6 100%);
}

.turktelekom:hover { 
    border-left-color: #ff6b81;
    background: linear-gradient(135deg, #fff2f4 0%, #ffe6e9 100%);
}

.bimcell:hover { 
    border-left-color: #1e3a8a;
    background: linear-gradient(135deg, #f0f3f9 0%, #e6ebf5 100%);
}

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

.operator-box:hover .action-btn i {
    animation: pulse 1.5s infinite;
}

/* Features Section */
.features-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.feature-card {
    text-align: center;
    padding: 20px;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(43, 76, 126, 0.08);
    box-shadow: 
        inset 0 2px 4px rgba(255, 255, 255, 0.9),
        inset 0 -2px 4px rgba(43, 76, 126, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent 48%,
        rgba(43, 76, 126, 0.03) 50%,
        transparent 52%
    );
    background-size: 20px 20px;
    opacity: 0.5;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 20px rgba(43, 76, 126, 0.12),
        inset 0 2px 4px rgba(255, 255, 255, 0.9),
        inset 0 -2px 4px rgba(43, 76, 126, 0.05);
    border-color: rgba(43, 76, 126, 0.15);
}

.feature-card i {
    font-size: 30px;
    color: #2b4c7e;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #2b4c7e, #1a2980);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 2px 2px 4px rgba(43, 76, 126, 0.1);
}

.feature-card h4 {
    color: #2b4c7e;
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
    position: relative;
    z-index: 1;
    letter-spacing: 0.3px;
}

.feature-card p {
    color: #666;
    font-size: 14px;
    position: relative;
    z-index: 1;
    opacity: 0.85;
}

@media (prefers-reduced-motion: no-preference) {
    .feature-card:hover::before {
        animation: patternShift 20s linear infinite;
    }

    @keyframes patternShift {
        0% { background-position: 0 0; }
        100% { background-position: 40px 40px; }
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .operator-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .operator-cards {
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .operator-box {
        padding: 30px 20px;
    }

    .operator-logo {
        width: 70px;
        height: 70px;
        margin-bottom: 10px;
    }

    .operator-box:hover {
        transform: translateY(-5px);
    }

    .operator-box:hover .operator-logo {
        transform: scale(1.05) rotate(0);
    }

    .operator-box:hover .operator-info {
        transform: translateY(-3px);
    }

    /* Process steps'i mobilde gizle - daha spesifik seçici */
    body .process-steps,
    .main-container .process-steps,
    .content .process-steps {
        display: none !important;
    }
}

/* Masaüstünde göster */
@media (min-width: 769px) {
    body .process-steps,
    .main-container .process-steps,
    .content .process-steps {
        display: flex;
    }
}

/* Header Styles (header.php için) */
.header-container {
    background: linear-gradient(135deg, #1a2980, #26d0ce);
    color: white;
    padding: 15px 0;
    box-shadow: 
        0 2px 20px rgba(0,0,0,0.15),
        inset 0 0 100px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.header-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 48%, rgba(255,255,255,0.03) 50%, transparent 52%);
    background-size: 30px 30px;
    animation: headerShift 20s linear infinite;
}

@keyframes headerShift {
    0% { background-position: 0 0; }
    100% { background-position: 30px 30px; }
}

/* Process Header Styles */
.process-header {
    background: linear-gradient(135deg, #1a2980, #26d0ce);
    color: white;
    text-align: center;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        inset 0 0 100px rgba(0,0,0,0.3),
        0 10px 30px rgba(0,0,0,0.2);
}

.process-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 0%, transparent 20%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 20%),
        linear-gradient(45deg, transparent 48%, rgba(255,255,255,0.05) 50%, transparent 52%);
    background-size: 100% 100%, 100% 100%, 30px 30px;
    opacity: 0.1;
    animation: backgroundShift 30s linear infinite;
}

@keyframes backgroundShift {
    0% { background-position: 0 0, 0 0, 0 0; }
    100% { background-position: 100px 100px, -100px -100px, 30px 30px; }
}

.process-header h1 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.process-header p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.header-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    perspective: 1000px;
    position: relative;
    z-index: 2;
}

.header-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.08);
    padding: 15px 25px;
    border-radius: 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transform-style: preserve-3d;
}

.header-feature:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px) rotateX(10deg);
    box-shadow: 
        0 15px 25px rgba(0,0,0,0.2),
        0 0 15px rgba(255,255,255,0.1);
}

.header-feature i {
    font-size: 24px;
    color: #26d0ce;
    text-shadow: 0 0 10px rgba(38, 208, 206, 0.5);
}

.header-feature span {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

.header-feature:hover span::after {
    width: 50%;
}

/* Process Steps Styles */
.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 25px;
    background: white;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    position: relative;
    margin: -20px auto 30px;
    border-radius: 20px;
    max-width: 900px;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50px;
    right: 50px;
    height: 1.2px;
    background: linear-gradient(to right, 
        rgba(26, 41, 128, 0.1),
        rgba(38, 208, 206, 0.8),
        rgba(26, 41, 128, 0.1)
    );
    transform: translateY(-50%);
    z-index: 1;
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(38, 208, 206, 0.2);
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 2;
    min-width: 150px;
    padding: 15px;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border: 2px solid #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

.step-number::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.8), transparent);
    opacity: 0.6;
}

.step.active .step-number {
    background: linear-gradient(135deg, #1a2980, #26d0ce);
    border: none;
    color: white;
    box-shadow: 
        0 10px 20px rgba(38, 208, 206, 0.3),
        0 0 0 10px rgba(38, 208, 206, 0.1);
    animation: pulseNumber 2s infinite;
}

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

.step-text {
    font-size: 16px;
    color: #2C3E50;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-desc {
    font-size: 14px;
    color: #666;
    text-align: center;
    line-height: 1.5;
    max-width: 150px;
    transition: all 0.3s ease;
}

.step:hover .step-desc {
    color: #26d0ce;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .process-header {
        padding: 40px 15px;
    }

    .process-header h1 {
        font-size: 24px;
    }

    .header-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .process-steps {
        padding: 10px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .process-steps .step {
        flex: 0 0 calc(50% - 5px);
        min-width: auto;
        padding: 10px 5px;
    }

    .step-number {
        width: 24px;
        height: 24px;
        font-size: 14px;
    }

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

    .step-desc {
        font-size: 12px;
    }
}

.operator-logos {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 40px auto;
    flex-wrap: wrap;
    max-width: 1200px;
    position: relative;
    z-index: 2;
}

.operator-logo-item {
    text-decoration: none;
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 260px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.operator-logo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.operator-logo-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-8px);
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.2),
        0 0 20px rgba(255,255,255,0.1);
}

.operator-logo-item:hover::before {
    opacity: 1;
}

.operator-logo-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: all 0.4s ease;
    transform-origin: center;
}

.operator-logo-item:hover img {
    transform: scale(1.15) translateY(-5px);
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.6));
}

.operator-logo-item span {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

.operator-logo-item span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: rgba(255,255,255,0.5);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.operator-logo-item:hover span::after {
    width: 50%;
}

@media (max-width: 768px) {
    .operator-logos {
        gap: 15px;
        padding: 0 10px;
    }

    .operator-logo-item {
        width: calc(50% - 15px);
        padding: 20px;
    }

    .operator-logo-item img {
        width: 60px;
        height: 60px;
    }

    .operator-logo-item span {
        font-size: 12px;
    }
}

/* Nav menu styles */
.nav-menu a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: rgba(38, 208, 206, 0.2);
    color: white;
    box-shadow: 0 0 15px rgba(38, 208, 206, 0.2);
}

/* Tamamlanmış adım stili */
.step.completed .step-number {
    background: linear-gradient(135deg, #26d0ce, #1a2980);
    border: none;
    color: white;
    box-shadow: 
        0 5px 15px rgba(38, 208, 206, 0.2),
        0 0 0 5px rgba(38, 208, 206, 0.1);
}

.step.completed .step-text {
    color: #1a2980;
}

.step.completed::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: -30px;
    color: #26d0ce;
    font-size: 16px;
    z-index: 3;
}

/* Payment Container Styles */
.payment-container {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin: 30px auto;
    max-width: 900px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.payment-header {
    text-align: center;
    margin-bottom: 25px;
}

.payment-header h2 {
    color: #1a2980;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.payment-header p {
    color: #666;
    font-size: 15px;
}

/* Phone Input Styles */
.phone-input {
    position: relative;
    max-width: 400px;
    margin: 0 auto 40px;
}

.input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #1a2980;
    font-size: 20px;
}

.phone-input input {
    width: 100%;
    padding: 20px 20px 20px 60px;
    border: 2px solid rgba(26, 41, 128, 0.1);
    border-radius: 15px;
    font-size: 18px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.phone-input input:focus {
    outline: none;
    border-color: #1a2980;
    box-shadow: 0 0 0 4px rgba(26, 41, 128, 0.1);
}

.operator-badge {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(26, 41, 128, 0.05);
    border-radius: 20px;
}

.operator-badge img {
    width: 20px;
    height: 20px;
}

.operator-badge span {
    font-size: 14px;
    color: #1a2980;
    font-weight: 500;
}

/* Package Type Tabs */
.package-type-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 12px 25px;
    border: none;
    background: #f8f9fa;
    border-radius: 12px;
    color: #666;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-btn i {
    font-size: 16px;
}

.tab-btn.active {
    background: linear-gradient(135deg, #1a2980, #26d0ce);
    color: white;
    box-shadow: 0 5px 15px rgba(26, 41, 128, 0.2);
}

/* Package Cards */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.package-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #1a2980, #26d0ce);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.package-card:hover::before {
    opacity: 1;
}

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

.package-type {
    font-size: 14px;
    color: #666;
    background: #f8f9fa;
    padding: 5px 12px;
    border-radius: 20px;
}

.package-amount {
    font-size: 24px;
    font-weight: 600;
    color: #1a2980;
}

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

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

.package-details i {
    color: #26d0ce;
}

.package-price {
    text-align: center;
    margin: 20px 0;
}

.package-price .amount {
    font-size: 28px;
    font-weight: 600;
    color: #1a2980;
}

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

.select-package {
    width: 100%;
    padding: 12px;
    border: none;
    background: linear-gradient(135deg, #1a2980, #26d0ce);
    color: white;
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-package:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 41, 128, 0.2);
}

@media (max-width: 768px) {
    .payment-container {
        padding: 20px;
        margin: 20px 10px;
    }

    .package-type-tabs {
        flex-wrap: wrap;
    }

    .tab-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .phone-input input {
        font-size: 16px;
        padding: 15px 15px 15px 50px;
    }
}

/* Ana sayfa için özel process-steps stili */
.home-page .process-steps {
    max-width: 1100px;
    gap: 50px;
    padding: 25px 35px;
    margin: -30px auto 40px;
}

.home-page .step {
    min-width: 200px;
    padding: 15px 25px;
}

.home-page .step-number {
    width: 55px;
    height: 55px;
    font-size: 22px;
}

.home-page .step-text {
    font-size: 17px;
    margin: 8px 0 6px;
}

.home-page .step-desc {
    font-size: 14px;
}

/* Mevcut process-steps stili (turkcell sayfası için) */
.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 25px;
    background: white;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    position: relative;
    margin: -20px auto 30px;
    border-radius: 20px;
    max-width: 900px;
}

@media (max-width: 768px) {
    .home-page .process-steps {
        max-width: 100%;
        gap: 20px;
        padding: 20px 15px;
    }
    
    .home-page .step {
        min-width: 160px;
        padding: 20px;
    }
    
    .home-page .step-number {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }
}

/* Turkcell sayfası için özel margin ayarları */
.turkcell-page .process-steps {
    margin-top: -10px;
    margin-bottom: 20px;
}

.turkcell-page .payment-container {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .turkcell-page .process-steps {
        margin-top: 0;
    }
    
    .turkcell-page .payment-container {
        margin-top: 15px;
    }
}

/* Kepçe kodu input stili */
.kepce-input {
    position: relative;
    max-width: 400px;
    margin: 0 auto 20px;
}

.kepce-input input {
    width: 100%;
    padding: 20px 20px 20px 60px;
    border: 2px solid rgba(26, 41, 128, 0.1);
    border-radius: 15px;
    font-size: 18px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.kepce-input input:focus {
    outline: none;
    border-color: #1a2980;
    box-shadow: 0 0 0 4px rgba(26, 41, 128, 0.1);
}

.info-badge {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(26, 41, 128, 0.05);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.info-badge:hover {
    background: rgba(26, 41, 128, 0.1);
}

.info-badge i {
    color: #1a2980;
    font-size: 16px;
}

.info-badge span {
    font-size: 14px;
    color: #1a2980;
    font-weight: 500;
}

/* Sorgula butonu stili */
.verify-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #1a2980, #26d0ce);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto 30px;
    max-width: 400px;
    width: 100%;
}

.verify-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 41, 128, 0.2);
}

.verify-button i {
    font-size: 18px;
}

/* Captcha Styles */
.captcha-input {
    position: relative;
    max-width: 400px;
    margin: 0 auto 20px;
}

.captcha-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 10px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(26, 41, 128, 0.08);
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.captcha-image-group {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.captcha-image {
    height: 150px;
    width: 380px;
    border-radius: 8px;
    background: white;
    padding: 15px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    border: 1px solid rgba(26, 41, 128, 0.05);
    object-fit: contain;
}

.refresh-captcha {
    background: none;
    border: none;
    color: #1a2980;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: white;
    border: 1px solid rgba(26, 41, 128, 0.08);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.refresh-captcha:hover {
    background: #f8f9fa;
    transform: rotate(180deg) scale(1.05);
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
    color: #26d0ce;
}

.captcha-input-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.captcha-code-input {
    padding: 12px;
    border: 2px solid rgba(26, 41, 128, 0.1);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.5px;
    background: white;
    width: 200px;
    transition: all 0.3s ease;
    height: 48px;
    font-family: inherit;
}

.captcha-code-input:focus {
    outline: none;
    border-color: #26d0ce;
    box-shadow: 0 0 0 3px rgba(38, 208, 206, 0.1);
}

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

.rotating {
    animation: rotate 1s ease;
}