/* FortiGate Selection Specific Styles */
.fortigate-selection-main {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    min-height: 100vh;
}

/* Hero Section */
.fortigate-hero {
    min-height: 50vh;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 140px 0 60px;
}

.fortigate-hero .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 2;
    text-align: center;
}

.fortigate-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.fortigate-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.fortigate-hero-description {
    font-size: 1.2rem;
    color: var(--light-slate);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.back-link {
    margin-top: 2rem;
}

/* Category Selection */
.category-selection {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--light-slate);
    max-width: 600px;
    margin: 0 auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.category-card {
    display: block;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 2px solid rgba(100, 255, 218, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(100, 255, 218, 0.1), transparent);
    transition: left 0.5s ease;
}

.category-card:hover::before {
    left: 100%;
}

.category-card:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(100, 255, 218, 0.2);
}

.category-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.category-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.category-card p {
    color: var(--light-slate);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.category-badge {
    position: absolute;
    top: 20px;
    right: 20px;
}

.category-badge span {
    background: var(--gradient-accent);
    color: var(--deep-navy);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Features Section */
.fortigate-features {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem 1.5rem;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--light-slate);
    line-height: 1.6;
}

/* Form Section */
.fortigate-form-section {
    padding: 60px 0;
    background: var(--deep-navy);
    position: relative;
}

/* Progress Bar */
.form-progress {
    margin-bottom: 4rem;
}

.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 3px;
    width: 16.66%;
    transition: width 0.4s ease;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s ease;
}

.step:hover .step-number {
    background: rgba(100, 255, 218, 0.2);
    border-color: rgba(100, 255, 218, 0.5);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--deep-navy);
}

.step-label {
    font-size: 0.85rem;
    color: var(--light-slate);
    font-weight: 500;
    text-align: center;
}

.step.active .step-label {
    color: var(--accent);
}

/* Form Styles */
.fortigate-form {
    max-width: 900px;
    margin: 0 auto;
}

.form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-header {
    text-align: center;
    margin-bottom: 3rem;
}

.step-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.step-header p {
    font-size: 1.1rem;
    color: var(--light-slate);
    max-width: 600px;
    margin: 0 auto;
}

/* Form Fields */
.form-field {
    margin-bottom: 2.5rem;
}

.field-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.field-label i {
    color: var(--accent);
    font-size: 1.2rem;
}

/* Port Count Grid */
.port-count-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.port-count-option {
    position: relative;
}

.port-count-input {
    position: absolute;
    opacity: 0;
}

.port-count-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 2px solid rgba(100, 255, 218, 0.2);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
}

.port-count-input:checked + .port-count-label {
    border-color: var(--accent);
    background: rgba(100, 255, 218, 0.1);
    box-shadow: 0 8px 25px rgba(100, 255, 218, 0.2);
}

.port-count-label:hover {
    border-color: rgba(100, 255, 218, 0.4);
    transform: translateY(-3px);
}

.port-count-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.port-count-text {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.port-count-desc {
    font-size: 0.75rem;
    color: var(--light-slate);
    line-height: 1.3;
}

/* Port Speed Grid */
.port-speed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.port-speed-option {
    position: relative;
}

.port-speed-input {
    position: absolute;
    opacity: 0;
}

.port-speed-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 2px solid rgba(100, 255, 218, 0.2);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
    min-height: 100px;
}

.port-speed-input:checked + .port-speed-label {
    border-color: var(--accent);
    background: rgba(100, 255, 218, 0.1);
    box-shadow: 0 8px 25px rgba(100, 255, 218, 0.2);
    transform: translateY(-2px);
}

.port-speed-label:hover {
    border-color: rgba(100, 255, 218, 0.4);
    transform: translateY(-3px);
}

.speed-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.speed-desc {
    font-size: 0.8rem;
    color: var(--light-slate);
    line-height: 1.3;
}

/* Options Grid */
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.option-card {
    position: relative;
}

.option-input {
    position: absolute;
    opacity: 0;
}

.option-label {
    display: block;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 2px solid rgba(100, 255, 218, 0.2);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
}

.option-input:checked + .option-label {
    border-color: var(--accent);
    background: rgba(100, 255, 218, 0.1);
    box-shadow: 0 10px 30px rgba(100, 255, 218, 0.2);
}

.option-input:checked + .option-label .option-icon {
    transform: scale(1.1);
    color: var(--accent);
}

.option-label:hover {
    border-color: rgba(100, 255, 218, 0.4);
    transform: translateY(-5px);
}

.option-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--light-slate);
    transition: all 0.3s ease;
}

.option-label h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.option-label p {
    color: var(--light-slate);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* Compact Options Grid */
.compact-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.compact-option {
    position: relative;
}

.compact-input {
    position: absolute;
    opacity: 0;
}

.compact-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 2px solid rgba(100, 255, 218, 0.2);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
    min-height: 120px;
}

.compact-input:checked + .compact-label {
    border-color: var(--accent);
    background: rgba(100, 255, 218, 0.1);
    box-shadow: 0 8px 25px rgba(100, 255, 218, 0.2);
    transform: translateY(-2px);
}

.compact-label:hover {
    border-color: rgba(100, 255, 218, 0.4);
    transform: translateY(-3px);
}

.compact-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.compact-desc {
    font-size: 0.8rem;
    color: var(--light-slate);
    line-height: 1.3;
}

/* Radio Group */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.radio-option:hover {
    border-color: rgba(100, 255, 218, 0.3);
}

.radio-option input {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.radio-option input:checked + .radio-custom {
    border-color: var(--accent);
}

.radio-option input:checked + .radio-custom::after {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.radio-option span:last-child {
    color: var(--white);
    font-weight: 500;
}

/* Sliders */
.budget-selector {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
}

.budget-slider {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    outline: none;
    margin: 1rem 0;
}

.budget-slider::-webkit-slider-thumb {
    appearance: none;
    width: 24px;
    height: 24px;
    background: var(--accent);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(100, 255, 218, 0.3);
}

.budget-value {
    text-align: center;
    margin-bottom: 1rem;
}

.budget-value span:first-child {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
}

.budget-range {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--light-slate);
}

/* Disk and Support Options */
.disk-support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.disk-support-option {
    position: relative;
}

.disk-support-input {
    position: absolute;
    opacity: 0;
}

.disk-support-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 2px solid rgba(100, 255, 218, 0.2);
    border-radius: 12px;
    padding: 2rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
    min-height: 140px;
}

.disk-support-input:checked + .disk-support-label {
    border-color: var(--accent);
    background: rgba(100, 255, 218, 0.1);
    box-shadow: 0 8px 25px rgba(100, 255, 218, 0.2);
}

.disk-support-label:hover {
    border-color: rgba(100, 255, 218, 0.4);
    transform: translateY(-3px);
}

.disk-support-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.disk-support-desc {
    font-size: 0.8rem;
    color: var(--light-slate);
    line-height: 1.3;
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Results Section */
.results-section {
    animation: fadeIn 0.5s ease;
}

.results-header {
    text-align: center;
    margin-bottom: 3rem;
}

.results-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.results-header p {
    font-size: 1.1rem;
    color: var(--light-slate);
    max-width: 600px;
    margin: 0 auto;
}

.results-layout {
    display: block;
    margin-bottom: 2rem;
}

.reasoning-box.full-width {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 2px solid rgba(100, 255, 218, 0.2);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
}

.model-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(100, 255, 218, 0.2);
}

.model-header h3 {
    color: var(--accent);
    margin: 0;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.model-name {
    color: var(--white);
    background: rgba(100, 255, 218, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    font-weight: 600;
}

.ai-badge {
    background: var(--gradient-accent);
    color: var(--deep-navy);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.reasoning-content p {
    color: var(--light-slate);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.reasoning-content ul {
    color: var(--light-slate);
    padding-left: 1.5rem;
}

.reasoning-content li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.results-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* AI Highlight Styles */
.ai-highlight {
    color: var(--accent);
    font-weight: 600;
    background: rgba(100, 255, 218, 0.1);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    margin: 0.1rem;
}

.error-message {
    text-align: center;
    padding: 3rem;
}

.error-message i {
    font-size: 4rem;
    color: #E63946;
    margin-bottom: 1.5rem;
}

.error-message h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.error-message p {
    color: var(--light-slate);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Validation error styles */
.validation-error {
    border-color: #E63946 !important;
    background: rgba(230, 57, 70, 0.1) !important;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .fortigate-hero {
        padding: 120px 0 40px;
        min-height: 40vh;
    }
    
    .progress-steps {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .step {
        flex: 1;
        min-width: 80px;
    }
    
    .step-label {
        font-size: 0.75rem;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .port-count-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .port-speed-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-navigation .btn {
        width: 100%;
        justify-content: center;
    }
    
    .results-actions {
        flex-direction: column;
    }
    
    .results-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .compact-options-grid {
        grid-template-columns: 1fr;
    }
    
    .disk-support-grid {
        grid-template-columns: 1fr;
    }
    
    .model-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .model-header h3 {
        font-size: 1.2rem;
    }
    
    .reasoning-box.full-width {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .fortigate-hero-title {
        font-size: 1.8rem;
    }
    
    .fortigate-hero-description {
        font-size: 1rem;
    }
    
    .step-header h2 {
        font-size: 1.8rem;
    }
    
    .port-count-grid {
        grid-template-columns: 1fr;
    }
    
    .port-speed-grid {
        grid-template-columns: 1fr;
    }
    
    .port-count-label,
    .port-speed-label,
    .disk-support-label {
        padding: 1rem 0.5rem;
    }
    
    .port-count-number {
        font-size: 1.3rem;
    }
    
    .budget-selector {
        padding: 1.5rem;
    }
}
/* Uzmanla Görüş butonu için özel stiller */
.btn-expert {
    background: linear-gradient(135deg, var(--accent) 0%, #4ECDC4 100%);
    color: var(--deep-navy);
    border: 2px solid transparent;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-expert::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-expert:hover::before {
    left: 100%;
}

.btn-expert:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(100, 255, 218, 0.4);
    color: var(--deep-navy);
}

.btn-expert:active {
    transform: translateY(-1px);
}

/* Results actions bölümündeki butonlar için responsive düzenleme */
.results-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.results-actions .btn {
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Buton ikonları için stil */
.results-actions .btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.results-actions .btn:hover i {
    transform: translateX(3px);
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .results-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .results-actions .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .results-actions .btn {
        min-width: unset;
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
}/* Siyah şerit sorununu çözmek için bu kuralları ekleyin */
.values-section {
    margin-bottom: 0;
    padding-bottom: 80px; /* Varsayılan padding-bottom değerini koruyun */
}

.footer {
    margin-top: 0;
}

/* Container içi düzenlemeler */
.values-section .container:last-child {
    margin-bottom: 0;
}

.values-grid:last-child {
    margin-bottom: 0;
}

/* Section header margin ayarı */
.section-header {
    margin-bottom: 3rem !important;
}