/* [Body Arka Plan] */
body.hizmetlerimiz-page {
    font-family: 'Inter', sans-serif;
    background: #1a202c;
}

/* [Premium Background Gradients] */
.premium-bg-1 {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 50%, #1a202c 100%);
}

.premium-bg-2 {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 50%, #2d3748 100%);
}

.premium-bg-3 {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 50%, #2a4365 100%);
}

.premium-bg-4 {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 50%, #1a202c 100%);
}

/* [Premium Grid Pattern] */
.premium-grid {
    background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(59, 130, 246, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    position: relative;
}

/* [Luxury Card] */
.luxury-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 24px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    overflow: hidden;
    /* Flexbox & Equal Height */
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100%;
}

.luxury-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(59, 130, 246, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(59, 130, 246, 0.5);
}

/* Kart İçerik Hizalaması */
.luxury-card .card-title {
    margin-top: auto;
    /* İkonu üstte, başlığı ortada tutmak için opsiyonel, flex grow ile daha iyi kontrol edilir */
    margin-bottom: 1rem;
}

.luxury-card p {
    flex-grow: 1;
    /* Metnin alanı doldurmasını sağla */
    display: flex;
    flex-direction: column;
}

/* [Premium Title] */
.premium-title {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
}

/* [Text Styles] */
.premium-subtitle {
    color: #e2e8f0;
}

.premium-text {
    color: #cbd5e1;
}

.card-title {
    color: #f8fafc;
    font-weight: 700;
}

/* [Gold Icon] */
.gold-icon {
    color: #3b82f6;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.4));
    transition: all 0.4s ease;
}

.gold-icon:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.6));
}

/* [Section Number] */
.section-number {
    position: absolute;
    top: 7rem;
    left: 1rem;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(59, 130, 246, 0.1);
    line-height: 1;
    z-index: 1;
}

/* [Floating Element Animation] */
.floating-element {
    animation: float-gentle 8s ease-in-out infinite;
}

@keyframes float-gentle {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-15px) rotate(1deg);
    }

    66% {
        transform: translateY(-5px) rotate(-1deg);
    }
}

/* [Elegant Divider] */
.elegant-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent);
    margin: 2rem 0;
}

/* [Feature List] */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    padding-left: 1rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 8px;
}

.feature-item:last-child {
    border-bottom: none;
}

/* [Scroll Indicator] */
.scroll-indicator-hizmetler {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 1.25rem;
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.4s ease;
    z-index: 1000;
}

.scroll-indicator-hizmetler:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(59, 130, 246, 0.2));
}