/* Uluslararası Tesciller Custom Page Styles */

/* Hero Section */
.ut-hero {
    background-color: var(--primary);
    background-image: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(51, 65, 85, 0.95) 100%);
    background-size: 100% 100%;
    padding: 6rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.ut-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    opacity: 0.15;
    filter: blur(60px);
    pointer-events: none;
}

.ut-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
}

.ut-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.ut-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.ut-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.2s;
}

.ut-btn:hover {
    transform: translateY(-2px);
}

.ut-btn-primary {
    background: var(--accent);
    color: white;
}

.ut-btn-outline {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}

/* Info Section */
.ut-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
}

.ut-check-list {
    list-style: none;
    padding: 0;
}

.ut-check-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ut-check-list.small li {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.ut-check-icon {
    color: var(--accent);
    font-weight: bold;
}

/* Process Steps */
.ut-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.ut-step-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s;
}

.ut-step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.ut-step-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: bold;
}

.ut-step-card:nth-child(3) .ut-step-icon {
    background: var(--accent);
}

/* Classes Section Cards */
.ut-class-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--primary);
    transition: transform 0.3s ease;
}

.ut-class-card:hover {
    transform: translateY(-5px);
}

.ut-class-card:nth-child(2) {
    border-top-color: var(--accent);
}

.ut-class-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.ut-class-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.ut-class-badge {
    background: var(--bg-muted);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Service List */
.ut-service-list {
    display: grid;
    gap: 1rem;
}

.ut-service-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: border-color 0.2s, background 0.2s;
}

.ut-service-item:hover {
    border-color: var(--accent);
    background: white;
}

.ut-service-num {
    color: var(--accent);
    font-weight: bold;
    font-size: 1.5rem;
}

/* Contact Form Box */
.ut-form-box {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.ut-form-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.ut-form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    transition: border-color 0.2s;
}

.ut-form-input:focus {
    outline: none;
    border-color: var(--primary);
}

.ut-form-btn {
    width: 100%;
    padding: 1rem;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}

.ut-form-btn:hover {
    background: var(--accent-hover);
}

/* Service Card (New) */
.ut-service-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    height: 100%;
    transition: transform 0.3s;
}

.ut-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.ut-service-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.ut-section-spacer {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

/* Responsive */
@media (max-width: 768px) {
    .ut-hero h1 {
        font-size: 2rem;
    }
    .ut-hero {
        padding: 4rem 0;
        text-align: center;
    }
    .ut-hero-actions {
        justify-content: center;
    }
    .ut-grid-2 {
        gap: 2rem;
    }
}
